Files
tpl-superclaude/.claude/commands/task/add.md
Paul.Kim c9020eb796 docs: 초기 파일 추가 및 기본 설정 구성
- .git-commit-template.txt: 커밋 메시지 템플릿 추가
- .gitignore: OS 및 데이터베이스 관련 파일 무시 설정 추가
- .mcp.json: MCP 서버 설정 추가
- CLAUDE.md: SuperClaude 엔트리 포인트 문서 추가
- README.md: 프로젝트 템플릿 설명 추가
- .claude/COMMANDS.md: 명령어 실행 프레임워크 문서 추가
- .claude/FLAGS.md: 플래그 시스템 문서 추가
- .claude/MCP.md: MCP 서버 통합 문서 추가
- .claude/MODES.md: 운영 모드 문서 추가
- .claude/ORCHESTRATOR.md: 지능형 라우팅 시스템 문서 추가
- .claude/PERSONAS.md: 페르소나 시스템 문서 추가
- .claude/PRINCIPLES.md: 핵심 원칙 문서 추가
- .claude/RULES.md: 실행 가능한 규칙 문서 추가
- .claude/settings.json: 권한 설정 추가
- .claude/commands 디렉토리: 다양한 명령어 문서 추가
- .taskmaster/config.json: 기본 설정 파일 추가
- .taskmaster/docs 디렉토리: 문서 파일 추가
- .taskmaster/tasks/tasks.json: 기본 작업 파일 추가
2025-07-20 22:25:33 +09:00

66 lines
1.3 KiB
Markdown

---
allowed-tools: mcp__taskmaster-ai__add_task, TodoWrite
description: Add one or more tasks to the current tag
---
# Add Tasks
- **User Request:** $ARGUMENTS
## Goal
Add new tasks to your current tag context. Can handle single tasks or multiple tasks at once.
## What You Can Say
### Single Task
```
/add implement user login with email and password
/add create API endpoint for user profile
```
### Multiple Tasks
```
/add
1. Setup database schema
2. Create user authentication
3. Add email verification
4. Implement password reset
```
### With Details
```
/add high priority: implement payment processing with Stripe
/add depends on 5: add payment confirmation emails
```
## How It Works
Based on your input (User Request), I'll:
1. **Parse your request** - Single task or numbered list
2. **Create tasks** in the current tag context
3. **Set dependencies** if you mention "depends on X"
4. **Set priority** if you mention high/medium/low
5. **Confirm** what was added
## Examples
### Quick Add
- `/add fix the login bug` → Creates task "fix the login bug"
### Batch Add
- `/add 1. Setup 2. Test 3. Deploy` → Creates 3 tasks
### With Context
- `/add urgent: fix security vulnerability in auth` → High priority task
- `/add after task 3: add unit tests` → Sets dependency
The command is smart enough to understand your intent from natural language.