Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:162
forks:2
updated:2026년 5월 4일 08:23
SKILL.md
Structured review of a diff against a ticket's acceptance criteria.
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.
| name | create-jira-tickets |
| description | Create Jira Epic + Stories for a list of planned tasks. |
| allowed-tools | [] |
| required-mcps | ["jira"] |
| inputs | {"tasks":{"type":"array","required":true},"project_key":{"type":"string","required":true},"epic_title":{"type":"string","required":true}} |
| outputs | {"tickets":{"type":"array"},"epic":{"type":"object"},"errors":{"type":"array"}} |
| llm | {"max_iterations":30,"temperature":0.1} |
Create a Jira Epic + Stories for each task, return the created ticket references.
tasks (object[], required): output of plan-tasks.project_key (string, required): Jira project key (e.g. "ABC").epic_title (string, required): title for the umbrella epic.jira MCP server's tools. Typical calls: create_issue with issuetype.customfield_* = Epic link or
parent reference (whichever the MCP supports).errors rather than retrying blindly.tickets directly, so each ticket must keep
the task id, title, description, acceptance_criteria, depends_on,
and any delivery_profile exactly as received.task_id for the original task id and include
ticket_key plus url when available.tickets (object[]): original task objects enriched with {task_id, ticket_key, url}epic (object): {key, url}errors (string[])