{
  "schema": "snappy-card/1",
  "skill": "snappy-statechange",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "Statechange Pro is a private **Circle** community at",
  "verbs": [
    {
      "name": "health",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-statechange/api.ts health"
    },
    {
      "name": "unread",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-statechange/api.ts unread"
    },
    {
      "name": "posts",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-statechange/api.ts posts"
    },
    {
      "name": "stage-post",
      "args": [
        "title",
        "body"
      ],
      "effect": "write-reversible",
      "firstCall": "npx tsx ~/.claude/skills/snappy-statechange/api.ts stage-post \"<title>\" \"<body>\""
    },
    {
      "name": "stage-message",
      "args": [
        "thread-url",
        "body"
      ],
      "effect": "write-reversible",
      "firstCall": "npx tsx ~/.claude/skills/snappy-statechange/api.ts stage-message <thread-url> \"<body>\""
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [],
  "used_by": [],
  "checks": {
    "pass": 46,
    "fail": 6,
    "defer": 9,
    "line": "46 of 52 checks pass",
    "failing": [
      {
        "id": 7,
        "rule": "Promised and declared verbs have no set difference",
        "says": "promised-only=[contract]; loader-missing=[]"
      },
      {
        "id": 10,
        "rule": "One term names each concept",
        "says": "mixed synonym sets: endpoint/url/route/path"
      },
      {
        "id": 11,
        "rule": "Each task presents one default, not a menu",
        "says": "1 line(s) present three-way alternative menus"
      },
      {
        "id": 12,
        "rule": "Description contains no unauthorised imperative",
        "says": "unauthorised description imperatives: read"
      },
      {
        "id": 55,
        "rule": "Eval scenarios are multi-call with ground truth",
        "says": "eval manifest missing"
      },
      {
        "id": 57,
        "rule": "Eval manifest contains a disjoint holdout",
        "says": "0 disjoint holdout scenario(s)"
      }
    ]
  },
  "coverage": null,
  "spec": null,
  "evals": null,
  "files": [
    "AGENTS.md",
    "SKILL.md",
    "api.ts",
    "face.test.ts",
    "faces/components/statechange-faces.css",
    "faces/components/statechange-faces.tsx",
    "faces/family.tsx",
    "faces/fixtures/statechange-decision.json",
    "faces/fixtures/statechange-feed.json",
    "faces/fixtures/statechange-message.json",
    "faces/fixtures/statechange-post.json",
    "faces/fixtures/statechange-thread.json",
    "faces/fixtures/statechange-unread.json",
    "refusals.test.ts"
  ],
  "total_size": 119965,
  "checksum": "sha256:9430149bed343266df3be2226a59f7990d75d961ef73731fa30823a108966fb7",
  "built_at": "2026-09-09T22:11:05.439Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-statechange",
      "version": "0.0.0",
      "description": "Read Statechange Pro unread counters and feed posts through authenticated, plain-fetch Libretto replays, and stage post or message copy locally without sending it. Triggers on: snappy-statechange, statechange, Statechange Pro, SCC community, SCC messages, SCC feed, StateChange unread."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-statechange/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/health": {
        "get": {
          "operationId": "snappy_statechange_health",
          "summary": "snappy-statechange health",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "json",
              "in": "query",
              "required": false,
              "schema": {
                "x-snappy-flag": "--json"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/unread": {
        "get": {
          "operationId": "snappy_statechange_unread",
          "summary": "snappy-statechange unread",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "json",
              "in": "query",
              "required": false,
              "schema": {
                "x-snappy-flag": "--json"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/posts": {
        "get": {
          "operationId": "snappy_statechange_posts",
          "summary": "snappy-statechange posts",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "json",
              "in": "query",
              "required": false,
              "schema": {
                "x-snappy-flag": "--json"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/stage-post": {
        "post": {
          "operationId": "snappy_statechange_stage_post",
          "summary": "snappy-statechange stage-post",
          "x-snappy-effect": "write-reversible",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "title": {
                      "type": "string",
                      "description": "Human-readable title",
                      "x-snappy-position": 0
                    },
                    "body": {
                      "type": "string",
                      "description": "Message body, verbatim",
                      "x-snappy-position": 1
                    },
                    "json": {
                      "x-snappy-flag": "--json"
                    }
                  },
                  "required": [
                    "title",
                    "body"
                  ]
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/stage-message": {
        "post": {
          "operationId": "snappy_statechange_stage_message",
          "summary": "snappy-statechange stage-message",
          "x-snappy-effect": "write-reversible",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "thread-url": {
                      "type": "string",
                      "description": "Permalink to the thread the message replies to",
                      "x-snappy-position": 0
                    },
                    "body": {
                      "type": "string",
                      "description": "Message body, verbatim",
                      "x-snappy-position": 1
                    },
                    "json": {
                      "x-snappy-flag": "--json"
                    }
                  },
                  "required": [
                    "thread-url",
                    "body"
                  ]
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      }
    },
    "components": {
      "schemas": {
        "SnappyRefusal": {
          "type": "object",
          "required": [
            "outcome",
            "code",
            "message"
          ],
          "properties": {
            "outcome": {
              "type": "string",
              "const": "refused"
            },
            "code": {
              "type": "string",
              "description": "A row of the closed refusal table."
            },
            "message": {
              "type": "string"
            },
            "fix": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}