plugins marketplace
← All plugins

swingle

v3.6.1

Share the load: dispatch implementation and review work across coding-agent CLIs as providers (codex/opencode/agy/grok/pi/claude/omp), locally, through validated packs — no proxy, no key custody.

CodexClaude Code2 skills

by Nathaniel Ramm3updated 3 hours ago

Source

git clone https://github.com/hiivmind/swingle

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

swingle/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/swingle-setup/SKILL.md
└── skills/swingle-verify/SKILL.md

Skills2

swingle-setupskills/swingle-setup/SKILL.md

Environment onboarding and health check for swingle — inspect paths, configuration, registry layers, CLI presence and auth, migration residue, and controller setup, report status, and offer individual consented fixes. Explicit user invocation only.

swingle-verifyskills/swingle-verify/SKILL.md

Re-verify one Swingle provider pack, or all active packs, against this plugin's living knowledge base. Use when a CLI version bump is observed, a vendor releases new models, a dispatch behaves contrary to documented gotchas, or the user asks to verify the dispatch reference.

Manifests2

.codex-plugin/plugin.json
{
  "name": "swingle",
  "version": "3.6.1",
  "description": "Share the load: dispatch implementation and review work across coding-agent CLIs as providers (codex/opencode/agy/grok/pi/claude/omp), locally, through validated packs — no proxy, no key custody.",
  "author": {
    "name": "Nathaniel Ramm"
  },
  "repository": "https://github.com/hiivmind/swingle",
  "keywords": [
    "swingle",
    "harness",
    "dispatch",
    "subagent",
    "orchestration",
    "sdd",
    "llm-router",
    "llm-gateway"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Swingle",
    "shortDescription": "Dispatch work across coding-agent CLIs through validated packs, locally",
    "longDescription": "Swingle is a local controller-to-provider dispatcher: it executes implementation plans and one-off jobs through external-CLI subagents (codex, opencode, agy, grok, pi, claude, omp) with manifest-driven routing, model tiering, liveness protocol, controller hard gates, and an append-only verification knowledge base. It spawns processes locally against credentials you already hold — no proxy, no key custody.",
    "developerName": "Nathaniel Ramm",
    "category": "Developer Tools",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/hiivmind/swingle"
  }
}
.claude-plugin/plugin.json
{
  "name": "swingle",
  "version": "3.6.1",
  "description": "Share the load: dispatch implementation and review work across coding-agent CLIs as providers (codex/opencode/agy/grok/pi/claude/omp), locally — model tiering, token thrift, liveness protocol, and a verified per-provider knowledge base",
  "author": {
    "name": "Nathaniel Ramm",
    "email": "nathaniel.ramm@discretedatascience.com"
  },
  "license": "MIT",
  "keywords": [
    "swingle",
    "harness",
    "dispatch",
    "subagents",
    "model-tiering",
    "sdd",
    "codex",
    "opencode",
    "antigravity",
    "grok",
    "llm-router",
    "llm-gateway"
  ]
}