-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
164 lines (133 loc) · 4.41 KB
/
Copy pathTaskfile.yml
File metadata and controls
164 lines (133 loc) · 4.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
version: '3'
dotenv:
- .env
tasks:
default:
desc: Show available tasks
cmds:
- task --list
fmt:
desc: Format all Go packages
cmds:
- go fmt ./...
fmt-check:
desc: Verify Go sources are formatted without modifying the worktree
cmds:
- test -z "$(gofmt -l .)"
lint:
desc: Run lightweight static checks
cmds:
- go vet ./...
test:
desc: Run unit tests
cmds:
- go test ./...
build:
desc: Build all Go packages
cmds:
- go build ./...
generator:
desc: Fetch upstream metadata, sync models/, and regenerate models_gen.go
cmds:
- go run ./cmd/generator {{.CLI_ARGS}}
generator-check:
desc: Verify models_gen.go matches the current YAML registry
cmds:
- go run ./cmd/generator -cache-only -sync-registry=false -check
generator-offline:
desc: Regenerate models_gen.go from YAML and the immutable local cache
cmds:
- go run ./cmd/generator -cache-only -sync-registry=false
translator:
desc: Incrementally translate missing description_cn fields in models/
cmds:
- go run ./cmd/translator {{.CLI_ARGS}}
cardextract:
desc: Extract evidence-backed model-card suggestions with an OpenAI-compatible AI
cmds:
- go run ./cmd/cardextractor {{.CLI_ARGS}}
cardextract-batch:
desc: Resume evidence-backed extraction for every HF-enriched model
cmds:
- bash scripts/extract-model-cards.sh
suggestion:
desc: Review and explicitly apply evidence-backed metadata suggestions
cmds:
- go run ./cmd/suggestionctl {{.CLI_ARGS}}
codexsuggest:
desc: Generate a conservative reviewable Codex policy suggestion
cmds:
- go run ./cmd/codexsuggest {{.CLI_ARGS}}
enrich:
desc: Enrich new or selected model YAML from structured upstream sources
cmds:
- go run ./cmd/enricher {{.CLI_ARGS}}
catalog-audit:
desc: Audit publisher attribution, official links, and source coverage
cmds:
- go run ./cmd/catalogsync -output data/catalog-audit.json {{.CLI_ARGS}}
catalog-check:
desc: Verify the committed local catalog audit is current
cmds:
- go run ./cmd/catalogsync -check -output data/catalog-audit.json
catalog-discover:
desc: Audit the catalog and discover new models from subscribed official Hugging Face organizations
cmds:
- go run ./cmd/catalogsync -discover-huggingface -apply-identity-matches -materialize-candidates -limit 5 -output data/catalog-discovery.json {{.CLI_ARGS}}
catalog-promote:
desc: Activate fully enriched lifecycle candidate model records
cmds:
- go run ./cmd/catalogsync -promote-ready -output data/catalog-audit.json {{.CLI_ARGS}}
catalog-backfill:
desc: One-time exact identity backfill from subscribed official Hugging Face organizations
cmds:
- go run ./cmd/catalogsync -discover-huggingface -since 0 -apply-identity-matches -output .cache/catalog-backfill.json {{.CLI_ARGS}}
site:
desc: Generate the static model museum for GitHub Pages
cmds:
- go run ./cmd/sitegen {{.CLI_ARGS}}
site-check:
desc: Build and validate the static model museum without changing the worktree
cmds:
- go test ./cmd/sitegen
codexgen:
desc: Generate a validated Codex models.json catalog from enriched YAML
cmds:
- go run ./cmd/codexgen {{.CLI_ARGS}}
codexvalidate:
internal: true
cmds:
- go run ./cmd/codexgen -validate
codexcheck:
desc: Load the generated catalog through the pinned Codex CLI
cmds:
- go run ./cmd/codexcheck {{.CLI_ARGS}}
codexinstall:
desc: Download, merge, validate, and configure the latest Codex catalog
cmds:
- sh scripts/install-codex-catalog.sh {{.CLI_ARGS}}
releasecheck:
desc: Compare current models_gen.go with the latest tag and decide whether a release is needed
cmds:
- go run ./cmd/releasecheck {{.CLI_ARGS}}
sync:
desc: "End-to-end refresh: fetch/sync once -> translate -> offline generate"
cmds:
- task: generator
- task: translator
- task: generator-offline
ci:
desc: CI-equivalent local checks
cmds:
- task: lint
- task: test
- task: fmt-check
- task: build
- task: codexvalidate
- task: catalog-check
- task: generator-check
- task: site-check
run:
desc: Run an arbitrary shell command, for example task run -- go test ./...
cmds:
- '{{.CLI_ARGS}}'