{
  "schema": "snappy-card/1",
  "skill": "snappy-inbound",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "Detects new arrivals across every course funnel surface (Skool members/DMs, Slack joins,",
  "verbs": [
    {
      "name": "classify",
      "args": [
        "text"
      ],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-inbound/api.ts classify \"<text>\""
    },
    {
      "name": "slack-joins",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-inbound/api.ts slack-joins"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [],
  "used_by": [
    "snappy-inbox-sweep"
  ],
  "checks": {
    "pass": 40,
    "fail": 5,
    "defer": 16,
    "line": "40 of 45 checks pass",
    "failing": [
      {
        "id": 9,
        "rule": "Time-sensitive prose is isolated under Old patterns",
        "says": "1 time-sensitive instruction line(s) outside Old patterns"
      },
      {
        "id": 10,
        "rule": "One term names each concept",
        "says": "mixed synonym sets: endpoint/url/route/path"
      },
      {
        "id": 40,
        "rule": "Metadata, skill body, and resources follow three-level budgets",
        "says": "metadata ~179 tokens; body ~4312 tokens"
      },
      {
        "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",
    "contract.test.ts",
    "scripts/poll-sources.sh"
  ],
  "total_size": 42385,
  "checksum": "sha256:bf37f53f822d8dfee317ea5a84ab634b07a20c352899dfb128d76e1b63325c5b",
  "built_at": "2026-09-09T22:09:36.227Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-inbound",
      "version": "0.0.0",
      "description": "Inbound response automation for the free agentic-building course funnel. Detects new arrivals across Skool (new members, classroom joiners, course DMs), Slack workspace joins (T0AQPFMQEKB / snappyclaudec-qdk8925.slack.com #general), newsletter signups, and the snappy.ai contact form; drafts a first-reply in Robert's voice; queues every draft for Robert's approval (DRAFT ONLY -- no auto-sends); tracks the conversation thread state in snappy-knowledge; escalates qualified replies to snappy-sales. Triggers on: inbound, new member, new signup, newsletter signup, slack join, skool join, course inquiry, first reply, reply draft, inbound triage, course funnel, welcome draft, contact form, course DM, inbound queue."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-inbound/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/classify": {
        "get": {
          "operationId": "snappy_inbound_classify",
          "summary": "snappy-inbound classify",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "parameters": [
            {
              "name": "text",
              "in": "query",
              "required": true,
              "schema": {
                "type": "string",
                "description": "Inbound message text to classify",
                "x-snappy-position": 0
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/slack-joins": {
        "get": {
          "operationId": "snappy_inbound_slack_joins",
          "summary": "snappy-inbound slack-joins",
          "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`."
            }
          }
        }
      }
    },
    "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": [
      "SLACK_BOT_TOKEN"
    ]
  }
}