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 skills add slowdini/slow-powers --skill working-in-isolationgit clone --depth 1 https://github.com/slowdini/slow-powersWrote 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/slowdini/slow-powers/working-in-isolation)<a href="https://agentmods.dev/skills/slowdini/slow-powers/working-in-isolation"><img src="https://agentmods.dev/badge/skills/slowdini/slow-powers/working-in-isolation/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/skills/slowdini/slow-powers/working-in-isolation"><img src="https://agentmods.dev/badge/skills/slowdini/slow-powers/working-in-isolation.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.00058 | $0.00688 |
| Opus 5 | $0.00029 | $0.00344 |
| Sonnet 5 | $0.00012 | $0.00138 |
| Haiku 4.5 | $0.00006 | $0.00069 |
Grade A, and why
working-in-isolation 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 8d 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 — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Working in isolation
Before changing anything in a repository — code, docs, config, or other files — make sure your work lands somewhere it won't collide with existing or in-progress work. Decide the workspace based on the git state. When in doubt, pause and ask the user.
Decision: where does this work go?
Check the current state, then take the first matching rule:
git branch --show-current # current branch
git status --porcelain # empty = clean tree
git worktree list # >1 entry = worktrees already exist
- The user named a workspace (explicit command, or a configured preference) → follow it.
- Dirty tree (staged or unstaged changes) OR worktrees already exist → a human or another agent is mid-work here. Use a new worktree so your changes can't collide with theirs.
- On
dev/main/master→ sync with origin and create a new branch using the rule 3 command below. Keeps the base clean and makes the work easy to review. - On any other branch → work in place. The user already isolated this workspace; adding a worktree is needless ceremony.
Hard rule: never make changes while on
dev/main/master. If you find yourself on a base branch, branch (rule 3) or worktree (rule 2) first.
Create a worktree (rule 2)
Prefer your harness's native Git worktree capability if it exists. The capability may be deferred or lazily loaded. Otherwise, fall back to a Git worktree:
git worktree add .worktrees/<branch-name> -b <branch-name>
cd .worktrees/<branch-name>
Keep the worktree out of version control: if .worktrees/ isn't already
ignored by Git, add it to .gitignore and commit that first. If worktree creation
fails (sandbox or permission limits), say so and fall back to checking out a
branch in place (rule 3).
Create a branch (rule 3)
After syncing the base branch with origin, create the new branch from the
current HEAD with no upstream tracking:
What ships with it
14 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- evals/baseline/BASELINE.md 828 B
- evals/baseline/benchmark.json 1016 B
- evals/baseline/grading/base-branch-checkout__with_skill.json 1.6 KB
- evals/baseline/grading/base-branch-checkout__without_skill.json 1.1 KB
- evals/baseline/grading/dirty-tree-worktree__with_skill.json 1.3 KB
- evals/baseline/grading/dirty-tree-worktree__without_skill.json 899 B
- evals/baseline/grading/feature-branch-in-place__with_skill.json 1.0 KB
- evals/baseline/grading/feature-branch-in-place__without_skill.json 593 B
- evals/baseline/grading/seeded-on-main-momentum__with_skill.json 1.3 KB
- evals/baseline/grading/seeded-on-main-momentum__without_skill.json 1.0 KB
- evals/baseline/grading/typo-no-worktree__with_skill.json 917 B
- evals/baseline/grading/typo-no-worktree__without_skill.json 606 B
- evals/baseline/NOTES.md 4.1 KB
- evals/evals.json 17 KB
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.
- 8d ago First seen · 73 lines · 58 tokens per session scan A 61230808b759
working-in-isolation is a skill published in the GitHub repository slowdini/slow-powers (2 stars, last pushed 25d ago), licensed MIT. It adds 58 tokens to every session and 688 once invoked, about $0.0003 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-31.
Other skills, from other repositories
code-commit
Generate and validate conventional commit messages following the conventionalcommits.org spec. Use whenever the user wants to commit code, mentions commit messages, git commit, or asks to create a commit. Triggers on "commit", "git commit", "conventional", or when reviewing commit message format.
spec-finish
Post-implementation completion workflow for Spec-backed Plans. Use after spec-implement completes to validate, review, create stacked commits, and open a PR via code-pull-request. Triggers only with an active Spec-backed Plan after spec-implement completes, including when the user says "finish", "done", or "complete"…
worktree
Create, inspect, and clean isolated git worktrees for parallel feature development. Standardizes worktrees under a top-level .worktrees/ dir, auto-copies .env files (nested included), assigns each worktree a deterministic port block, trusts mise configs in the new worktree when present, and runs lifecycle hooks for DB…
herd-worktree
Set up an isolated git worktree for a Laravel project served by Laravel Herd (Pro-aware). Composes vd:worktree for the worktree/.env/port mechanics, then adds the Herd layer: link + scheme-correct site (HTTPS via herd secure when the source is secured), .env rewrite (APPURL, SESSIONDOMAIN, Sanctum - only when…
git
Granular git operations with conventional commits - stage, commit, push, PR, merge. Auto-splits commits by type/scope, blocks on secrets, delegates verbose work to git-manager subagent. GitHub CLI conventions: --body-file for PR bodies, treat gh pr checks exit 8 (pending) as retry not failure, guard run-id assignment…
optimize-loop
Autonomous metric-optimization loop - run N bounded iterations against a mechanical metric, commit each attempt, auto keep/discard on the number, revert regressions. Use to improve a measurable metric: test coverage, bundle size, lint/type-error count, p95 latency, LOC. Triggers: 'drive coverage up', 'reduce bundle…