📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-20 00:03:02 +00:00
parent 47ce7f78dc
commit 2c00adccd5
1216 changed files with 10376 additions and 90058 deletions
@@ -1,12 +1,12 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "urn:agentic-awesome-skills:schema:stack-manifest:v1",
"title": "AAS stack manifest v1",
"$id": "urn:agentic-awesome-skills:schema:stack-manifest:v2",
"title": "AAS agent-owned stack manifest v2",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "name", "catalog", "targets", "intent", "policy", "skills"],
"required": ["schemaVersion", "name", "catalog", "targets", "profile", "skills"],
"properties": {
"schemaVersion": { "const": 1 },
"schemaVersion": { "const": 2 },
"name": { "type": "string", "minLength": 1, "maxLength": 128, "pattern": "^[A-Za-z0-9][A-Za-z0-9._ -]*$" },
"catalog": { "$ref": "#/$defs/catalogIdentity" },
"targets": {
@@ -16,21 +16,24 @@
"uniqueItems": true,
"items": { "$ref": "#/$defs/target" }
},
"intent": {
"profile": {
"type": "object",
"additionalProperties": false,
"required": ["goals"],
"required": ["goals", "languages", "frameworks", "constraints"],
"properties": {
"goals": {
"type": "array",
"minItems": 1,
"maxItems": 32,
"uniqueItems": true,
"items": { "$ref": "#/$defs/id" }
}
"items": { "type": "string", "minLength": 1, "maxLength": 128 }
},
"projectType": { "type": "string", "minLength": 1, "maxLength": 256 },
"languages": { "$ref": "#/$defs/profileValues" },
"frameworks": { "$ref": "#/$defs/profileValues" },
"constraints": { "$ref": "#/$defs/profileValues" }
}
},
"policy": { "$ref": "#/$defs/policy" },
"skills": {
"type": "array",
"maxItems": 128,
@@ -64,21 +67,6 @@
"scope": { "enum": ["project", "user"] }
}
},
"policy": {
"type": "object",
"additionalProperties": false,
"required": ["allowedRisk", "requireKnownSource", "allowManualSetup"],
"properties": {
"allowedRisk": {
"type": "array",
"minItems": 1,
"maxItems": 5,
"uniqueItems": true,
"items": { "enum": ["none", "safe", "unknown", "critical", "offensive"] }
},
"requireKnownSource": { "type": "boolean" },
"allowManualSetup": { "type": "boolean" }
}
}
"profileValues": { "type": "array", "maxItems": 32, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } }
}
}