agentsclimarketplace

Plan review intake

Skill ChristopherAlphonse/calphonse-skills/plan-review-intake

Finds review inputs for plan review workflows using only local project files under .planning.From its SKILL.md

Install
npx -y skills add ChristopherAlphonse/calphonse-skills --skill plan-review-intake

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 4 commands, including `git rev-parse --show-toplevel` and 3 more.

SKILL.md

1.8 KB, 383 tokens by cl100k_base, as published. Nobody here has run it

Plan Review Intake

Gather the minimum context required for a plan review.

Guardrails

  • Read the smallest set of local files that can identify the plan, branch, scope, and known TODOs.
  • If multiple plans match, state the selection rule instead of guessing silently.
  • Do not inspect or edit unrelated source files in intake.
  • Report missing context that materially limits confidence.

Steps

  1. Detect the repo root with git rev-parse --show-toplevel; if that fails, use the current directory.
  2. Detect the current branch with git rev-parse --abbrev-ref HEAD.
  3. Detect the base branch:
    • Use gh pr view --json baseRefName -q .baseRefName when available.
    • Otherwise use gh repo view --json defaultBranchRef -q .defaultBranchRef.name.
    • Otherwise fall back to main.
  4. Find candidate plans and context only under .planning/*:
    • .planning/plans/**/*.md
    • .planning/requirements/**/*.md
    • .planning/specs/**/*.md
    • .planning/tasks/**/*.md
    • .planning/reviews/**/*.md
    • .planning/qa/**/*.md
  5. Read the most relevant plan first. If multiple plans are plausible, choose the newest file that mentions the current branch, current task, or user-provided feature name.
  6. Read .planning/tasks/TODOS.md if present.

Output

Return:

  • Selected plan path
  • Base branch
  • Current branch
  • Relevant .planning/* context files
  • Existing TODO sources
  • Any missing context that materially limits review confidence

Install: npx skills add ChristopherAlphonse/calphonse-skills --skill plan-review-intake

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.