Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/tentacleopera/switchboard/improve-remote-plannpx skills add TentacleOpera/switchboard --skill improve-remote-plangit clone --depth 1 https://github.com/TentacleOpera/switchboardWrote 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/skills/tentacleopera/switchboard/improve-remote-plan)<a href="https://agentmods.dev/skills/tentacleopera/switchboard/improve-remote-plan"><img src="https://agentmods.dev/badge/skills/tentacleopera/switchboard/improve-remote-plan.svg" alt="Measured on agentmods" 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 | $0.00000 | $0.01327 |
| Opus 5 | $0.00000 | $0.00664 |
| Sonnet 5 | $0.00000 | $0.00265 |
| Haiku 4.5 | $0.00000 | $0.00133 |
Grade A, and why
improve-remote-plan 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 5d 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 — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Improve Remote Plan (Linear)
Improve a Switchboard plan stored as a Linear issue — without touching the git repo
or local filesystem. This is the remote-session counterpart to /improve-plan, which
operates on local .md files.
When to Use
- You are in a remote session (Claude Code web, claude.ai) with no local machine running.
- A plan exists as a Linear issue in a Switchboard-mapped project.
- You need to deepen the plan and advance its status so the startup reconciler moves the kanban card.
When NOT to Use
- You have a local VS Code session with the Switchboard extension active → use
/improve-planinstead (it edits local files directly). - The plan is in Notion → Notion read/write is not yet supported via the agent API. Use the local
/improve-planworkflow instead.
Prerequisites
- The Switchboard extension must be active (LocalApiServer running) —
sb_api_call.shhealth-checks this automatically. - Linear integration must be configured in Switchboard (the proxy adds the token host-side).
- Source the API helper before any
sb_api_callinvocation —sb_api_callis a shell function, not a standalone command. Source it once at the start of the session:source "$(git rev-parse --show-toplevel)/.agents/skills/_lib/sb_api_call.sh"
Pre-flight
- Confirm the LocalApiServer is reachable:
sb_api_call.shwill fail with a clear error if not. - Identify the target Linear issue:
- If the user provides an issue ID/URL: use it directly.
- If no issue specified: query for issues in the "Created"/backlog status in the Switchboard-mapped project:
sb_api_call POST /api/linear -H "Content-Type: application/json" -d '{ "query": "query { issues(first: 50, filter: { team: { id: { eq: \"<TEAM_ID>\" } } }) { nodes { id identifier title state { id name } } } }" }' - Present the list to the user and let them choose.
- Identify the target "Improved" status:
- Query the team's workflow states:
sb_api_call POST /api/linear -H "Content-Type: application/json" -d '{ "query": "query { teams(first: 1) { states { id name type } } }" }' - Present the state names to the user and ask which one corresponds to the "Improved" column. Do NOT guess — an incorrect status = wrong column advance or silent no-op.
- Query the team's workflow states:
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.
- 5d ago First seen · 96 lines · 0 tokens per session scan A 1f76e3284fbc
improve-remote-plan is a skill published in the GitHub repository TentacleOpera/switchboard (213 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,327 tokens. 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 skills, from other repositories
agile-product-owner
../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.
workthreads
SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…
story-readiness
Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…
subagent-delegation
Canonical protocol for delegating GSD work to native Antigravity subagents — when to delegate, how to invoke, workspace isolation modes, and the inline fallback for older IDE versions.
projects
List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.
project-init
Scaffold an unconfigured directory into a configured pi project. Interactive, profile-driven: previews the planned writes, then writes AGENTS.md, .pi/settings.json and prompt files — optionally also a knowledge base, an openspec/ scaffold, and user-global /.pi/agent/settings.json. Use on a bare directory, or when the…