Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .agents/skills/manifest-automation/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The merge helper is advisory. Always inspect its proposed result before applying

## GitHub stars

`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.
`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.

## Validation

Expand Down
4 changes: 4 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
],
"useGitignore": true,
"ignorePaths": ["cloudflare-env.d.ts", "docs", ".claude"],
"ignoreRegExpList": ["/\\d+-g[0-9a-f]{6,}/g"],
"words": [
"Autorisierungsaufträgen",
"Entwicklungsframework",
Expand All @@ -63,6 +64,7 @@
"ccstatusline",
"API'lerle",
"acli",
"anomalyco",
"aracidir",
"glab",
"Rovo",
Expand Down Expand Up @@ -139,8 +141,10 @@
"Mengkonversi",
"mengorkestrasi",
"Moonshot",
"Novita",
"SpaceXAI",
"moonshotai",
"novita",
"Optimierung",
"Optimizasyonlar",
"Porcentagem",
Expand Down
86 changes: 86 additions & 0 deletions data/$schemas/artificial-analysis-index.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Artificial Analysis Intelligence Index Data",
"description": "Observed Artificial Analysis Intelligence Index scores mapped to catalog model identifiers.",
"type": "object",
"properties": {
"$schema": {
"const": "./$schemas/artificial-analysis-index.schema.json"
},
"source": {
"const": "Artificial Analysis"
},
"sourceUrl": {
"type": "string",
"format": "uri",
"pattern": "^https://"
},
"methodologyUrl": {
"type": "string",
"format": "uri",
"pattern": "^https://"
},
"indexVersion": {
"type": "string",
"pattern": "^[0-9]+(?:\\.[0-9]+)*$"
},
"observedAt": {
"type": "string",
"format": "date"
},
"legacyMissingModelIds": {
"type": "array",
"items": {
"$ref": "#/$defs/modelId"
},
"uniqueItems": true
},
"entries": {
"type": "array",
"items": {
"$ref": "#/$defs/entry"
},
"minItems": 1,
"uniqueItems": true
}
},
"required": [
"$schema",
"source",
"sourceUrl",
"methodologyUrl",
"indexVersion",
"observedAt",
"legacyMissingModelIds",
"entries"
],
"additionalProperties": false,
"$defs": {
"modelId": {
"type": "string",
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
},
"entry": {
"type": "object",
"properties": {
"modelId": {
"$ref": "#/$defs/modelId"
},
"score": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"estimated": {
"type": "boolean"
},
"configuration": {
"type": "string",
"minLength": 1
}
},
"required": ["modelId", "score", "estimated", "configuration"],
"additionalProperties": false
}
}
}
181 changes: 181 additions & 0 deletions data/$schemas/vendor-company-stages.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Vendor Company Stage Configuration",
"description": "Dated, sourced company-stage assignments and display order for the vendor catalog.",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"asOf": {
"type": "string",
"format": "date"
},
"criteria": {
"type": "object",
"properties": {
"publicCompanyIncludesListedParent": {
"const": true
},
"superUnicornMinimumUsd": {
"const": 10000000000
},
"unicornMinimumUsd": {
"const": 1000000000
},
"startupIsDefault": {
"const": true
}
},
"required": [
"publicCompanyIncludesListedParent",
"superUnicornMinimumUsd",
"unicornMinimumUsd",
"startupIsDefault"
],
"additionalProperties": false
},
"groups": {
"type": "array",
"prefixItems": [
{
"allOf": [
{ "$ref": "#/$defs/group" },
{
"type": "object",
"properties": {
"id": { "const": "public-company" },
"translationKey": { "const": "publicCompany" }
}
}
]
},
{
"allOf": [
{ "$ref": "#/$defs/group" },
{
"type": "object",
"properties": {
"id": { "const": "super-unicorn" },
"translationKey": { "const": "superUnicorn" }
}
}
]
},
{
"allOf": [
{ "$ref": "#/$defs/group" },
{
"type": "object",
"properties": {
"id": { "const": "unicorn" },
"translationKey": { "const": "unicorn" }
}
}
]
},
{
"allOf": [
{ "$ref": "#/$defs/group" },
{
"type": "object",
"properties": {
"id": { "const": "startup" },
"translationKey": { "const": "startup" }
}
}
]
}
],
"items": false,
"minItems": 4,
"maxItems": 4
},
"assignments": {
"type": "array",
"items": {
"$ref": "#/$defs/assignment"
},
"minItems": 1
}
},
"required": ["$schema", "asOf", "criteria", "groups", "assignments"],
"additionalProperties": false,
"$defs": {
"stage": {
"type": "string",
"enum": ["public-company", "super-unicorn", "unicorn", "startup"]
},
"group": {
"type": "object",
"properties": {
"id": {
"$ref": "#/$defs/stage"
},
"translationKey": {
"type": "string",
"enum": ["publicCompany", "superUnicorn", "unicorn", "startup"]
}
},
"required": ["id", "translationKey"],
"additionalProperties": false
},
"source": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"pattern": "^https://"
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": ["url", "title"],
"additionalProperties": false
},
"assignment": {
"type": "object",
"properties": {
"vendorId": {
"type": "string",
"pattern": "^[a-z0-9-]+$"
},
"stage": {
"$ref": "#/$defs/stage"
},
"source": {
"oneOf": [
{
"$ref": "#/$defs/source"
},
{
"type": "null"
}
]
}
},
"required": ["vendorId", "stage", "source"],
"additionalProperties": false,
"if": {
"type": "object",
"properties": {
"stage": {
"not": { "const": "startup" }
}
},
"required": ["stage"]
},
"then": {
"type": "object",
"properties": {
"source": {
"$ref": "#/$defs/source"
}
}
}
}
}
}
11 changes: 9 additions & 2 deletions data/artificial-analysis-index.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"$schema": "./$schemas/artificial-analysis-index.schema.json",
"source": "Artificial Analysis",
"sourceUrl": "https://artificialanalysis.ai/leaderboards/models",
"methodologyUrl": "https://artificialanalysis.ai/methodology/intelligence-benchmarking",
"indexVersion": "4.1",
"observedAt": "2026-07-27",
"legacyMissingModelIds": ["composer", "cursor-composer-2", "cursor-composer-2-5"],
"observedAt": "2026-07-31",
"legacyMissingModelIds": ["cursor-composer-2", "cursor-composer-2-5"],
"entries": [
{
"modelId": "claude-fable-5",
Expand Down Expand Up @@ -170,6 +171,12 @@
},
{
"modelId": "deepseek-v4-flash",
"score": 50,
"estimated": false,
"configuration": "DeepSeek V4 Flash 0731 (max)"
},
{
"modelId": "deepseek-v4-flash-preview",
"score": 40,
"estimated": false,
"configuration": "DeepSeek V4 Flash (max)"
Expand Down
Loading
Loading