HomeSkillsSkills for Claude CodeAndrew PershJuly 6, 20269 min read

The Claude Code Agent Pack for AI Insiders Who Orchestrate

Most people prompt Claude and hope for the best. The Claude Code agent pack for AI insiders is 6 Claude skills that instead split a build into planning, coding, review, and test subagents, hand a shared context file between every hop, and self-correct before anything ships. Download it once, then rerun the same pattern on the next project.

30,000+ consultants, bankers, private equity professionals

Free skills and prompts for Claude and strategy work

Templates for Claude, ChatGPT and Perplexity — from diagnostics to board-ready decks.

What the Claude Code agent pack is

A single chat window turns a build into a demo. Six Claude Code subagents, each with a scoped job and a written hand-off contract, turn the same build into something you can ship. That is the entire premise behind the Claude Code agent pack for AI insiders: stop asking one model to plan, write, review, and test a feature in one breath, and start giving each of those jobs to a subagent that only does its part.

Insiders already running Claude Code this way know the trick. One prompt gets you a toy. A system of subagents, planning first, coding in parallel, reviewing adversarially, testing before anyone claims done, gets you production. This pack turns that pattern into 6 Claude skills you can drop into any repo instead of re-deriving the orchestration from memory every time you start a new build.

Each run of the pack does four things. It splits the build into planning, coding, review, and test subagent briefs that can run in parallel. It keeps a shared context file so no decision gets lost between hops. It runs a review subagent that flags weak code before it ships, not after. And it packages the whole workflow so you can rerun it on the next project without rebuilding it from memory.

What comes out the other end is not a longer prompt. It is a small, named orchestration pattern, plan, ledger, dispatch, review, test, package, that closes tickets a single chat window would have left open for weeks.

Download all 6 skills

One zip, one folder per skill. Free, no signup.

Download the zip

The 6 skills in the Claude Code agent pack

The pack runs in the order a real orchestrated build actually needs, plan first, package last, but every skill is also useful on its own for a targeted step.

Plan, ledger, dispatch, review, test, package

1

Stage 1 · 1 skill

Plan the Build Into Subagent Briefs

One prompt asks a single model to hold the whole build in its head at once. This stage forces the split instead: a scoped brief for a planning pass, a coding pass, a review pass, and a test pass, written down before anyone touches a file.

1.1

Build Planning Brief

Use when: You have a build request and one prompt would either return a toy or a wall of code nobody scoped

Output: A one-page plan naming each subagent's job, its inputs, and the exact hand-off artifact it owes the next subagent

2

Stage 2 · 1 skill

Keep a Shared Context Ledger

A build that spans more than one subagent session loses decisions the moment memory runs out. This stage creates one context file every subagent reads first and appends to last, so a decision made in hop one survives to hop five.

2.1

Shared Context Ledger

Use when: A build runs across more than one subagent session and prior decisions keep getting silently re-litigated

Output: A living context file (decisions made, open questions, file map, current state) every subagent reads and updates

3

Stage 3 · 1 skill

Dispatch Coding Subagents in Parallel

A scoped plan with more than one independent workstream does not need to run one task at a time. This stage carves the plan into coding tasks with non-overlapping file scopes so several subagents can build at once.

3.1

Parallel Build Dispatch

Use when: The plan has more than one independent workstream and running them one at a time would waste the afternoon

Output: A dispatch list of parallel coding tasks, each with a non-overlapping file scope and a definition of done

4

Stage 4 · 1 skill

Run a Self-Correcting Code Review

A coding subagent grading its own diff has no reason to find its own mistakes. This stage hands the diff to a fresh review subagent in a separate context, one whose only job is to find what should not ship.

4.1

Self-Correcting Code Review

Use when: A coding subagent has produced a diff and you want an adversarial second look before it merges

Output: A review verdict (ship, fix, reject) with the specific lines at fault and the exact fix requested

5

Stage 5 · 1 skill

Verify With a Test Subagent

Review on paper is not proof the feature works. This stage hands the change to a subagent whose only job is to run it end to end and report what actually happened, not what the diff claims.

5.1

Test Subagent Verification

Use when: A change has passed review on paper and you need proof it behaves correctly before you call it done

Output: A test log of what was run, what passed, what failed, and any regression found in adjacent features

6

Stage 6 · 1 skill

Package the Workflow for Reuse

An orchestration pattern that only lives in one chat session gets rebuilt from memory, slightly worse, on the next project. This stage saves the roles, the hand-off contract, and the context format as one named pattern.

