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.
git clone --depth 1 https://github.com/brody-0125/my-claude-skillsWrote 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/plugins/brody-0125/my-claude-skills/claude-autopilot)<a href="https://agentmods.dev/plugins/brody-0125/my-claude-skills/claude-autopilot"><img src="https://agentmods.dev/badge/plugins/brody-0125/my-claude-skills/claude-autopilot/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/plugins/brody-0125/my-claude-skills/claude-autopilot"><img src="https://agentmods.dev/badge/plugins/brody-0125/my-claude-skills/claude-autopilot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>Grade A, and why
claude-autopilot 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
{
"name": "claude-autopilot",
"description": "Time-bounded autonomous Claude Code orchestration — executes user-defined directives until deadline",
"version": "1.0.0",
"hooks": {
"PreToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "file=$(echo \"$CLAUDE_TOOL_INPUT\" | jq -r '.file_path // .path // empty' 2>/dev/null); if [ -n \"$file\" ] && echo \"$file\" | grep -qiE '(application-prod|secrets|credentials|private-key|\\.env$|\\.env\\.)'; then echo '{\"decision\":\"block\",\"reason\":\"Production secret file edit blocked by claude-autopilot\"}'; exit 2; fi"
}
]
},
{
"matcher": "Edit|Write|Bash",
"hooks": [
{
"type": "command",
"command": "state_file=\"$HOME/.claude/cache/claude-autopilot/session-state.json\"; if [ -f \"$state_file\" ]; then deadline=$(jq -r '.deadline_epoch // empty' \"$state_file\" 2>/dev/null); if [ -n \"$deadline\" ]; then now=$(date +%s); if [ \"$now\" -ge \"$deadline\" ]; then echo '{\"decision\":\"block\",\"reason\":\"Deadline reached. Transition to Phase 3 Wind-down.\"}'; exit 2; fi; fi; fi"
}
]
},
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "state_file=\"$HOME/.claude/cache/claude-autopilot/session-state.json\"; if [ -f \"$state_file\" ]; then scope=$(jq -r '.scope // \"project\"' \"$state_file\" 2>/dev/null); project_root=$(jq -r '.project_root // empty' \"$state_file\" 2>/dev/null); file=$(echo \"$CLAUDE_TOOL_INPUT\" | jq -r '.file_path // .path // empty' 2>/dev/null); if [ -n \"$file\" ] && [ -n \"$project_root\" ]; then case \"$scope\" in project) case \"$file\" in \"$project_root\"*) ;; *) echo '{\"decision\":\"block\",\"reason\":\"File outside project scope\"}'; exit 2;; esac;; module) scope_dir=$(jq -r '.scope_dir // empty' \"$state_file\" 2>/dev/null);What it installs
The manifest is a name and a version. 1 skill travel with it, and installing the plugin installs all of them — 107 tokens a session between them. Each is measured on its own page, and each can be installed alone.
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 · 59 lines scan A 19246fabcc30
claude-autopilot is a plugin published in the GitHub repository brody-0125/my-claude-skills (2 stars, last pushed 6mo ago), licensed MIT. Its token cost is not measured: this kind of file is read by the harness, not the model. 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 plugins, from other repositories
task
Chat-first task workflow: grill the plan one question at a time, then capture the discussion at the depth you pick — to-task / to-plan / to-roadmap / to-spec, never a flag — into a Markdown artifact under .task/. No execution skill — any session told to implement the artifact follows its stamped Execution block to a…
workinggenius
A development workflow that walks every piece of work through the six Working Geniuses — Wonder, Invention, Discernment, Galvanizing, Enablement, Tenacity — every stage a command the user types, every checkpoint a live exchange.
simple-statusline-marketplace
A minimal statusline for Claude Code.
simple-statusline
A simple, hackable two-line statusline for Claude Code showing model, git status, context usage, and rate limits.
cprof
Select which Claude account a session uses, by default profile, per-repo pin, or directory rule.
csw
Ship a tracker ticket: dispatch it into a worktree, drive it to a pull request, merge it after review, and clean up after itself.