autonomous-ai-agency: Skill for Claude Code

.agents/skills/implementation-planner/SKILL.md

implementation-planner is a skill for Claude Code, Codex from strikersam/autonomous-ai-agency. It costs 38 tokens per session (667 once invoked), scanned A, original, MIT.

A planning guide for software changes that involve several files, a new feature, or a changed module interface. It records the goal, approach, files, risks, and checks before coding starts.

In plain words
What is it for?
Use it for multi-file work, new endpoints or agent capabilities, routing changes, or changes that might affect existing tests.
Why use it?
It makes the intended change clear and helps reveal broken assumptions or missing tests before implementation begins.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md; mentions Codex.

This is strikersam/autonomous-ai-agency's own configuration. It tells Claude Code and Codex how to work on autonomous-ai-agency itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything autonomous-ai-agency configures →

Reuse

Borrowing it

Nothing to install: this file belongs to strikersam/autonomous-ai-agency. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/strikersam/autonomous-ai-agency/master/.agents/skills/implementation-planner/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for implementation-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/implementation-planner/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/implementation-planner)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/implementation-planner"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/implementation-planner/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.

agentmods 80×15 button for implementation-planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/implementation-planner"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/implementation-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 667 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.00667
Opus 5 $0.00019 $0.00333
Sonnet 5 $0.00008 $0.00133
Haiku 4.5 $0.00004 $0.00067

Measured 11d ago against content hash bc843d5b7e3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

implementation-planner 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.

.agents/skills/implementation-planner/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill: implementation-planner

When to Use

Use this skill before writing any code when:

  • The change touches more than 2 files
  • A new endpoint, agent capability, or routing behaviour is being added
  • The approach is not obvious from the existing code structure
  • You are unsure whether a change will break existing tests

Instructions

Step 1 — Understand the current state

  1. Read the relevant module AGENTS.md if one exists.
  2. Run pytest -x to confirm the baseline is green.
  3. Read the key files you expect to touch.

Step 2 — Write the plan

Produce a plan in this structure:

## Goal
One sentence: what does this change accomplish?

## Approach
2-3 sentences: the technical approach chosen and why.

## Files to change
- `path/to/file.py` — what changes and why
- `tests/test_something.py` — new or updated tests

## Files to read first
- `path/to/related.py` — to understand the interface

## Risks
- Any behaviour that might regress
- Any risky module being touched (triggers risky-module-review skill)

## Acceptance checks
- [ ] pytest -x passes
- [ ] changelog entry added
- [ ] no hardcoded secrets
- [ ] new tests cover the new behaviour

Step 3 — Get implicit approval before coding

If the plan involves a risky module (auth, key store, agent tools), invoke the risky-module-review skill before proceeding.

Step 4 — Implement

Follow the plan step by step. Update the plan if reality diverges from the written plan (annotate with # REVISED: comments).

Step 5 — Verify

After implementing:

  1. Run pytest -x.
  2. If tests fail, fix and re-run before reporting done.
  3. Update docs/changelog.md.
  4. Update .Codex/state/agent-state.json with completed steps.

Acceptance Checks

  • Plan was written before implementation
  • All listed files were changed
  • All tests pass
  • Changelog updated
  • No risky module changed without risky-module-review

Failure / Retry Behaviour

If a step fails (syntax error, test failure, unexpected interface):

  1. Do NOT silently swallow the failure.
  2. Annotate the plan with the failure.
  3. Diagnose before retrying — read the error carefully.
  4. If blocked, write the blocker to .Codex/state/NEXT_ACTION.md and stop cleanly.

Read the full file on GitHub · 94 lines

Changes

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.

  1. 11d ago First seen · 94 lines · 38 tokens per session scan A bc843d5b7e3d

Subscribe to this mod's changes

implementation-planner is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 38 tokens to every session and 667 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

assimilate-popular-workflows

This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable…

a5c-ai/babysitter · 110 tokens

process-builder

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

a5c-ai/babysitter · 32 tokens

mcp-app-verification

Comprehensive verification checklists for MCP Apps. Tests with basic-host reference, validates handler-before-connect, text fallback, resource URI linking, single-file bundling, host styling, CSP, and legacy pattern detection.

a5c-ai/babysitter · 48 tokens

mcp-csp-investigation

Comprehensive Content Security Policy audit for MCP Apps in sandboxed iframes. Discovers all network origins, traces them to source, and generates CSP configuration for registerAppResource.

a5c-ai/babysitter · 43 tokens

frontmatter-parsing

YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.

a5c-ai/babysitter · 40 tokens

guardrails-ai-setup

Guardrails AI validation framework setup for LLM applications. Implement input/output validation, safety checks, and structured output enforcement.

a5c-ai/babysitter · 30 tokens