6.1

Workflow Repackaging

Use when: An orchestration run closed real tickets and you do not want to reinvent the subagent setup from memory next time

Output: A saved, named orchestration pattern (roles, hand-off contract, shared context format) ready to invoke on the next repo

Setup guide

Step 1

Download the agent pack

Download all 6 skills (.zip)

The zip contains all 6 skills, one folder per skill, each with a single SKILL.md file. Unzip it anywhere. Keep the whole set, or pull out just the stage you need.

Step 2

Drop it into Claude Code

Copy the unzipped skills/ folder into your Claude Code skills directory so it discovers each skill automatically. If you work from claude.ai instead, open the left sidebar, click Projects, then Create Project, and continue to the next step.

Claude Projects view with the New project button highlighted
Step 3

Add the skills as project knowledge

Inside your project, open Project Knowledge, click Add Content, and upload the .md files. Add one stage or all 6 skills. Claude references them automatically in every conversation inside that project, or inside Claude Code once the folder is in place.

Finder window with the skill markdown files being dragged into the Claude project Files panel
Step 4

Give it the repo and the outcome you want

Open Claude Code in the repo, name the skill you want it to run, and state the outcome you want, not the steps. It plans, builds, reviews, and tests without you babysitting each step.

Claude conversation using a skill from the Claude Code agent pack, with the skill reference highlighted in the prompt

Example prompts

  • "Use the build-planning-brief skill on this repo. I want a working CSV import feature by end of day, split it into subagent briefs."
  • "Use the shared-context-ledger skill to start a context file for this build before any subagent touches the code."
  • "Use the parallel-build-dispatch skill to break this plan into non-overlapping coding tasks two subagents can run at once."
  • "Use the self-correcting-code-review skill on this diff before it merges, and flag anything you would not ship."

Tip

Hand the coding subagent's diff to a fresh review subagent in a separate context window. It has no attachment to code it did not write, so it flags what a tired reviewer would miss.

How to choose a skill from the Claude Code agent pack

Match your immediate situation to the skill that answers it. For the method to design a custom skill from scratch, see our Claude Skill Factory for Strategy, and for a broader set of ready-made prompts and skills, see our Claude workflows for strategy.

Your situation
Skill to use
You have a build request and no scoped plan yet
Build Planning Brief
A build spans more than one subagent session
Shared Context Ledger
The plan has more than one independent workstream
Parallel Build Dispatch
A coding subagent just produced a diff
Self-Correcting Code Review
Review passed on paper but nobody has run the feature
Test Subagent Verification
The pattern worked and you do not want to rebuild it next time
Workflow Repackaging

The quality bar

Every skill in the Claude Code agent pack is checked against this bar, so an orchestrated build holds up under real review, not just a single self-reported pass.

Every subagent has one scoped job and a stated non-goal
A shared context file survives every hand-off, not just memory
The review subagent is adversarial, not a rubber stamp
Nothing ships on the coding subagent's own claim that it works
Parallel tasks never share a file scope
The pattern is named and saved, not re-derived from memory
Failures are logged with the specific line at fault
The whole workflow reruns on a new repo without a rewrite

Frequently asked questions

What is the Claude Code agent pack for AI insiders, exactly?

It is six Claude skills that turn Claude Code from a single chat window into a small team of subagents. One plans the build, one maintains a shared context file, one dispatches parallel coding tasks, one reviews adversarially, one tests end to end, and one packages the pattern for reuse.

Do I need Claude Code specifically, or does this work in a Claude Project too?

The pack is built for Claude Code's skills directory, since that is where a subagent can actually read a repo and hand off files between hops. The same SKILL.md files also work in a Claude Project for the planning and review stages, though a project chat cannot dispatch a coding subagent against your files directly.

How is this different from just writing a longer system prompt?

A long system prompt asks one model to hold the entire job in its head at once: plan, code, review, and test, with no hand-off and no adversarial check. This pack splits that job into named subagents with a written contract between them, so quality does not depend on one context window staying coherent for the whole build.

Do I need to run all six skills on every build?

No. A small fix might only need the planning brief and the review skill. Reserve the full sequence, plan, ledger, dispatch, review, test, package, for builds large enough that losing context between hops would actually cost you time.

Can the output feed into a status update or a slide deck?

Yes. The test subagent's log and the workflow repackaging summary are both structured enough to drop straight into a build recap, which is a clean input for turning into slides, since Oria works from structured content rather than freeform prose.