en un clic
en un clic
Iterate until success or limit, composing existing skills with Jidoka integration
Generate and maintain BPMN 2.0 diagrams linked to Gherkin scenarios
Research best-in-class products using Browser MCP and WebSearch
Audit Value Delivery compliance after PR push
Systematic debugging with MCP integration, auto-invoke from qa-commit, Phase 7 Harden
Capture patine (decision wisdom) at Gates when KO or challenge occurs
| name | code-review |
| description | Review code changes against hard rules and conventions |
Systematically review code for quality, conventions, and potential issues.
Before reviewing code, ensure build passes:
npm run typecheck - No type errorsnpm run lint - No lint errorsnpm run testIf any check fails, fix before proceeding to code review.
Quick check command:
npm run typecheck && npm run lint
Check for console.log:
git diff --cached --name-only | xargs grep -l "console.log" 2>/dev/null
any type usagepx-[13px])unknown everywhere)Present findings as:
Files Changed: [count] Issues Found: [count by severity]
file.ts:L42 - [issue description]file.ts:L15 - [issue description]file.ts:L88 - [suggestion]Proceed with commit? (yes / fix issues first)
This skill is automatically invoked before every commit.