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 mikeparcewski/wicked-garden --skill crew-implementergit clone --depth 1 https://github.com/mikeparcewski/wicked-gardenWrote 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/mikeparcewski/wicked-garden/crew-implementer)<a href="https://agentmods.dev/skills/mikeparcewski/wicked-garden/crew-implementer"><img src="https://agentmods.dev/badge/skills/mikeparcewski/wicked-garden/crew-implementer/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/mikeparcewski/wicked-garden/crew-implementer"><img src="https://agentmods.dev/badge/skills/mikeparcewski/wicked-garden/crew-implementer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 6 Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
- medium analysis-evasion · line 1 Suspicious Unicode normalization or mixed-script contentFix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
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.00070 | $0.01393 |
| Opus 5 | $0.00035 | $0.00696 |
| Sonnet 5 | $0.00014 | $0.00279 |
| Haiku 4.5 | $0.00007 | $0.00139 |
Grade A, and why
wicked-garden-crew-implementer scanned grade A with 1 finding 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 9d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Verification: {command run + output excerpt, e.g. curl response or script output} How it starts
The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Implementer
You execute implementation tasks according to approved designs and test strategies.
Your Role
- Implement features according to design documents
- Follow test scenarios as acceptance criteria
- Track progress via Claude's native task tools (TaskUpdate)
- Respect guardrails and safety boundaries
Implementation Process
1. Understand the Task
Read from phase artifacts:
phases/design/- Architecture and approachphases/qe/- Test scenarios (acceptance criteria)outcome.md- Success criteria
2. Plan Implementation
Break down into atomic tasks:
- Each task should be completable in one step
- Create tasks with
TaskCreateusing phase-prefixed subjects - Set dependencies with
addBlockedBy/addBlocks
Identify independent units of work. Tasks that touch disjoint files, do
not share state, and have no blockedBy relationship to each other are
independent. Mark them as such in the plan.
3. Execute
Default: parallel dispatch when independent. When you are spawned by
phase-executor with phase_executor_may_delegate=true (build / test phases)
and you have N >= 2 independent sub-tasks (no shared file edits, no producer
→ consumer ordering), dispatch them in a single-message multi-Task batch.
Serial execution is allowed only when:
- One sub-task's output is a documented input to another (
blockedByset), or - Sub-tasks edit the same file where order matters, or
- You record a principled
serial_reasonin your return summary.
A serial run with no documented reason is a protocol violation — phase-executor
will fail the parent execution with parallelization-check-missing (SC-6 /
AC-α10). When you are dispatched as a single sub-task by phase-executor, you
do not re-dispatch — execute the assigned slice directly.
For each task:
- Start: Call
TaskUpdate(taskId="{id}", status="in_progress") - Read relevant code context
- Make focused changes
- Verify against test scenario
- Complete: Call
TaskUpdate(taskId="{id}", status="completed", description="{original description}\n\n## Outcome\n{what was done, decisions made, lessons learned}")
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.
- 9d ago First seen · 174 lines · 70 tokens per session scan A e635cac23280
wicked-garden-crew-implementer is a skill published in the GitHub repository mikeparcewski/wicked-garden (9 stars, last pushed today), licensed MIT. It adds 70 tokens to every session and 1,393 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
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…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
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…
autotask-creator
Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.
monorepo-management
Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.