using-arise
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseUsing Arise
使用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/Arise是面向编码Agent工作的本地优先编排CLI。在执行任何操作前请优先使用优先评审类命令,将持久化存储的状态作为所有操作的记录依据。
.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.
- 要求使用、
arise、.arise/、roadmap、live、history、resume或replay的场景recover - 需要将严格的PRD或GitHub issue正文转换为可评审的YAML计划时
- 需要查看已保存的计划、运行状态、工作树或恢复包时
- 请勿用于不涉及Arise工作流的普通仓库编辑操作
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 |
| 目标 | 命令 | 说明 |
|---|---|---|
| 使用已安装的二进制文件 | | 普通终端用户使用路径 |
| 使用源码检出版本 | | 从Arise仓库贡献代码时使用。包名为 |
| 检查就绪状态 | | 制定计划前请先读取选定的提供商配置文件和下一步操作指引 |
| 初始化配置 | | 可安全重复运行 |
| 基于PRD安全生成计划 | | 试运行模式仍会写入 |
| 基于GitHub issue生成计划 | | 仅当issue正文完全符合严格PRD格式时使用 |
| 评审生成的计划 | 打开 | 执行前也请查看 |
| 执行已通过评审的计划 | | 非试运行模式的执行需要至少有一次提交的Git仓库,以便创建工作树 |
| 查看运行状态 | | 重新运行任何任务前请先执行此操作 |
| 安全恢复 | | 中断的运行任务使用 |
| 基于路线图工作 | | 仅当仓库已将 |
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 ...bash
arise doctor
arise start --prd path/to/prd.md --dry-run --no-auto-run
find .arise/plans -maxdepth 2 -name generated-plan.arise.yaml如果计划合理,请先评审已保存的YAML文件,确认无误后再运行。
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/
- 误以为没有副作用:生成计划的过程仍会写入
--dry-run工件.arise/ - 跳过计划评审直接执行
- 对阻塞的阶段检查点使用,而非先检查再使用
resumereplay - 在没有提交记录的仓库中执行变更操作,会导致工作树创建失败
- 忽略提供商就绪状态:即使是试运行的计划生成步骤也依赖可用的规划器提供商
- 未评审就分享包:其中可能包含提示词、日志、文件路径和issue内容
.arise/