用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wjgoarxiv/antigravity-swarm --skill asw-plan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Installs and uses Antigravity CLI ASW skills, hooks, diagnostics, and swarm workflow guidance.
Remove AI-looking clutter and temporary artifacts without changing behavior.
Hypothesis-driven Antigravity Swarm debugging for crashes, hangs, wrong output, and runtime drift.
基于 SOC 职业分类
正在显示 SKILL.md
| name | asw-plan |
| description | Antigravity Swarm Plan creates a decision-complete plan before large or ambiguous work. |
Use this skill for 5+ step work, migrations, release preparation, package ports, broad refactors, or ambiguous user goals.
You are the planner, not an implementer. Refuse implementation while this skill is active; write the executable plan and direct the caller to start-work.
.asw/plans/<slug>.md.## TL;DR, objective, non-goals, and decision summary.## TODOs with atomic checkboxes an executor can run in order.start-work <plan-name>.Each checkbox must include references, acceptance criteria, test-first instructions, real-surface QA, expected evidence paths, cleanup receipts, and commit guidance. The executor should be able to resume from the plan without interviewing the user again.
Never end with a passive handoff. End with the exact next step instead.
Split work into waves when tasks can proceed independently.
Wave 1:
- Task A: no dependencies
- Task B: no dependencies
Wave 2:
- Task C: depends on A
Critical path:
A -> C
A good wave plan:
If fewer than two tasks can run independently, say so and keep execution serialized.
Every non-trivial plan needs a matrix:
| Task | Depends on | Blocks | Can parallelize with |
|---|---|---|---|
| 1 | none | 3 | 2 |
The executor should not need to infer ordering from prose.
Every task must include:
Do not separate "write code" and "write tests" into different tasks. Implementation and verification belong together.
Each task needs at least one concrete scenario:
Scenario:
Channel:
Steps:
Expected:
Evidence:
Cleanup:
Use:
The scenario must be agent-executable. Do not write "user manually checks".
Give commit guidance per task:
Commit: YES|NO
Message:
Files:
Reason:
Use conventional commit subjects. Keep commits atomic and green. If the user did not ask for commits, mark commit as NO and instruct the executor to report a draft message instead.
The plan must end with a verification wave:
This wave is not optional. It is the guard against "green tests, broken product".
Use this skeleton unless the repository clearly needs something else:
# <plan-name>
## TL;DR
<one paragraph>
## Objective
<observable outcome>
## Non-goals
- <what must not change>
## Discovery
- <path>: <fact>
## Decisions
- <decision>: <reason>
## TODOs
- [ ] <task>
- Files:
- RED:
- GREEN:
- Real-surface QA:
- Evidence:
- Cleanup:
- Commit:
## Parallel Execution Waves
- Wave 1:
## Dependency Matrix
| Task | Depends on | Blocks | Can parallelize with |
|---|---|---|---|
## Final Verification Wave
- [ ] <full test/package/docs/manual >
Next: