{
  "schema": "snappy-card/1",
  "skill": "snappy-publish",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "Ships MDX blog posts live on snappy.ai via the git-to-Vercel pipeline. This skill does",
  "verbs": [
    {
      "name": "deploys",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-publish/api.ts deploys"
    },
    {
      "name": "status",
      "args": [
        "slug"
      ],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-publish/api.ts status <slug>"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [],
  "used_by": [
    "snappy-course",
    "snappy-email",
    "snappy-image"
  ],
  "checks": {
    "pass": 41,
    "fail": 6,
    "defer": 14,
    "line": "41 of 47 checks pass",
    "failing": [
      {
        "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": 40,
        "rule": "Metadata, skill body, and resources follow three-level budgets",
        "says": "metadata ~162 tokens; body ~3515 tokens"
      },
      {
        "id": 54,
        "rule": "At least three eval scenarios precede ready status",
        "says": "0 eval scenario(s); ready=true"
      },
      {
        "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",
    "deployment-verification.md",
    "git-workflow.md",
    "images-and-frontmatter.md",
    "mdx-validation.md",
    "publish.md",
    "refusals.test.ts"
  ],
  "total_size": 62244,
  "checksum": "sha256:2c5c362f2a103ccc0198bb8354a141db23b622d8feebf7646d62f08c7291840f",
  "built_at": "2026-09-09T22:10:20.804Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-publish",
      "version": "0.0.0",
      "description": "Git-based MDX blog publishing for the Snappy website (snappy.ai). Clones, branches, validates frontmatter, writes MDX into content/blog/, commits, pushes to origin, and verifies the Vercel deploy. Handles slug collisions, image references, hero/og images, required frontmatter checklist, and rollback. DEPLOY ONLY -- this skill never writes or edits prose; the MDX arrives finished from snappy-blog. Invoke it when a post is written and needs to go live. Triggers on: publish blog, snappy publish, deploy blog post, push blog, publish to snappy, go live with post, mdx publish, blog deploy, vercel deploy blog, snappy.ai blog, content/blog publish."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-publish/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/deploys": {
        "get": {
          "operationId": "snappy_publish_deploys",
          "summary": "snappy-publish deploys",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/status": {
        "get": {
          "operationId": "snappy_publish_status",
          "summary": "snappy-publish status",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "slug",
              "in": "query",
              "required": true,
              "schema": {
                "type": "string",
                "description": "URL slug that identifies the record",
                "x-snappy-position": 0
              }
            }
          ],
          "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"
            }
          }
        }
      }
    },
    "x-snappy-requires": [
      "VERCEL_TOKEN"
    ]
  }
}