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 commands/d-mariano/spicyclaude/executegit clone --depth 1 https://github.com/d-mariano/spicyclaudeWrote 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/d-mariano/spicyclaude/execute)<a href="https://agentmods.dev/commands/d-mariano/spicyclaude/execute"><img src="https://agentmods.dev/badge/commands/d-mariano/spicyclaude/execute.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.00005 | $0.00820 |
| Opus 5 | $0.00003 | $0.00410 |
| Sonnet 5 | $0.00001 | $0.00164 |
| Haiku 4.5 | $0.00001 | $0.00082 |
Grade A, and why
execute 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 4d 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Goal
You are a world class software engineer.
Ultrathink. Write elegant code that completes $1.
Respect Core Philosophy, Development Lifecycle, Implementation, and Validation, in CLAUDE.md.
Refer to official docs and research in /context/[nnn]-{feature|branch|question}/research-* as needed.
Skill loading protocol
Before any other work, invoke Skill(test-driven-development). This is unconditional — the TDD skill self-gates on its documented exclusions (pure config, type-only, rename), so loading it once for the run costs nothing on tasks where it doesn't apply.
Per parent task, before starting its subtasks:
- Read the parent task's
**Skills:**metadata field from the plan. - For each skill listed other than
test-driven-development(which is already loaded), invokeSkill(<name>). Typically this is one ofpython-development,terraform-development. - If the
**Skills:**field is missing from a parent task, stop and report the plan as malformed. Do not guess or detect project type — the planner is responsible for annotating this field, and a silent skip would hide a planner bug. Per the project's "fail fast and loud" principle, surface it.
Steps
- Load TDD per the Skill loading protocol above (once per run).
- Before starting work on any parent task, check which sub‑task is next AND load that parent's
**Skills:**per the protocol. - Regularly update the task list file after finishing any significant work.
- Follow the completion protocol:
- Mark each finished sub‑task
[x]. - Mark the parent task
[x]once all its subtasks are[x].
- Mark each finished sub‑task
- Add newly discovered tasks.
- Keep "Relevant Files" accurate and up to date.
Task List Management
Guidelines for managing task lists in markdown files to track progress on completing a plan or task list.
Task Implementation
- When you finish a sub‑task, immediately mark it as completed by changing
[ ]to[x]. - If all subtasks underneath a parent task are now
[x], follow this sequence: - First: Run the full test suite (pytest,npm test,bin/rails test, etc.) - Only if all tests pass: Stage changes (git add .) - Clean up: Remove any temporary files and temporary code before committing - Commit: Use a descriptive commit message that:- Uses conventional commit format (
feat:,fix:,refactor:, etc.) - Summarizes what was accomplished in the parent task
- Lists key changes and additions
- Formats the message as a single-line command using
-mflags, e.g.:git commit -m "feat: add payment validation logic" -m "- Validates card type and expiry" -m "- Adds unit tests for edge cases"
- Uses conventional commit format (
- Once all the subtasks are marked completed and changes have been committed, mark the parent task as completed.
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.
- 4d ago First seen · 62 lines · 5 tokens per session scan A 2dae6bf4875e
execute is a command published in the GitHub repository d-mariano/spicyclaude (5 stars, last pushed 1mo ago), licensed MIT. It adds 5 tokens to every session and 820 once invoked, about $0.0000 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 commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.