acpx-review
Use before DaoFlow commits when running self-review through acpx with Gemini and Claude Code, triaging blocking findings, and revalidating fixes.
Best use case
acpx-review is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Use before DaoFlow commits when running self-review through acpx with Gemini and Claude Code, triaging blocking findings, and revalidating fixes.
Teams using acpx-review should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/acpx-review/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How acpx-review Compares
| Feature / Agent | acpx-review | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use before DaoFlow commits when running self-review through acpx with Gemini and Claude Code, triaging blocking findings, and revalidating fixes.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# ACPX Review Use this skill before every significant DaoFlow commit. ## Preconditions - Local validation is already green or close to green. - `acpx` is available globally, or use `bunx acpx`. - Review the current change set unless you intentionally need a specific commit range. ## Commands Run: ```bash acpx --approve-reads --timeout 480 gemini exec "Review the current DaoFlow change set for correctness, security, and best practices. Run git status --short, git diff --stat, git diff --cached --stat, git diff, and git diff --cached to inspect changes." acpx --approve-reads --timeout 480 claude exec "Review the current DaoFlow change set for correctness and security. Run git status --short, git diff --stat, git diff --cached --stat, git diff, and git diff --cached to inspect changes." ``` If `acpx` is not available globally, replace it with `bunx acpx`. ## Review Contract - Treat correctness, security, safety, auth, and data-loss regressions as blocking. - Fix blocking findings before commit. - Re-run relevant validation after substantive fixes. - Keep a short note of the findings you fixed or explicitly rejected. - When you need a file-specific review, adapt the prompt to the exact files or diff under discussion. ## Reference Use [.agents/workflows/acpx-review.md](../../workflows/acpx-review.md) for command variants and flag details.