소스 정보
- 저장소
- stevehuang0115/crewly
- 최근 소스 활동
- 2026년 8월 22일 01:35
- 감지된 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 create-task명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Assign a task to a worker within the Team Leader's subordinate scope. Validates that the target worker's parentMemberId matches the TL's memberId before delegation. Includes auto-monitoring setup.
Mark a task as blocked with a reason and optional questions for the orchestrator.
Proactively notify the orchestrator when a task is done, blocked, or failed.
SKILL.md 표시 중
| name | Create Task |
| description | Create a new task via the task-management API for autonomous work decomposition. |
| version | 1.0.0 |
| category | task-management |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist"] |
| triggers | ["create task","new task","add task","decompose task","sub-task"] |
| tags | ["task","management","decomposition","delegation"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":30000}} |
Create a new task via the /api/task-management/create endpoint. This allows team leads and agents to autonomously decompose their work into sub-tasks without requiring orchestrator intervention.
| Flag | JSON Field | Required | Description |
|---|---|---|---|
--project-path / -p | projectPath | Yes | Absolute path to the project root |
--task / -t | task | Yes | Task description |
--priority | priority | No | Priority: low, medium (default), high, critical |
--milestone / -m | milestone | No | Milestone/sprint name (default: delegated) |
--session / -s | sessionName | No | Session to assign the task to (open if omitted) |
--output-schema | outputSchema | No | JSON object defining expected output schema |
--owner | owner | No | Responsible role: orchestrator, team_lead, agent (default), system. A role, not a session name — use --session for the session |
--description / -d | description | No | Short summary of the task |
--brief | briefMarkdown | No | Long-form brief in markdown. Inline text, or @/path/to/file.md. Max 16384 bytes |
A task's title is not a contract. Every delegated task should carry Goal, Expected Outcome, and Eval Criteria — the receiving agent is expected to ask for them if they are missing, and a task without them tends to drift or come back unsatisfiable.
Put them in --brief. Prefer the @file form: a real brief is usually too long, and too full of quotes and backticks,
to survive being passed as a shell argument.
cat > /tmp/brief.md <<'EOF'
## GOAL
What the user ultimately wants.
## EXPECTED OUTCOME
What must be true when this is done.
## EVAL CRITERIA
1. Testable statement.
2. Another one.
EOF
bash execute.sh --project-path /path/to/project --task "Implement login API" \
--description "Session-cookie auth for the web portal" \
--brief @/tmp/brief.md --session dev-max
An over-limit brief is rejected, never truncated — the error names the limit and your actual size, because what to cut is your call, not the tool's.
# Create an open task
bash execute.sh --project-path /path/to/project --task "Implement login API endpoint"
# Create and assign to a specific agent
bash execute.sh --project-path /path/to/project --task "Write unit tests for auth service" \
--priority high --milestone sprint-2 --session dev-max
# Create with output schema
bash execute.sh --project-path /path/to/project --task "Generate API report" \
--output-schema '{"type":"object","properties":{"report":{"type":"string"}}}'
bash execute.sh '{"projectPath":"/path/to/project","task":"Implement login API","priority":"high","milestone":"sprint-1"}'
JSON response from the task-management API confirming task creation, including the task file path and metadata.