🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

along-plan

by @orangon

Read-only exploration and planning skill for safe code analysis. This skill should be used when the user asks to enter plan mode, analyze before changing, cr...

Versionv1.0.0
Downloads510
TERMINAL
clawhub install along-plan

πŸ“– About This Skill


name: along-plan description: "Read-only exploration and planning skill for safe code analysis. This skill should be used when the user asks to enter plan mode, analyze before changing, create a plan first, or wants a safe exploration phase before making edits. Enforces read-only tool access, produces a numbered plan under a Plan: header, and tracks step completion with [DONE:n] markers during execution."

Along Plan

Explore

  • Only use read, grep, glob, bash (bash restricted to safe commands β€” see references/safe-commands.md)
  • Do NOT use edit or write, except to save the plan document (see below)
  • Output the plan under an exact Plan: header:

    Plan:
    1. Step one
    2. Step two
    3. Step three
    

    Then save it to docs/plan-.md or doc/plan-.md(whichever exists) using write:

    # Plan: 

    TODO

  • [ ] 1. Step one
  • [ ] 2. Step two
  • Acceptance Criteria

  • Observable outcome that confirms the plan succeeded
  • Edge cases or constraints that must hold
  • references/safe-commands.md β€” bash allowlist/blocklist for plan mode