{
  "schema": "snappy-card/1",
  "skill": "snappy-channel-contract",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "Every channel skill (snappy-slack, snappy-email, snappy-linkedin, snappy-whatsapp, snappy-imessage, snappy-telegram, snappy-skool) exports an `adapter.ts` conforming to this contract. Chains consume **only** the contract types — never the native api.ts shapes. That's what makes a chain channel-agnostic.",
  "verbs": [
    {
      "name": "certs",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-channel-contract/api.ts certs"
    },
    {
      "name": "list",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-channel-contract/api.ts list"
    },
    {
      "name": "schema",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-channel-contract/api.ts schema"
    },
    {
      "name": "validate",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-channel-contract/api.ts validate"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [],
  "used_by": [],
  "checks": {
    "pass": 47,
    "fail": 2,
    "defer": 12,
    "line": "47 of 49 checks pass",
    "failing": [
      {
        "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",
    "SPEC.md",
    "api.ts",
    "contract.test.ts",
    "entities.json",
    "types.ts",
    "verify.ts"
  ],
  "total_size": 40037,
  "checksum": "sha256:8d3bfcdbaf360f9bd71e2875328170316138d68df208bfbca2647ac7433eb220",
  "built_at": "2026-09-09T22:08:23.430Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-channel-contract",
      "version": "0.0.0",
      "description": "Uniform hands-and-eyes shape every channel skill implements so chains are channel-agnostic. Triggers on mentions of channel contract, channel adapter, ChannelAdapter, PostTarget, or channel self-check."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-channel-contract/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/certs": {
        "get": {
          "operationId": "snappy_channel_contract_certs",
          "summary": "snappy-channel-contract certs",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "parameters": [],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/list": {
        "get": {
          "operationId": "snappy_channel_contract_list",
          "summary": "snappy-channel-contract list",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "parameters": [
            {
              "name": "limit",
              "in": "query",
              "required": false,
              "schema": {
                "type": "integer",
                "description": "How many channels to return. The count is the FLAG --limit, never a positional word; default 20, ceiling 200",
                "default": 20,
                "minimum": 1,
                "maximum": 200,
                "x-snappy-flag": "--limit"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/schema": {
        "get": {
          "operationId": "snappy_channel_contract_schema",
          "summary": "snappy-channel-contract schema",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "parameters": [],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/validate": {
        "get": {
          "operationId": "snappy_channel_contract_validate",
          "summary": "snappy-channel-contract validate",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "parameters": [],
          "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"
            }
          }
        }
      }
    }
  }
}