using-arise
Original:🇺🇸 English
Translated
Use when working with the `arise` CLI to check readiness, generate review-first plans from strict PRDs or GitHub issues, inspect `.arise/` artifacts, execute reviewed plans, or recover interrupted and integration-blocked runs.
11installs
Sourcemichaelasper/arise
Added on
NPX Install
npx skill4agent add michaelasper/arise using-ariseTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Using Arise
Overview
Arise is a local-first orchestration CLI for coding-agent work. Prefer review-first commands before any execution, and treat persisted state as the record of what happened.
.arise/When to Use
- Asked to use ,
arise,.arise/,roadmap,live,history,resume, orreplay.recover - Need to turn a strict PRD or GitHub issue body into a reviewable YAML plan.
- Need to inspect saved plans, run state, worktrees, or recovery bundles.
- Do not use for ordinary repo edits that do not involve Arise workflows.
Quick Reference
| Goal | Command | Notes |
|---|---|---|
| Use an installed binary | | Normal end-user path. |
| Use a source checkout | | Use when contributing from the Arise repo. The package name is |
| Check readiness | | Read the selected provider profile and next action before planning. |
| Initialize config | | Safe to rerun. |
| Plan safely from a PRD | | Dry-run still writes |
| Plan from a GitHub issue | | Use only when the issue body already follows the strict PRD shape. |
| Review the generated plan | open | Also inspect |
| Execute a reviewed plan | | Non-dry-run execution needs a Git repo with at least one commit so worktrees can be created. |
| Inspect run state | | Start here before rerunning anything. |
| Recover safely | | Use |
| Work from a roadmap | | Use when the repo already treats |
Minimal Flow
bash
arise doctor
arise start --prd path/to/prd.md --dry-run --no-auto-run
find .arise/plans -maxdepth 2 -name generated-plan.arise.yamlIf the plan is sound, review the saved YAML and only then run .
arise run ...Common Mistakes
- Treating as side-effect free. Planning still writes
--dry-runartifacts..arise/ - Skipping plan review and going straight to execution.
- Using for a blocked phase checkpoint instead of inspecting first and then using
resume.replay - Running mutating execution in a repo with no commit, which breaks worktree creation.
- Ignoring provider readiness. Even dry-run planning still depends on a working planner provider.
- Sharing bundles without review; they can contain prompts, logs, file paths, and issue content.
.arise/