tlc-claude-code 0.6.4 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +59 -0
- package/README.md +164 -121
- package/autofix.md +327 -0
- package/bin/install.js +23 -2
- package/bug.md +255 -0
- package/build.md +167 -21
- package/ci.md +414 -0
- package/claim.md +189 -0
- package/config.md +236 -0
- package/deploy.md +516 -0
- package/docs.md +494 -0
- package/edge-cases.md +340 -0
- package/export.md +456 -0
- package/help.md +84 -1
- package/init.md +56 -7
- package/issues.md +376 -0
- package/new-project.md +68 -4
- package/package.json +4 -2
- package/plan.md +15 -1
- package/progress.md +17 -0
- package/quality.md +273 -0
- package/release.md +135 -0
- package/server/dashboard/index.html +708 -0
- package/server/index.js +406 -0
- package/server/lib/plan-parser.js +146 -0
- package/server/lib/project-detector.js +301 -0
- package/server/package.json +19 -0
- package/server.md +742 -0
- package/who.md +151 -0
package/who.md
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# /tlc:who - Team Status
|
|
2
|
+
|
|
3
|
+
See who's working on what in the current phase.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
/tlc:who
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
|
|
13
|
+
### Step 1: Find Current Phase
|
|
14
|
+
|
|
15
|
+
1. Read `.planning/ROADMAP.md`
|
|
16
|
+
2. Find phase marked `[>]` or `[current]`
|
|
17
|
+
3. Load `.planning/phases/{N}-*-PLAN.md`
|
|
18
|
+
|
|
19
|
+
### Step 2: Parse Task Markers
|
|
20
|
+
|
|
21
|
+
Extract status from task headings:
|
|
22
|
+
|
|
23
|
+
| Marker | Status | Owner |
|
|
24
|
+
|--------|--------|-------|
|
|
25
|
+
| `[ ]` | available | - |
|
|
26
|
+
| `[>@user]` | working | @user |
|
|
27
|
+
| `[x@user]` | done | @user |
|
|
28
|
+
|
|
29
|
+
### Step 3: Identify Current User
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
if [ -n "$TLC_USER" ]; then
|
|
33
|
+
user=$TLC_USER
|
|
34
|
+
else
|
|
35
|
+
user=$(git config user.name | tr '[:upper:]' '[:lower:]' | tr ' ' '-')
|
|
36
|
+
fi
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Step 4: Display Team Status
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Phase 2: User Dashboard
|
|
43
|
+
|
|
44
|
+
| Task | Description | Status | Owner |
|
|
45
|
+
|------|-------------|--------|-------|
|
|
46
|
+
| 1 | Create layout | done | @alice |
|
|
47
|
+
| 2 | Fetch data hook | available | - |
|
|
48
|
+
| 3 | Add charts | working | @bob |
|
|
49
|
+
| 4 | Loading states | available | - |
|
|
50
|
+
|
|
51
|
+
Team Activity:
|
|
52
|
+
@alice: 1 done
|
|
53
|
+
@bob: 1 working
|
|
54
|
+
|
|
55
|
+
You (@alice): No active tasks
|
|
56
|
+
Available: 2, 4
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Output Format
|
|
60
|
+
|
|
61
|
+
### Table View
|
|
62
|
+
|
|
63
|
+
Shows all tasks with status:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Phase 1: Authentication
|
|
67
|
+
|
|
68
|
+
| # | Task | Status | Owner |
|
|
69
|
+
|---|------|--------|-------|
|
|
70
|
+
| 1 | Create user schema | done | @alice |
|
|
71
|
+
| 2 | Add validation | working | @bob |
|
|
72
|
+
| 3 | Write migrations | done | @alice |
|
|
73
|
+
| 4 | Integration tests | available | - |
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Summary
|
|
77
|
+
|
|
78
|
+
After the table:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
Summary:
|
|
82
|
+
Done: 2 tasks (@alice: 2)
|
|
83
|
+
Working: 1 task (@bob: 1)
|
|
84
|
+
Available: 1 task
|
|
85
|
+
|
|
86
|
+
You (@charlie):
|
|
87
|
+
No tasks claimed
|
|
88
|
+
Available to claim: 4
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Your Status
|
|
92
|
+
|
|
93
|
+
Highlights what you're working on:
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
You (@bob):
|
|
97
|
+
Working on: Task 2 - Add validation
|
|
98
|
+
|
|
99
|
+
Next: Continue with /tlc:build or /tlc:release if blocked
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Example Output
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
> /tlc:who
|
|
106
|
+
|
|
107
|
+
Phase 2: User Dashboard
|
|
108
|
+
|
|
109
|
+
Tasks:
|
|
110
|
+
1. Create layout [x@alice] done
|
|
111
|
+
2. Fetch data hook [ ] available
|
|
112
|
+
3. Add charts [>@bob] working
|
|
113
|
+
4. Loading states [ ] available
|
|
114
|
+
5. Error boundaries [x@alice] done
|
|
115
|
+
|
|
116
|
+
Team:
|
|
117
|
+
@alice 2 done
|
|
118
|
+
@bob 1 working
|
|
119
|
+
|
|
120
|
+
You (@bob):
|
|
121
|
+
→ Task 3: Add charts (in progress)
|
|
122
|
+
|
|
123
|
+
Available tasks: 2, 4
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## No Activity
|
|
127
|
+
|
|
128
|
+
If no one has claimed anything:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
> /tlc:who
|
|
132
|
+
|
|
133
|
+
Phase 1: Authentication
|
|
134
|
+
|
|
135
|
+
All 4 tasks available:
|
|
136
|
+
1. Create user schema [ ]
|
|
137
|
+
2. Add validation [ ]
|
|
138
|
+
3. Write migrations [ ]
|
|
139
|
+
4. Integration tests [ ]
|
|
140
|
+
|
|
141
|
+
No team activity yet.
|
|
142
|
+
Run /tlc:claim to get started.
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## Notes
|
|
146
|
+
|
|
147
|
+
- Shows current phase only
|
|
148
|
+
- Pull latest first for accurate status: `git pull`
|
|
149
|
+
- Task numbers match PLAN.md task numbers
|
|
150
|
+
- Use `/tlc:claim N` to claim an available task
|
|
151
|
+
- Use `/tlc:release N` to release your task
|