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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# MissionControl Configuration
# Used by the mc CLI for repo structure, IDs, and statuses.
site:
name: Northwind Labs
description: Customer and project knowledge base
paths:
customers: customers/
projects: projects/
meetings: meetings/
research: research/
tasks: tasks/
sprints: sprints/
proposals: proposals/
notes: notes/
data: data/
templates: templates/
assets: assets/
archive: archive/
id_prefixes:
customer: CUST
project: PROJ
meeting: MTG
research: RES
task: TASK
sprint: SPR
proposal: PROP
statuses:
customer:
- active
- inactive
- prospect
- churned
project:
- active
- on-hold
- completed
- cancelled
meeting:
- scheduled
- completed
- cancelled
research:
- draft
- in-progress
- final
- outdated
task:
- backlog
- todo
- in-progress
- review
- done
- cancelled
sprint:
- planning
- active
- review
- completed
- cancelled
proposal:
- draft
- proposed
- accepted
- rejected
- superseded
- withdrawn
priorities:
1: critical
2: high
3: medium
4: low