addedOutput schema / properties / developer_path
Added value: +{
+ "additionalProperties": false,
+ "description": "The developer hero on-ramp: the npx one-liner plus the intent-named MCP prompt-skills (try-me, onboard_an_agent, become_sovereign). Advertisement only — no functional dependency on those prompts existing yet.",
+ "properties": {
+ "narrative": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "npx": {
+ "additionalProperties": false,
+ "properties": {
+ "command": {
+ "type": "string"
+ },
+ "what": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "command",
+ "what"
+ ],
+ "type": "object"
+ },
+ "prompt_skills": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "what": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "what"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "narrative",
+ "npx",
+ "prompt_skills",
+ "note"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / skill_path
Added value: +{
+ "additionalProperties": false,
+ "description": "The two-step on-ramp to declaring and advertising capabilities as A2A skills in a signed, portable AgentCard.",
+ "properties": {
+ "narrative": {
+ "type": "string"
+ },
+ "steps": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "auth": {
+ "enum": [
+ "none",
+ "required"
+ ],
+ "type": "string"
+ },
+ "step": {
+ "type": "integer"
+ },
+ "tool": {
+ "type": "string"
+ },
+ "what": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "step",
+ "tool",
+ "auth",
+ "what"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "narrative",
+ "steps"
+ ],
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[
- "who",
- "value_prop",
- "try_now",
- "authenticate",
- "sovereignty_path",
- "surface_map",
- "showcase_agent",
- "visibility_model",
- "what_we_keep_private_and_why",
- "verify",
- "doctrine"
-]New value: +[
+ "who",
+ "value_prop",
+ "try_now",
+ "authenticate",
+ "skill_path",
+ "sovereignty_path",
+ "developer_path",
+ "surface_map",
+ "showcase_agent",
+ "visibility_model",
+ "what_we_keep_private_and_why",
+ "verify",
+ "doctrine"
+]