Skip to content

Commit 19d03fb

Browse files
authored
Add ACP (AI Context Protocol) schemas to catalog (SchemaStore#5233)
Add three schema entries for the AI Context Protocol specification: - ACP Cache File (.acp.cache.json) - indexed codebase metadata - ACP Configuration File (.acp.config.json) - project settings - ACP Variables File (.acp.vars.json) - reusable context variables Schemas are self-hosted at https://acp-protocol.dev/schemas/v1/
1 parent e36f0c1 commit 19d03fb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/api/json/catalog.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,24 @@
193193
"11.2.0": "https://www.schemastore.org/abc-supply-plan-11.2.0.json"
194194
}
195195
},
196+
{
197+
"name": "ACP Cache File",
198+
"description": "AI Context Protocol cache file format for storing indexed codebase metadata",
199+
"fileMatch": [".acp.cache.json"],
200+
"url": "https://acp-protocol.dev/schemas/v1/cache.schema.json"
201+
},
202+
{
203+
"name": "ACP Configuration File",
204+
"description": "AI Context Protocol configuration file for project-level settings",
205+
"fileMatch": [".acp.config.json"],
206+
"url": "https://acp-protocol.dev/schemas/v1/config.schema.json"
207+
},
208+
{
209+
"name": "ACP Variables File",
210+
"description": "AI Context Protocol variables file for reusable context variables",
211+
"fileMatch": [".acp.vars.json"],
212+
"url": "https://acp-protocol.dev/schemas/v1/vars.schema.json"
213+
},
196214
{
197215
"name": "AIConfig",
198216
"description": "AIConfig that is used to store generative AI prompts, models and model parameters",

0 commit comments

Comments
 (0)