소스 정보
- 저장소
- stevehuang0115/crewly
- 최근 소스 활동
- 2026년 8월 22일 00:37
- 감지된 SKILL.md 언어
- 영어
- 스타
- 84
- 포크
- 24
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/stevehuang0115/crewly --skill complete-task명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | Complete Task |
| description | Mark a task as complete with a summary of the work done. |
| version | 1.2.0 |
| category | task-management |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist","sales","support"] |
| triggers | ["complete task","finish task","mark done","task done"] |
| tags | ["task","completion","status"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":15000}} |
Mark a task as complete with a summary of the work done. If the task has an output schema, provide structured output that will be validated against the schema. Optionally skip quality gates if they have already been verified separately.
| Parameter | Required | Description |
|---|---|---|
workItemId | Preferred | ID of the V3 WorkItem to complete. This is the only input that selects the WorkItem |
sessionName | Yes | Your agent session name |
summary | Yes | Summary of the work completed |
absoluteTaskPath | No | Legacy (V1). Still accepted so older callers keep working, but it does NOT identify a WorkItem |
output | No | Structured output object (required if task has an output schema) |
skipGates | Rejected | Not supported. This endpoint runs no quality gates, so there is nothing to skip. Passing it is a hard error. Use the check-quality-gates skill for gates. |
Resolution order:
workItemId, if you pass it — always wins.running against your
sessionName (GET /api/task-pool/items?status=running&target=<session>).Pass workItemId whenever you know it — the lookup in step 2 depends on the
pool state at that instant and cannot disambiguate two concurrently running
items for one session.
bash config/skills/agent/core/complete-task/execute.sh '{"workItemId":"wi-abc123","sessionName":"dev-1","summary":"Implemented login form with validation and tests"}'
bash config/skills/agent/core/complete-task/execute.sh
bash config/skills/agent/core/complete-task/execute.sh '{"workItemId":"wi-abc123","sessionName":"dev-1","summary":"Implemented login","output":{"summary":"Login form with validation","filesChanged":["src/login.tsx","src/login.test.tsx"],"testsAdded":2}}'
Note: a summary key inside output overrides the top-level summary.
bash config/skills/agent/core/complete-task/execute.sh '{"absoluteTaskPath":"/projects/app/.crewly/tasks/in_progress/implement-login.md","sessionName":"dev-1","summary":"Implemented login"}'
absoluteTaskPath is carried for logging context only; the WorkItem is still
resolved by step 2 above.
If the task markdown contains an ## Output Schema section with a JSON Schema definition, your output object must validate against that schema. If validation fails, the response will include the errors and you can retry (up to 2 retries). After max retries, the task will be moved to blocked/.
Before calling this skill, verify:
JSON confirmation of task completion status. If validation fails:
{
"success": false,
"validationFailed": true,
"errors": ["error details"],
"retryCount": 1,
"maxRetries": 2,
"message": "Output validation failed. 1 retries remaining."
}