feat(skills): add deep-plan + super-plan planning skills#214
Closed
Number531 wants to merge 1 commit into
Closed
Conversation
Two previously local-only planning skills, now tracked: - deep-plan (.claude/skills/deep-plan/): a dynamic Workflow harness — 5 parallel Explore mappers (edit-sites, blast-radius, smoke-surface, integration-surface, conventions-arch) → plan synthesis → 5-lens adversarial audit with finding-verification, cross-lens dedup, keep-best scoring, and stop-on-no-progress. Returns the best-scoring plan plus an honest audit trail. Read-only. - super-plan (.agents/skills/super-plan/): prose planning skill that writes a phased implementation-*.md spec to a pending-updates folder. Includes three review fixes to deep-plan.workflow.js: - guard against null plan synthesis (fail loud instead of auditing "null") - verifier only drops a finding on an explicit real=false verdict, never on an omitted one (prevents falsely "converged"/sound plans) - corrected stale REPO_CONTEXT grounding (sdkRouting.js -> real files; pinned schemas/toolEnvelopes.js) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Owner
Author
|
Closing — keeping deep-plan / super-plan skills local-only for now. Will revisit. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Tracks two planning skills that were previously local-only / untracked in the working tree, bringing them onto
mainalongside the rest of the skills catalog.deep-plan(.claude/skills/deep-plan/) — a dynamic Workflow harness: 5 parallelExploremappers (edit-sites, blast-radius, smoke-surface, integration-surface, conventions-arch) → plan synthesis → 5-lens adversarial audit with per-finding verification, cross-lens dedup, keep-best scoring, and stop-on-no-progress. Returns the best-scoring plan + an honest audit trail. Read-only.super-plan(.agents/skills/super-plan/) — prose planning skill that writes a phasedimplementation-*.mdspec into apending-updates/folder.Review fixes included (deep-plan.workflow.js)
This PR also folds in three corrections from a code review of the workflow:
"null", burning a full audit loop, and returningplan: nullas a real artifact. Mirrors the existing map-phase degraded handling.real === falseverdict, never on an omitted one, so a partial verifier response can't silently suppress a genuine critical and surface the plan as falselyconverged/sound.src/utils/sdkRouting.js(no such file) → real files; pinnedsrc/schemas/toolEnvelopes.js.Notes
deep-plan.workflow.jsREPO_ROOTdefaults to a machine-absolute path (/Users/ej/Super-Legal/...) but is overridable viaargs.repoRoot— documented in the SKILL.md.node --checkpasses on the workflow script.🤖 Generated with Claude Code