From Dev10x
Creates one standalone fixup! commit per ERROR/WARNING finding from Dev10x:review JSON, implementing fixes, validating with ruff check and black --check, then git add and commit.
npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill is limited to using the following tools:
Consume structured findings from `Dev10x:review` and create one
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Consume structured findings from Dev10x:review and create one
fixup! commit per finding using the standalone mode of
Dev10x:git-fixup.
Dev10x:review (e.g., /tmp/Dev10x/review/findings-abc.json)Dev10x:review after findings are approvedwork-on shipping pipeline (review → fix cycle)This skill follows references/task-orchestration.md patterns
(Tier: Standard).
Auto-advance: Complete each finding and immediately start the next. Never pause between findings.
REQUIRED: Create tasks before ANY work. Execute at startup:
TaskCreate(subject="Process review findings", activeForm="Fixing findings")After reading findings, create one subtask per finding.
Read the JSON findings file from the path argument. Parse the
findings array. Filter to only ERROR and WARNING severity
(skip INFO). When a confidence field is present, also skip
findings below the configured threshold (default: 70).
Sort findings by file path to minimize context switches.
For each finding:
Read the file at the specified path and line
Implement the fix — apply the suggested fix or implement a better solution based on the description
Validate the fix:
ruff check on the changed fileblack --check on the changed fileStage the changes: git add <file>
Create fixup commit — find the original commit that
introduced the finding's file and line using
git log --oneline -- <file>, then create a fixup commit:
Write the commit message to a temp file via mktmp.sh,
then commit with git commit -F <path>.
Commit message format:
fixup! <original commit subject>
Standalone fixup
Review finding: <description>
This uses the same Standalone fixup marker that
Dev10x:git-fixup uses, so the pre-commit hook accepts it.
Mark subtask completed
If a finding cannot be fixed (e.g., requires architectural change, ambiguous fix, or fix breaks other code):
After processing all findings, report:
Review fix complete:
- Fixed: N findings (M fixup commits)
- Deferred: K findings
- <file>:<line> — <reason>
Reads the same JSON format produced by Dev10x:review:
[
{
"severity": "WARNING",
"confidence": 85,
"source": "manual",
"file": "src/auth/middleware.py",
"line": 42,
"description": "Missing type annotation on return value",
"suggested_fix": "def validate(self, token: str) -> bool:",
"category": "style"
}
]
Required fields: file, line, description
Optional fields: severity, confidence, source,
suggested_fix, category
Dev10x:review (produces findings JSON)
└─ Dev10x:review-fix (this skill)
└─ git commit -F <msg-file> (one fixup! commit per finding)
After this skill completes, the calling pipeline typically proceeds to commit, PR creation, or CI monitoring.
Uses the Standalone fixup marker in the commit body so the
pre-commit hook accepts fixup commits without a PR comment link.