🍦 SwiftServe Get

Get SwiftServe

Three ways in, ordered by setup cost: point your agent at the hosted index (zero install), add the Claude Code plugin (two pastes), or install the CLI.

1 · Your agent — zero install

The records are the API: static JSON, stable schema, evidence permalinks. Any agent that can curl is already set up:

curl -s https://swiftserve.dev/api/capabilities/audio.noise-cancellation.json

Start at /api/index.json for the endpoint map — full contract on the agents page.

2 · Claude Code — the plugin

Two pastes inside Claude Code. Versioned, auto-updating, and it teaches Claude to consult the index before adding any Swift dependency:

/plugin marketplace add nanoncore/swiftserve
/plugin install swiftserve@swiftserve

Then just ask: “can LiveKit do noise cancellation on macOS?”

Prefer a bare skill file (no plugin, no updates)? One paste in a terminal:

mkdir -p ~/.claude/skills/swiftserve && curl -fsSL https://swiftserve.dev/skill.md -o ~/.claude/skills/swiftserve/SKILL.md

3 · The CLI — offline checks, CI gates, scanners

Everything the hosted index answers, plus what needs your machine: dependency health (scan), private-API detection (scan-binary, scan-deps), and --expect CI gates.

Homebrew:

brew install nanoncore/tap/swiftserve

Or the installer script (fetches the latest signed release into ~/.local/bin):

curl -fsSL https://swiftserve.dev/install.sh | sh

Or from source:

git clone https://github.com/nanoncore/swiftserve && cd swiftserve && make install