forked from ioniks/MarkdownTaskManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCOPILOT.md.exemple
More file actions
58 lines (39 loc) Β· 1.49 KB
/
COPILOT.md.exemple
File metadata and controls
58 lines (39 loc) Β· 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Instructions for GitHub Copilot
## π Task Management System
**Every action = One documented task in kanban.md**
This project uses a Markdown-based task management system.
## π Complete Documentation
**β οΈ CONSULT**: `AI_WORKFLOW.md` at the project root
This file contains everything: format, workflow, commands, examples.
## βοΈ Critical Rule #1
**NO `##` or `###` headings inside a task**
- Use `**Subtasks**:` and `**Notes**:` with colons
- Subsections: `**Result**:`, `**Modified files**:`
**Why?** The HTML parser does not recognize `##` inside tasks.
## π Important Files
- `kanban.md` - Active tasks (To Do, In Progress, Done)
- `archive.md` - Archived tasks
- `AI_WORKFLOW.md` - Complete workflow documentation
- `task-manager.html` - Kanban visualization application
## π Task Workflow
### New task
1. Create in `kanban.md` β "π To Do" section
2. Auto-incremented ID (TASK-XXX)
3. Strict format required (see AI_WORKFLOW.md)
### In progress
1. Move β "π In Progress"
2. Add `**Started**: YYYY-MM-DD`
3. Check off subtasks progressively
### Done
1. Move β "β
Done"
2. Add `**Finished**: YYYY-MM-DD`
3. Document in `**Notes**:`
4. **Archive only on user request** (do not archive automatically)
## π¬ User commands
- "Do TASK-XXX" - Execute a task
- "Continue TASK-XXX" - Resume a task
- "Plan [feature]" - Create a new task
- "Where are we?" - Status update
- "Archive completed tasks" - Move to archive.md
---
**Consult AI_WORKFLOW.md for complete details.**