task-add
2
总安装量
1
周安装量
#64931
全站排名
安装命令
npx skills add https://github.com/cantagestudio/cosmicatlaspacker --skill task-add
Agent 安装分布
amp
1
opencode
1
cursor
1
kimi-cli
1
codex
1
github-copilot
1
Skill 文档
Task Add
Add new tasks to Task documents when work items are discovered. Design tasks for parallel development across multiple workers.
Trigger Conditions
| Agent Action | Example |
|---|---|
| User requests new feature | “Add dark mode toggle” |
| Discovering bug during work | Found edge case that needs fix |
| Breaking down large task | Split into subtasks |
| Identifying follow-up work | “After this, we need to…” |
Task Format
- [ ] TaskTitle #tag !priority Deadline(yyyy:mm:dd)
- [ ] Subtask 1
- [ ] Subtask 2
- [ ] Subtask 3
â CRITICAL: Subtask is MANDATORY
Every task MUST have at least 3 subtasks. A task without subtasks is INCOMPLETE and will be REJECTED.
â FORBIDDEN – Task without subtasks:
- [ ] Implement login feature #auth !high
â REQUIRED – Task WITH subtasks:
- [ ] Implement login feature #auth !high
- [ ] Design login UI layout
- [ ] Create LoginView SwiftUI component
- [ ] Implement form validation logic
- [ ] Add API integration for authentication
- [ ] Handle error states and messages
Subtask Requirements
| Requirement | Rule |
|---|---|
| Minimum Count | Every task MUST have at least 3 subtasks |
| Granularity | Each subtask completable in 1-2 hours |
| Specificity | Use action verbs: Create, Implement, Add, Design, Configure |
| Independence | Each subtask independently verifiable |
Subtask Generation by Task Type
| Task Type | Required Subtasks |
|---|---|
| New Feature | UI ì¤ê³, ì»´í¬ëí¸ ìì±, ë¡ì§ 구í, API ì°ë, ìë¬ ì²ë¦¬ |
| Bug Fix | ìì¸ ë¶ì, ìì ì½ë ìì±, ì£ì§ ì¼ì´ì¤ íì¸, í ì¤í¸ ê²ì¦ |
| Refactoring | 기존 ì½ë ë¶ì, ì 구조 ì¤ê³, ë§ì´ê·¸ë ì´ì , í ì¤í¸ |
| Documentation | 구조 íì , ë´ì© ìì±, ìì ì¶ê° |
Section Placement
| Task Type | Target Section |
|---|---|
| New feature request | Backlog |
| Bug found during work | Backlog |
| Subtask breakdown | Same section as parent |
| Follow-up work | Backlog |
ð Parallel Development Guidelines
â ï¸ CRITICAL: When adding tasks, consider parallel development:
- Design for Independence: Each task should be completable without modifying files that other tasks touch
- Isolate by Directory: Prefer tasks that work in separate directories (e.g.,
/Views/FeatureA/vs/Views/FeatureB/) - Avoid Shared File Edits: Don’t create multiple tasks that modify the same file
Tag Reference
| Tag | Use Case |
|---|---|
#feature |
New functionality |
#bug |
Bug fix |
#refactor |
Code improvement |
#docs |
Documentation |
#test |
Testing |
#ui |
UI/UX work |
Priority Reference
| Priority | Use Case | Examples |
|---|---|---|
!high |
Urgent, blocker | Build failure, crash, critical bug |
!medium |
Normal priority | General feature development (default) |
!low |
Nice to have | Refactoring, documentation, code cleanup |
â ï¸ CRITICAL: Format Protection
Absolute Rules:
- NEVER modify existing Task document structure
- ONLY add priority tags (
!high,!medium,!low) - NEVER change section order, table structure, or markdown format
â ï¸ CRITICAL: Task Document Format Rules
Strict Format Requirements:
- Subtasks MUST use exactly 2-space indentation (no more, no less)
- NO intermediate grouping headers (e.g.,
### Phase 1,#### Step A) are allowed - Task hierarchy is flat: Parent task â Subtasks (2-space indent) ONLY
â CRITICAL: Duplicate Section Prevention
Before ANY edit, verify document structure:
- Read entire file first – Check existing section headers
- Count section occurrences – Each section (
## Backlog,## Worker1, etc.) MUST appear exactly ONCE - If duplicates found – STOP and fix by merging duplicate sections
- Add tasks to EXISTING sections – NEVER create new section headers
Detection Pattern:
## Review â First occurrence (KEEP)
...tasks...
## Done â First occurrence (KEEP)
...tasks...
## Review â DUPLICATE (REMOVE - merge tasks to first ## Review)
## Done â DUPLICATE (REMOVE - merge tasks to first ## Done)
Fix Procedure:
- Identify all duplicate sections
- Merge tasks from duplicate sections into first occurrence
- Delete duplicate section headers and empty lines
- Verify only ONE of each section exists
Workflow
- Read entire Task file – Verify no duplicate sections exist
- Identify new work item
- Determine appropriate Task file (by stage)
- Determine priority (use Priority Decision Guide)
- Format task with proper syntax including priority tag
- â MANDATORY: Generate 3+ subtasks – Analyze scope, break down by work type
- Find existing target section (DO NOT create new section)
- Add task WITH subtasks to section (bottom of existing section)
- Verify subtask count – Must have at least 3 subtasks
- Before saving – Verify no duplicate sections created
- Save file
Related Skills
| Skill | When to Use |
|---|---|
task-segmentation |
Before moving task to Worker, segment subtasks into granular items |
task-mover |
After adding task, move between sections as work progresses |