📦 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,20 +1,20 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "urn:agentic-awesome-skills:schema:stack-plan:v1",
"title": "AAS immutable single-target plan v1",
"$id": "urn:agentic-awesome-skills:schema:stack-plan:v2",
"title": "AAS immutable single-target plan v2",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "kind", "digest", "payload"],
"properties": {
"schemaVersion": { "const": 1 },
"schemaVersion": { "const": 2 },
"kind": { "const": "aas.stack-plan" },
"digest": { "$ref": "#/$defs/digest" },
"payload": {
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "kind", "versions", "manifestDigest", "catalog", "runtime", "target", "installedState", "desiredSkills", "policy", "operations", "overrides", "stateCommit"],
"required": ["schemaVersion", "kind", "versions", "manifestDigest", "catalog", "runtime", "target", "installedState", "desiredSkills", "profile", "operations", "overrides", "stateCommit"],
"properties": {
"schemaVersion": { "const": 1 },
"schemaVersion": { "const": 2 },
"kind": { "const": "aas.stack-plan.payload" },
"versions": { "$ref": "#/$defs/versions" },
"manifestDigest": { "$ref": "#/$defs/digest" },
@@ -23,7 +23,7 @@
"target": { "$ref": "#/$defs/target" },
"installedState": { "$ref": "#/$defs/installedState" },
"desiredSkills": { "$ref": "#/$defs/ids" },
"policy": { "$ref": "#/$defs/policy" },
"profile": { "$ref": "#/$defs/profile" },
"operations": { "type": "array", "maxItems": 256, "items": { "$ref": "#/$defs/operation" } },
"overrides": { "type": "array", "maxItems": 128, "items": { "$ref": "#/$defs/override" } },
"stateCommit": {
@@ -46,12 +46,11 @@
"versions": {
"type": "object",
"additionalProperties": false,
"required": ["protocolVersion", "coreVersion", "metadataSchemaVersion", "scorerVersion"],
"required": ["protocolVersion", "coreVersion", "catalogSchemaVersion"],
"properties": {
"protocolVersion": { "type": "string", "minLength": 1 },
"coreVersion": { "type": "string", "minLength": 1 },
"metadataSchemaVersion": { "type": "string", "minLength": 1 },
"scorerVersion": { "type": "string", "minLength": 1 }
"catalogSchemaVersion": { "type": "string", "minLength": 1 }
}
},
"catalog": {
@@ -105,16 +104,19 @@
"entries": { "type": "array", "maxItems": 128, "items": { "$ref": "#/$defs/installedEntry" } }
}
},
"policy": {
"profile": {
"type": "object",
"additionalProperties": false,
"required": ["allowedRisk", "requireKnownSource", "allowManualSetup"],
"required": ["goals", "languages", "frameworks", "constraints"],
"properties": {
"allowedRisk": { "type": "array", "minItems": 1, "maxItems": 5, "uniqueItems": true, "items": { "enum": ["none", "safe", "unknown", "critical", "offensive"] } },
"requireKnownSource": { "type": "boolean" },
"allowManualSetup": { "type": "boolean" }
"goals": { "type": "array", "minItems": 1, "maxItems": 32, "uniqueItems": true, "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" }
}
},
"profileValues": { "type": "array", "maxItems": 32, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } },
"operation": {
"type": "object",
"additionalProperties": false,
@@ -131,12 +133,11 @@
"override": {
"type": "object",
"additionalProperties": false,
"required": ["kind", "skillId", "reasonCodes", "unknownFields"],
"required": ["kind", "skillId", "reasonCodes"],
"properties": {
"kind": { "enum": ["discoveryCandidate", "managedDrift"] },
"kind": { "const": "managedDrift" },
"skillId": { "$ref": "#/$defs/id" },
"reasonCodes": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
"unknownFields": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } }
"reasonCodes": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1 } }
}
}
}