{
  "schema": "snappy-card/1",
  "skill": "snappy-outbound",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "- A recipe's `deliver` hook needs to message a contact and doesn't care which channel",
  "verbs": [
    {
      "name": "pick",
      "args": [
        "contact-id"
      ],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-outbound/api.ts pick <contact-id>"
    },
    {
      "name": "status",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-outbound/api.ts status"
    },
    {
      "name": "send",
      "args": [
        "contact-id"
      ],
      "effect": "send",
      "firstCall": "npx tsx ~/.claude/skills/snappy-outbound/api.ts send <contact-id>"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [],
  "used_by": [],
  "checks": {
    "pass": 43,
    "fail": 2,
    "defer": 16,
    "line": "43 of 45 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",
    "api.ts",
    "doors.test.ts",
    "refusals.test.ts"
  ],
  "total_size": 31588,
  "checksum": "sha256:75938b6a33084692d5ac2a205318c8df1fe459dbdba5c5e8a8f0f11ca4b94d69",
  "built_at": "2026-09-09T22:10:07.438Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-outbound",
      "version": "0.0.0",
      "description": "Channel router for outbound messages. One send() call picks slack/email/ linkedin/telegram/whatsapp/imessage from a contact's preferred_channel (with fallback chain) and dispatches to the right channel skill. Collapses delivery logic across every recipe that reaches a human. Triggers on: outbound, send to contact, reach contact, channel router, contact message, dm contact."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-outbound/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/pick": {
        "get": {
          "operationId": "snappy_outbound_pick",
          "summary": "snappy-outbound pick",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "contact-id",
              "in": "query",
              "required": true,
              "schema": {
                "type": "string",
                "description": "Contact id from the outbound contact list",
                "x-snappy-position": 0
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/status": {
        "get": {
          "operationId": "snappy_outbound_status",
          "summary": "snappy-outbound status",
          "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`."
            }
          }
        }
      },
      "/send": {
        "post": {
          "operationId": "snappy_outbound_send",
          "summary": "snappy-outbound send",
          "x-snappy-effect": "send",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": true,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "contact-id": {
                      "type": "string",
                      "description": "Contact id from the outbound contact list",
                      "x-snappy-position": 0
                    },
                    "channel": {
                      "x-snappy-flag": "--channel"
                    },
                    "subject": {
                      "x-snappy-flag": "--subject"
                    },
                    "json": {
                      "x-snappy-flag": "--json"
                    }
                  },
                  "required": [
                    "contact-id"
                  ]
                }
              }
            }
          },
          "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": [
      "GOOGLE_CLIENT_ID",
      "GOOGLE_CLIENT_SECRET",
      "GOOGLE_SERVICE_ACCOUNT_EMAIL",
      "GOOGLE_SERVICE_ACCOUNT_KEY",
      "ROBERT_PHONE",
      "SLACK_BOT_TOKEN",
      "TELEGRAM_BOT_TOKEN",
      "TELEGRAM_ROBERT_CHAT_ID",
      "WHATSAPP_PHONE_ID",
      "WHATSAPP_TOKEN",
      "XANO_METADATA_TOKEN"
    ]
  }
}