Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/jamie-bitflight/claude_skills/migrate-to-standalone)<a href="https://agentmods.dev/commands/jamie-bitflight/claude_skills/migrate-to-standalone"><img src="https://agentmods.dev/badge/commands/jamie-bitflight/claude_skills/migrate-to-standalone/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/jamie-bitflight/claude_skills/migrate-to-standalone"><img src="https://agentmods.dev/badge/commands/jamie-bitflight/claude_skills/migrate-to-standalone.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00025 | $0.06732 |
| Opus 5 | $0.00013 | $0.03366 |
| Sonnet 5 | $0.00005 | $0.01346 |
| Haiku 4.5 | $0.00003 | $0.00673 |
Grade A, and why
migrate-to-standalone scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 639 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Migrate Plugin to Standalone Repository
Playbook for extracting a plugin from Jamie-BitFlight/claude_skills into its own GitHub repo. Derived from the hallucination-detector extraction session (2026-02-28, session 2e52dd7b).
Prerequisites
ghCLI installed (run/ghskill if missing)GITHUB_TOKENset in environment- Empty GitHub repo created at target org (no README, no license, no .gitignore — avoids merge conflicts on first push)
- Reference repo
obra/superpowerscloned locally for structure reference
Phase 1: Repo Setup and Initial Copy
1.1 Clone the empty repo
gh repo clone <org>/<plugin-name> .claude/worktrees/<plugin-name>
1.2 Copy plugin files
cp -r plugins/<plugin-name>/* .claude/worktrees/<plugin-name>/
cp -r plugins/<plugin-name>/.* .claude/worktrees/<plugin-name>/ # hidden files
1.3 Fix git remote auth
Plain HTTPS push fails in this environment. Fix:
cd .claude/worktrees/<plugin-name>
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/<org>/<plugin-name>.git"
Gotcha: npm init will pick up the token from the remote URL and embed it in package.json. Never run npm init after setting the token URL — write package.json manually.
1.4 Initial commit and push
git add -A
git commit -m "feat: initial plugin extraction from monorepo"
git push -u origin main
Phase 2: Convert to CJS and Add Multi-Platform Support
2.1 Clone obra/superpowers as reference
gh repo clone obra/claude-code-superpowers .claude/worktrees/superpowers
Study its structure:
.claude-plugin/plugin.json # Claude Code manifest
.cursor-plugin/plugin.json # Cursor manifest
.codex/INSTALL.md # OpenAI Codex install guide
.opencode/INSTALL.md # OpenCode install guide
.opencode/plugins/<name>.cjs # OpenCode plugin module
hooks/hooks.json # Hook event bindings
hooks/run-hook.cmd # Cross-platform polyglot wrapper (batch + bash)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 639 lines · 25 tokens per session scan A d52c8bc75a7a
migrate-to-standalone is a command published in the GitHub repository Jamie-BitFlight/claude_skills (66 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 6,732 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
publish
Publish oh-my-opencode to npm via GitHub Actions workflow.
deploy-release
Prepare and verify a staged or production deployment with rollback and smoke checks.
rollback
Apply the CLI runtime and safety contract before executing a command. Runtime --help is authoritative.
land-and-deploy
Merge PR, wait for CI, verify deploy, run canary — the complete landing pipeline.
ci
Run CI validation, create PRs, and merge on green.
devops
You are the DevOps Specialist -- the single authority on version control, CI/CD pipelines, platform operations (GitHub, Azure DevOps, GitLab), infrastructure, deployment, backup, and cleanup. If it touches git, pipelines, or production infrastructure, it's yours.