team-toon-tack 2.1.0 → 2.3.0
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-plugin/marketplace.json +19 -0
- package/.claude-plugin/plugin.json +18 -0
- package/README.md +52 -8
- package/README.zh-TW.md +52 -8
- package/commands/ttt-done.md +62 -0
- package/commands/ttt-get-issue.md +71 -0
- package/commands/ttt-status.md +65 -0
- package/commands/ttt-sync.md +51 -0
- package/commands/ttt-work-on.md +48 -0
- package/dist/bin/cli.js +15 -8
- package/dist/scripts/config/teams.js +1 -1
- package/dist/scripts/get-issue.d.ts +1 -0
- package/dist/scripts/get-issue.js +61 -0
- package/dist/scripts/init.js +33 -149
- package/dist/scripts/lib/config-builder.d.ts +1 -1
- package/dist/scripts/lib/sync.d.ts +8 -0
- package/dist/scripts/lib/sync.js +41 -29
- package/dist/scripts/sync.js +1 -1
- package/dist/scripts/work-on.js +1 -1
- package/package.json +5 -3
- package/skills/linear-task-manager/SKILL.md +170 -0
- package/templates/claude-code-commands/done-job.md +0 -45
- package/templates/claude-code-commands/sync-linear.md +0 -32
- package/templates/claude-code-commands/work-on.md +0 -62
- package/templates/config.example.toon +0 -37
- package/templates/local.example.toon +0 -16
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: work-on
|
|
3
|
-
description: Select and start working on a Linear issue
|
|
4
|
-
arguments:
|
|
5
|
-
- name: issue-id
|
|
6
|
-
description: "Issue ID (e.g., MP-624) or 'next' for auto-select"
|
|
7
|
-
required: false
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Start Working on Issue
|
|
11
|
-
|
|
12
|
-
Select a task and update status to "In Progress" on both local and Linear.
|
|
13
|
-
|
|
14
|
-
## Process
|
|
15
|
-
|
|
16
|
-
### 1. Run Command
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
ttt work-on -d .ttt $ARGUMENTS
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
### 2. Review Issue Details
|
|
23
|
-
|
|
24
|
-
Script displays title, description, priority, labels, and attachments.
|
|
25
|
-
|
|
26
|
-
### 3. Implement
|
|
27
|
-
|
|
28
|
-
1. Read the issue description carefully
|
|
29
|
-
2. Explore related code
|
|
30
|
-
3. Implement the fix/feature
|
|
31
|
-
4. Commit with conventional format
|
|
32
|
-
|
|
33
|
-
### 4. Handle Blockers (if any)
|
|
34
|
-
|
|
35
|
-
If you encounter a blocker (waiting for backend, design, external dependency):
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
ttt status --set blocked
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
Add a comment explaining the blocker, then move to another task.
|
|
42
|
-
|
|
43
|
-
### 5. Verify
|
|
44
|
-
|
|
45
|
-
Run project-required verification before completing:
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
# Run verification procedure defined in project
|
|
49
|
-
# (e.g., type-check, lint, test, build)
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### 6. Complete
|
|
53
|
-
|
|
54
|
-
Use `/done-job` to mark task as completed
|
|
55
|
-
|
|
56
|
-
## Example Usage
|
|
57
|
-
|
|
58
|
-
```
|
|
59
|
-
/work-on
|
|
60
|
-
/work-on MP-624
|
|
61
|
-
/work-on next
|
|
62
|
-
```
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# Linear Team Configuration
|
|
2
|
-
# Copy this file to config.toon and fill in your team's data
|
|
3
|
-
# Run `ttt init` to generate this interactively
|
|
4
|
-
|
|
5
|
-
teams:
|
|
6
|
-
main:
|
|
7
|
-
id: YOUR_TEAM_UUID
|
|
8
|
-
name: Your Team Name
|
|
9
|
-
icon: Terminal
|
|
10
|
-
|
|
11
|
-
users:
|
|
12
|
-
user1:
|
|
13
|
-
id: USER1_UUID
|
|
14
|
-
email: user1@example.com
|
|
15
|
-
displayName: User One
|
|
16
|
-
role: Developer
|
|
17
|
-
|
|
18
|
-
# Status mapping for Linear integration
|
|
19
|
-
status_transitions:
|
|
20
|
-
todo: Todo
|
|
21
|
-
in_progress: In Progress
|
|
22
|
-
done: Done
|
|
23
|
-
testing: Testing
|
|
24
|
-
|
|
25
|
-
# Priority ordering (optional, defaults shown)
|
|
26
|
-
priority_order[1]: urgent
|
|
27
|
-
priority_order[2]: high
|
|
28
|
-
priority_order[3]: medium
|
|
29
|
-
priority_order[4]: low
|
|
30
|
-
priority_order[5]: none
|
|
31
|
-
|
|
32
|
-
# Current cycle info (auto-managed by sync)
|
|
33
|
-
# current_cycle:
|
|
34
|
-
# id: CYCLE_UUID
|
|
35
|
-
# name: Cycle #1
|
|
36
|
-
# start_date: 2026-01-01
|
|
37
|
-
# end_date: 2026-01-07
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Local Configuration
|
|
2
|
-
# Copy this file to local.toon and customize for your setup
|
|
3
|
-
# This file is gitignored and contains personal settings
|
|
4
|
-
|
|
5
|
-
# Your user key (must match a key in config.toon users section)
|
|
6
|
-
# Only tasks assigned to this user will be synced
|
|
7
|
-
current_user: user1
|
|
8
|
-
|
|
9
|
-
# Primary team (required)
|
|
10
|
-
team: main
|
|
11
|
-
|
|
12
|
-
# Filter issues by label (optional)
|
|
13
|
-
label: Frontend
|
|
14
|
-
|
|
15
|
-
# Exclude issues with these labels (optional)
|
|
16
|
-
# exclude_labels[1]: Backend
|