1- name : 🎯 Conductor Task
2- description : Create a new task for AI agent coordination
3- title : " [Task ] "
1+ name : Conductor Task
2+ description : Create a new task for agent coordination
3+ title : " [TASK ] "
44labels : ["conductor:task"]
55body :
6- - type : markdown
7- attributes :
8- value : |
9- ## 🎼 Create a Conductor Task
10-
11- This template helps you create a structured task that can be automatically processed by Code-Conductor agents.
12-
13- **Note**: Adding the `conductor:task` label will automatically convert this issue into a task.
14-
156 - type : input
16- id : task_title
7+ id : title
178 attributes :
189 label : Task Title
19- description : A clear, concise title for the task
20- placeholder : " Implement user authentication system "
10+ description : Brief description of what needs to be done
11+ placeholder : " Implement user authentication"
2112 validations :
2213 required : true
2314
2415 - type : textarea
2516 id : description
2617 attributes :
27- label : Description
28- description : Detailed description of what needs to be accomplished
18+ label : Task Description
19+ description : Detailed description of the task
2920 placeholder : |
30- Create a secure user authentication system with the following features:
31- - User registration and login
32- - Password hashing with bcrypt
33- - JWT token management
34- - Session persistence
35- - Password reset functionality
21+ Implement JWT-based authentication with:
22+ - Login endpoint
23+ - Logout endpoint
24+ - Token refresh mechanism
3625 validations :
3726 required : true
3827
3928 - type : dropdown
40- id : effort
29+ id : priority
4130 attributes :
42- label : Estimated Effort
43- description : How much work is this task?
31+ label : Priority
4432 options :
45- - small (< 4 hours)
46- - medium (4-16 hours)
47- - large (> 16 hours)
33+ - High
34+ - Medium
35+ - Low
4836 validations :
4937 required : true
5038
51- - type : checkboxes
52- id : required_skills
53- attributes :
54- label : Required Skills
55- description : What specialized skills are needed? (Leave empty for general dev tasks)
56- options :
57- - label : DevOps (deployment, infrastructure, CI/CD)
58- - label : Security (authentication, encryption, compliance)
59- - label : UI/UX Design (interface design, user experience)
60- - label : Rust Development (systems programming, performance)
61- - label : Database (optimization, migrations, architecture)
62-
63- - type : textarea
64- id : files
65- attributes :
66- label : Files Involved
67- description : List the files that will be modified (one per line)
68- placeholder : |
69- src/auth/models.py
70- src/auth/views.py
71- src/auth/serializers.py
72- tests/test_auth.py
73- requirements.txt
74-
75- - type : textarea
76- id : specifications
39+ - type : input
40+ id : effort
7741 attributes :
78- label : Specifications
79- description : Link to design docs, API specs, or detailed requirements
80- placeholder : |
81- - API Documentation: docs/auth-api.md
82- - Database Schema: docs/auth-schema.sql
83- - Security Requirements: docs/security-requirements.md
42+ label : Estimated Effort
43+ description : Rough estimate (small/medium/large)
44+ placeholder : " medium"
8445
85- - type : textarea
86- id : best_practices
46+ - type : input
47+ id : skills
8748 attributes :
88- label : Best Practices
89- description : Important guidelines and coding standards to follow
90- placeholder : |
91- - Follow Django REST framework conventions
92- - Use type hints for all function signatures
93- - Implement comprehensive error handling
94- - Add logging for all authentication events
95- - Follow OWASP security guidelines
49+ label : Required Skills
50+ description : Comma-separated list of required skills (leave empty for general dev)
51+ placeholder : " security, backend"
9652
9753 - type : textarea
9854 id : success_criteria
9955 attributes :
10056 label : Success Criteria
101- description : How will we know this task is complete?
57+ description : How will we know when this task is complete?
10258 placeholder : |
103- **Tests**: All tests pass with 95% code coverage
104- **Security**: Passes security audit checklist
105- **Performance**: Login completes in under 200ms
106- **Documentation**: All API endpoints documented
107- **Code Review**: Approved by security team member
59+ - All authentication endpoints working
60+ - Tests written with 100% coverage
61+ - Security review passed
62+ validations :
63+ required : true
10864
10965 - type : textarea
11066 id : dependencies
11167 attributes :
11268 label : Dependencies
113- description : Other tasks or issues that must be completed first
69+ description : List any tasks or PRs this depends on
11470 placeholder : |
115- - Issue #123: Database migration system
116- - Task user_model_001: User model updates
117-
118- - type : checkboxes
119- id : acknowledgments
120- attributes :
121- label : Acknowledgments
122- description : Please confirm you understand how Conductor tasks work
123- options :
124- - label : I understand this will be converted to an agent task automatically
125- required : true
126- - label : I have provided enough detail for an AI agent to complete this work
127- required : true
128- - label : I will monitor the progress and provide feedback as needed
129- required : true
130-
131- - type : markdown
132- attributes :
133- value : |
134- ---
135-
136- ## 🚀 What Happens Next?
137-
138- 1. **Task Creation**: This issue will be automatically converted to a conductor task
139- 2. **Agent Assignment**: Available agents can claim this task via the bootstrap script
140- 3. **Isolation**: Work happens in isolated git worktrees to prevent conflicts
141- 4. **Progress**: Monitor via GitHub Actions and system health checks
142- 5. **Completion**: Agent creates PR when task is finished
143-
144- 📚 **Learn more**: [Code-Conductor Documentation](docs/USAGE.md)
71+ - PR#123 (Database schema)
72+ - Task#456 (User model)
0 commit comments