Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:162
forks:2
updated:2026년 5월 16일 05:28
SKILL.md
Write a final report.md summarizing run results.
TDD implementation with AI code-review loop for a single ticket.
Decompose structured PRD into atomic implementation tickets.
Deterministic product acceptance review against parsed PRD constraints.
Decompose a Python web PRD into implementation tickets that preserve one FastAPI app.
Create Jira Epic + Stories for a list of planned tasks.
| name | ai-code-review |
| description | Structured review of a diff against a ticket's acceptance criteria. |
| role | reviewer |
| allowed-tools | ["Read"] |
| required-mcps | [] |
| inputs | {"diff":{"type":"string","required":true},"ticket":{"type":"object","required":true},"files_changed":{"type":"array","required":true}} |
| outputs | {"issues":{"type":"array"},"summary":{"type":"string"},"approved":{"type":"boolean"}} |
| llm | {"max_iterations":15,"temperature":0.1} |
Review a code diff against the ticket's acceptance criteria and project conventions.
diff (string, required): unified diff of the changes to review.ticket (object, required): the task/ticket being implemented (has acceptance_criteria).files_changed (string[], required): relative paths of modified files (for reading full context).AGENTS.md for project-specific conventions.Read tool to understand context beyond the diff.blocker: breaks the contract, insecure, or fails the acceptance criteriamajor: logic bug, performance issue, API contract driftminor: readability, minor design smellnit: style/naming/typoissues (object[]): {severity, file, line, description, suggested_fix}summary (string): 2-4 sentence overall assessmentapproved (boolean): true if no blocker/major issues remain