- TicketStore rewritten: tickets live in .project/kanban/<column>/<id>.md - _findTicketFile() searches all column subdirs (one level deep) - update() moves the file when column changes - delete() cleans up attachments/<id>/ if present - _nextNumber() scans all subdirs including archive - Ticket.fromFileContent() now takes column as explicit parameter - Ticket.toFileContent() drops column field (derived from path) - _yamlQuote() added to safely quote titles containing ': ' - dew.yaml: columns changed to backlog/doing/done (alphabetical order) - Existing tickets migrated to .project/kanban/backlog/ Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
27 lines
507 B
YAML
27 lines
507 B
YAML
dew:
|
|
mcp:
|
|
host: "localhost"
|
|
port: 8080
|
|
kanban:
|
|
prefix: "DEW"
|
|
ticket_types:
|
|
- id: "epic"
|
|
name: "Epic"
|
|
- id: "story"
|
|
name: "Story"
|
|
- id: "task"
|
|
name: "Task"
|
|
- id: "bug"
|
|
name: "Bug"
|
|
- id: "spike"
|
|
name: "Spike"
|
|
columns:
|
|
- id: "backlog"
|
|
name: "Backlog"
|
|
color: "blue"
|
|
- id: "doing"
|
|
name: "Doing"
|
|
color: "yellow"
|
|
- id: "done"
|
|
name: "Done"
|
|
color: "green"
|