🍦 SwiftServe Get

Get SwiftServe

Three ways in, ordered by setup cost: point your agent at the hosted index (zero install), teach your coding agent the skill (a paste or two), 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.

The index doesn't rot: it rechecks itself against new upstream releases (swiftserve index recheck) β€” pins bump only when every receipt still holds; changed truth is surfaced for review, never silently rewritten.

2 Β· Your coding agent β€” the skill

Claude Code β€” two pastes. 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?”

Codex β€” this repo is a Codex plugin marketplace too. Two pastes in a terminal, versioned like the Claude plugin:

codex plugin marketplace add nanoncore/swiftserve
codex plugin add swiftserve@swiftserve

Prefer a bare skill file (no plugin, no updates)? One paste β€” Codex speaks the same open SKILL.md format:

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

(Older Codex builds read ~/.codex/skills instead β€” same file, same paste, different path. Mention it with $swiftserve or just ask.)

Any other agent that speaks the skill format β€” same one-liner, pointed at its skills directory. The skill is plain instructions over the hosted API and the CLI; nothing in it is agent-specific.

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), Upgrade Receipts (diff), and CI gates.

Homebrew:

brew install nanoncore/tap/swiftserve

Or the checksum-verified installer script (latest, or pass a pinned release):

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

Or from source:

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