AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Recursive Planning

skill-jartan-llc-grimoire-recursive-planning · by Jartan-LLC

How to decompose projects into wave plans -- module identification, dependency mapping, wave assignment, contract guidance, deliverables.

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-jartan-llc-grimoire-recursive-planning

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jartan-llc-grimoire-recursive-planning)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
16d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Recursive Planning? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Recursive Planning

Decomposition Process

  1. Survey -- greenfield or existing? For existing: read README, types, error classes, test setup, conventions. These are constraints.
  2. Identify domains -- genuinely different kinds of work (parsing vs querying vs aggregating vs formatting)
  3. Map dependencies -- which domains need outputs from others? Dependencies flow through interfaces only.
  4. Assign waves -- no dependencies -> Wave 1. Depends on Wave 1 -> Wave 2. Wave 0 is always contracts/setup. Integration is final wave.
  5. Assign scopes -- each module gets a directory or file set. Zero overlap between parallel modules.
  6. Specify conventions -- language, test framework, type system, DI pattern, path handling, package manager
  7. Plan deliverables -- README, CHANGELOG, --version, runtime version access, coverage config

Module Split Criteria

See recursive-development skill for split principle and examples. Goal: natural, best-practice file structure.

Contract Guidance

Wave 0 agent designs contracts. The plan specifies what they should cover:

  • Enumerate capabilities -- list all operations/formats/modes, not just common ones
  • Error handling -- "Parsers yield Record | ParseError" not "Parsers raise on bad input"
  • Batch interfaces -- "Aggregator takes list[AggregationSpec]" not single-item
  • Injectable I/O -- "Formatters accept a write callable"
  • Types only -- contracts file has protocols, dataclasses, enums, type aliases, constants. No callable stubs.
  • Exception hierarchy -- base exception + subtypes per failure domain
  • Logging -- modules use named loggers, CLI configures at entry point

For existing projects: extend existing contracts, match established patterns.

Wave Plan Format

Save to .claude/workspace/wave-plan-.md.

## Implementation Plan -- `` 
### Issue Summary
### Language & Conventions
### Language-Specific Standards
(Standards shaped to this project's language and domain -- specifics that all agents must follow.
These go beyond generic conventions. Think about what a senior developer in this language would
insist on in a code review.)
### Existing Patterns (existing projects only)
### Chosen Approach

## Wave 0: Contracts & Project Setup
## Wave 1:  (N parallel)
### Module A -- Owns: , Responsibility: 
## Wave 2: 
### Module C -- Owns: , Depends on: , Responsibility: 
## Wave N: Integration + Documentation (README.md, CHANGELOG.md)

## File Ownership Map
### Complexity: Simple | Moderate | Complex

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.