{
  "schema": "snappy-card/1",
  "skill": "snappy-sync",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "Robert works on a MacBook Pro. Agents often run via SSH into the Mac Mini. Screenshots and local files on the MBP are invisible to agents on the Mini. This skill solves that: upload → CDN → clipboard URL → paste into chat.",
  "verbs": [
    {
      "name": "share",
      "args": [
        "file?"
      ],
      "effect": "post",
      "firstCall": "npx tsx ~/.claude/skills/snappy-sync/api.ts share"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [
    "snappy-image",
    "snappy-settings"
  ],
  "used_by": [],
  "checks": {
    "pass": 28,
    "fail": 6,
    "defer": 27,
    "line": "28 of 34 checks pass",
    "failing": [
      {
        "id": 4,
        "rule": "Near-neighbour descriptions cross-reference each other",
        "says": "near neighbours not named: snappy-runner"
      },
      {
        "id": 5,
        "rule": "Description is valid, third-person, and says what plus when",
        "says": "no when/use marker"
      },
      {
        "id": 10,
        "rule": "One term names each concept",
        "says": "mixed synonym sets: endpoint/url/route/path"
      },
      {
        "id": 12,
        "rule": "Description contains no unauthorised imperative",
        "says": "unauthorised description imperatives: upload"
      },
      {
        "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",
    "bin/snappy-share",
    "refusals.test.ts"
  ],
  "total_size": 16528,
  "checksum": "sha256:c91ea0f59e540c190e0227af36da45faa5ff969f2322041ad9f631b56e34cb1a",
  "built_at": "2026-09-09T22:11:08.905Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-sync",
      "version": "0.0.0",
      "description": "Cross-machine file sharing between MacBook Pro and Mac Mini. Upload a local file to CDN, copy the public URL to clipboard, so Robert can paste it into chat and the agent can read it. One command, no ceremony."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-sync/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/share": {
        "post": {
          "operationId": "snappy_sync_share",
          "summary": "snappy-sync share",
          "x-snappy-effect": "post",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": true,
            "idempotentHint": false,
            "openWorldHint": false
          },
          "requestBody": {
            "required": false,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "file": {
                      "type": "string",
                      "description": "Path to the file",
                      "x-snappy-position": 0
                    },
                    "latest-screenshot": {
                      "x-snappy-flag": "--latest-screenshot"
                    },
                    "region": {
                      "x-snappy-flag": "--region"
                    }
                  }
                }
              }
            }
          },
          "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"
            }
          }
        }
      }
    }
  }
}