Skip to content

Commit 70ab4d1

Browse files
authored
Merge pull request #189 from aicodingstack/codex/deepseek-v4-0731
feat(catalog): expand sourced model and provider coverage
2 parents 61c34a3 + 21ebb78 commit 70ab4d1

259 files changed

Lines changed: 4650 additions & 1619 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/skills/manifest-automation/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The merge helper is advisory. Always inspect its proposed result before applying
4242

4343
## GitHub stars
4444

45-
`data/github-stars.json` tracks `cli`, `desktop`, `extension`, `ide`, and selected `model` entries. Every CLI, desktop, extension, and IDE manifest must have a corresponding entry; use `null` when no official repository or trustworthy count is available. Providers and vendors are not tracked.
45+
`data/github-stars.json` tracks `cli`, `desktop`, `extension`, and `ide` entries. Every CLI, desktop, extension, and IDE manifest must have a corresponding entry; use `null` when no official repository or trustworthy count is available. Models, providers, and vendors are not tracked.
4646

4747
## Validation
4848

cspell.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
],
4343
"useGitignore": true,
4444
"ignorePaths": ["cloudflare-env.d.ts", "docs", ".claude"],
45+
"ignoreRegExpList": ["/\\d+-g[0-9a-f]{6,}/g"],
4546
"words": [
4647
"Autorisierungsaufträgen",
4748
"Entwicklungsframework",
@@ -63,6 +64,7 @@
6364
"ccstatusline",
6465
"API'lerle",
6566
"acli",
67+
"anomalyco",
6668
"aracidir",
6769
"glab",
6870
"Rovo",
@@ -139,8 +141,10 @@
139141
"Mengkonversi",
140142
"mengorkestrasi",
141143
"Moonshot",
144+
"Novita",
142145
"SpaceXAI",
143146
"moonshotai",
147+
"novita",
144148
"Optimierung",
145149
"Optimizasyonlar",
146150
"Porcentagem",
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"title": "Artificial Analysis Intelligence Index Data",
4+
"description": "Observed Artificial Analysis Intelligence Index scores mapped to catalog model identifiers.",
5+
"type": "object",
6+
"properties": {
7+
"$schema": {
8+
"const": "./$schemas/artificial-analysis-index.schema.json"
9+
},
10+
"source": {
11+
"const": "Artificial Analysis"
12+
},
13+
"sourceUrl": {
14+
"type": "string",
15+
"format": "uri",
16+
"pattern": "^https://"
17+
},
18+
"methodologyUrl": {
19+
"type": "string",
20+
"format": "uri",
21+
"pattern": "^https://"
22+
},
23+
"indexVersion": {
24+
"type": "string",
25+
"pattern": "^[0-9]+(?:\\.[0-9]+)*$"
26+
},
27+
"observedAt": {
28+
"type": "string",
29+
"format": "date"
30+
},
31+
"legacyMissingModelIds": {
32+
"type": "array",
33+
"items": {
34+
"$ref": "#/$defs/modelId"
35+
},
36+
"uniqueItems": true
37+
},
38+
"entries": {
39+
"type": "array",
40+
"items": {
41+
"$ref": "#/$defs/entry"
42+
},
43+
"minItems": 1,
44+
"uniqueItems": true
45+
}
46+
},
47+
"required": [
48+
"$schema",
49+
"source",
50+
"sourceUrl",
51+
"methodologyUrl",
52+
"indexVersion",
53+
"observedAt",
54+
"legacyMissingModelIds",
55+
"entries"
56+
],
57+
"additionalProperties": false,
58+
"$defs": {
59+
"modelId": {
60+
"type": "string",
61+
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
62+
},
63+
"entry": {
64+
"type": "object",
65+
"properties": {
66+
"modelId": {
67+
"$ref": "#/$defs/modelId"
68+
},
69+
"score": {
70+
"type": "number",
71+
"minimum": 0,
72+
"maximum": 100
73+
},
74+
"estimated": {
75+
"type": "boolean"
76+
},
77+
"configuration": {
78+
"type": "string",
79+
"minLength": 1
80+
}
81+
},
82+
"required": ["modelId", "score", "estimated", "configuration"],
83+
"additionalProperties": false
84+
}
85+
}
86+
}
Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"title": "Vendor Company Stage Configuration",
4+
"description": "Dated, sourced company-stage assignments and display order for the vendor catalog.",
5+
"type": "object",
6+
"properties": {
7+
"$schema": {
8+
"type": "string"
9+
},
10+
"asOf": {
11+
"type": "string",
12+
"format": "date"
13+
},
14+
"criteria": {
15+
"type": "object",
16+
"properties": {
17+
"publicCompanyIncludesListedParent": {
18+
"const": true
19+
},
20+
"superUnicornMinimumUsd": {
21+
"const": 10000000000
22+
},
23+
"unicornMinimumUsd": {
24+
"const": 1000000000
25+
},
26+
"startupIsDefault": {
27+
"const": true
28+
}
29+
},
30+
"required": [
31+
"publicCompanyIncludesListedParent",
32+
"superUnicornMinimumUsd",
33+
"unicornMinimumUsd",
34+
"startupIsDefault"
35+
],
36+
"additionalProperties": false
37+
},
38+
"groups": {
39+
"type": "array",
40+
"prefixItems": [
41+
{
42+
"allOf": [
43+
{ "$ref": "#/$defs/group" },
44+
{
45+
"type": "object",
46+
"properties": {
47+
"id": { "const": "public-company" },
48+
"translationKey": { "const": "publicCompany" }
49+
}
50+
}
51+
]
52+
},
53+
{
54+
"allOf": [
55+
{ "$ref": "#/$defs/group" },
56+
{
57+
"type": "object",
58+
"properties": {
59+
"id": { "const": "super-unicorn" },
60+
"translationKey": { "const": "superUnicorn" }
61+
}
62+
}
63+
]
64+
},
65+
{
66+
"allOf": [
67+
{ "$ref": "#/$defs/group" },
68+
{
69+
"type": "object",
70+
"properties": {
71+
"id": { "const": "unicorn" },
72+
"translationKey": { "const": "unicorn" }
73+
}
74+
}
75+
]
76+
},
77+
{
78+
"allOf": [
79+
{ "$ref": "#/$defs/group" },
80+
{
81+
"type": "object",
82+
"properties": {
83+
"id": { "const": "startup" },
84+
"translationKey": { "const": "startup" }
85+
}
86+
}
87+
]
88+
}
89+
],
90+
"items": false,
91+
"minItems": 4,
92+
"maxItems": 4
93+
},
94+
"assignments": {
95+
"type": "array",
96+
"items": {
97+
"$ref": "#/$defs/assignment"
98+
},
99+
"minItems": 1
100+
}
101+
},
102+
"required": ["$schema", "asOf", "criteria", "groups", "assignments"],
103+
"additionalProperties": false,
104+
"$defs": {
105+
"stage": {
106+
"type": "string",
107+
"enum": ["public-company", "super-unicorn", "unicorn", "startup"]
108+
},
109+
"group": {
110+
"type": "object",
111+
"properties": {
112+
"id": {
113+
"$ref": "#/$defs/stage"
114+
},
115+
"translationKey": {
116+
"type": "string",
117+
"enum": ["publicCompany", "superUnicorn", "unicorn", "startup"]
118+
}
119+
},
120+
"required": ["id", "translationKey"],
121+
"additionalProperties": false
122+
},
123+
"source": {
124+
"type": "object",
125+
"properties": {
126+
"url": {
127+
"type": "string",
128+
"format": "uri",
129+
"pattern": "^https://"
130+
},
131+
"title": {
132+
"type": "string",
133+
"minLength": 1
134+
}
135+
},
136+
"required": ["url", "title"],
137+
"additionalProperties": false
138+
},
139+
"assignment": {
140+
"type": "object",
141+
"properties": {
142+
"vendorId": {
143+
"type": "string",
144+
"pattern": "^[a-z0-9-]+$"
145+
},
146+
"stage": {
147+
"$ref": "#/$defs/stage"
148+
},
149+
"source": {
150+
"oneOf": [
151+
{
152+
"$ref": "#/$defs/source"
153+
},
154+
{
155+
"type": "null"
156+
}
157+
]
158+
}
159+
},
160+
"required": ["vendorId", "stage", "source"],
161+
"additionalProperties": false,
162+
"if": {
163+
"type": "object",
164+
"properties": {
165+
"stage": {
166+
"not": { "const": "startup" }
167+
}
168+
},
169+
"required": ["stage"]
170+
},
171+
"then": {
172+
"type": "object",
173+
"properties": {
174+
"source": {
175+
"$ref": "#/$defs/source"
176+
}
177+
}
178+
}
179+
}
180+
}
181+
}

data/artificial-analysis-index.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
2+
"$schema": "./$schemas/artificial-analysis-index.schema.json",
23
"source": "Artificial Analysis",
34
"sourceUrl": "https://artificialanalysis.ai/leaderboards/models",
45
"methodologyUrl": "https://artificialanalysis.ai/methodology/intelligence-benchmarking",
56
"indexVersion": "4.1",
6-
"observedAt": "2026-07-27",
7-
"legacyMissingModelIds": ["composer", "cursor-composer-2", "cursor-composer-2-5"],
7+
"observedAt": "2026-07-31",
8+
"legacyMissingModelIds": ["cursor-composer-2", "cursor-composer-2-5"],
89
"entries": [
910
{
1011
"modelId": "claude-fable-5",
@@ -170,6 +171,12 @@
170171
},
171172
{
172173
"modelId": "deepseek-v4-flash",
174+
"score": 50,
175+
"estimated": false,
176+
"configuration": "DeepSeek V4 Flash 0731 (max)"
177+
},
178+
{
179+
"modelId": "deepseek-v4-flash-preview",
173180
"score": 40,
174181
"estimated": false,
175182
"configuration": "DeepSeek V4 Flash (max)"

0 commit comments

Comments
 (0)