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.
@@ -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