@bumpyclock/tasque-linux-x64-gnu 0.6.2 → 0.6.4

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.
@@ -5,43 +5,35 @@ description: Operational guide for Tasque (tsq) local task tracking and manageme
5
5
 
6
6
  <!-- tsq-managed-skill:v1 -->
7
7
 
8
- Tasque = durable, local-first task memory for agent work.
9
- Default day-to-day playbook.
8
+ Tasque (`tsq`) = durable local task graph for agent work.
10
9
 
11
- ## When to use tsq
10
+ ## Use
12
11
 
13
- - Use `tsq` for multi-step, multi-session, dependency-blocked, shared-agent work.
14
- - Use transient checklist for short linear single-session work.
12
+ - Use `tsq`: multi-step, multi-session, blocked, shared-agent, release, or follow-up work.
13
+ - Use transient checklist: short linear same-session work.
15
14
 
16
- ## Session routine (default)
15
+ ## Start
17
16
 
18
17
  ```bash
19
18
  tsq find ready --lane planning
20
19
  tsq find ready --lane coding
21
20
  tsq find blocked
22
- ```
23
-
24
- Pick one task; inspect context:
25
-
26
- ```bash
27
21
  tsq show <id>
28
22
  ```
29
23
 
24
+ Pick one task. Inspect before edit.
30
25
 
31
- ### 1) Capture new work
26
+ ## Create
32
27
 
33
28
  ```bash
34
29
  tsq create "Implement <feature>" --kind feature -p 1 --needs-plan
35
30
  tsq create "Fix <bug>" --kind task -p 1 --needs-plan
36
- ```
37
-
38
- Planning already done:
39
-
40
- ```bash
41
31
  tsq create "Implement <feature>" --planned
42
32
  ```
43
33
 
44
- ### 2) Split parent into many children
34
+ Good task = verb + object + scope. Set `kind`, priority, labels, spec/deps when useful.
35
+
36
+ ## Split
45
37
 
46
38
  ```bash
47
39
  tsq create --parent <parent-id> \
@@ -50,7 +42,7 @@ tsq create --parent <parent-id> \
50
42
  "Add regression tests"
51
43
  ```
52
44
 
53
- Shared defaults for all children:
45
+ Shared defaults:
54
46
 
55
47
  ```bash
56
48
  tsq create --parent <parent-id> --kind task -p 2 --planned \
@@ -59,7 +51,7 @@ tsq create --parent <parent-id> --kind task -p 2 --planned \
59
51
  "Add integration tests"
60
52
  ```
61
53
 
62
- Safe reruns without duplicate children:
54
+ Safe rerun:
63
55
 
64
56
  ```bash
65
57
  tsq create --parent <parent-id> --ensure \
@@ -68,7 +60,7 @@ tsq create --parent <parent-id> --ensure \
68
60
  "Add integration tests"
69
61
  ```
70
62
 
71
- Batch from `tasks.md`:
63
+ `tasks.md` batch. Two-space nested bullets create child hierarchy.
72
64
 
73
65
  ```md
74
66
  - Add parser tests
@@ -82,56 +74,50 @@ Batch from `tasks.md`:
82
74
  tsq create --parent <parent-id> --from-file tasks.md
83
75
  ```
84
76
 
85
- Use `tsq create --parent <id> --from-file tasks.md` for many tasks.
86
-
87
- ### 3) Planning handoff -> coding
77
+ ## Plan -> Code
88
78
 
89
79
  ```bash
90
80
  tsq spec <id> --text "## Plan\n...\n## Acceptance\n..."
81
+ tsq spec <id> --show
91
82
  tsq planned <id>
92
83
  tsq claim <id> --assignee <name> --start
93
84
  ```
94
85
 
95
- Use `tsq spec <id> --show` when you need spec markdown from sync worktree.
86
+ Use `tsq spec <id> --show` when spec markdown lives in sync worktree.
96
87
 
97
- ### 4) Model deps for parallel agents
88
+ ## Parallel Work
98
89
 
99
- Hard blocker (changes readiness):
90
+ Hard blocker; affects readiness:
100
91
 
101
92
  ```bash
102
93
  tsq block <child-id> by <blocker-id>
103
94
  ```
104
95
 
105
- Soft ordering only:
96
+ Soft order; no readiness block:
106
97
 
107
98
  ```bash
108
99
  tsq order <later-id> after <earlier-id>
109
100
  ```
110
101
 
111
- Check actionable tasks:
102
+ Check next:
112
103
 
113
104
  ```bash
114
105
  tsq find ready --lane coding
115
106
  tsq find ready --lane planning
116
107
  ```
117
108
 
118
- ### 5) Capture discovered follow-up work
109
+ Prefer many independent tasks. Use `blocks` only for true gates. Use `starts_after`/`order` for sequence.
110
+
111
+ ## Follow-Up
119
112
 
120
113
  ```bash
121
114
  tsq create "Handle edge case <x>" --discovered-from <current-id> --needs-plan
122
115
  tsq relate <new-id> <current-id>
123
116
  ```
124
117
 
125
- ### 5b) Idempotent root/parent create for automation
126
-
127
- ```bash
128
- tsq create "Implement auth module" --ensure
129
- tsq create --parent <parent-id> "Add tests" --ensure
130
- ```
131
-
132
- `--ensure` returns existing task when same normalized title already exists under the same parent.
118
+ Follow-up work belongs in `tsq`, not chat TODOs.
133
119
 
134
- ### 6) Park / unpark work
120
+ ## Park / Resume
135
121
 
136
122
  ```bash
137
123
  tsq defer <id> --note "waiting"
@@ -139,7 +125,7 @@ tsq find deferred
139
125
  tsq open <id>
140
126
  ```
141
127
 
142
- ### 7) Resolve duplicate/superseded work
128
+ ## Duplicate / Replace
143
129
 
144
130
  ```bash
145
131
  tsq duplicate <id> of <canonical-id> --note "same root issue"
@@ -149,7 +135,7 @@ tsq merge <source-id...> --into <target-id> --force
149
135
  tsq supersede <old-id> with <new-id> --note "replaced approach"
150
136
  ```
151
137
 
152
- ### 8) Close / report
138
+ ## Close / Report
153
139
 
154
140
  ```bash
155
141
  tsq done <id> --note "verified"
@@ -157,47 +143,19 @@ tsq history <id> --limit 20
157
143
  tsq find open --tree
158
144
  ```
159
145
 
160
- Use `--format json` only when scripting/parsing; human output is fine for inspection.
161
-
162
- ## Built-in task authoring checklist
163
-
164
- ### Minimum quality bar
165
-
166
- - Titles: clear, action-oriented (verb + object + scope).
167
- - Set `kind`: `task|feature|epic`.
168
- - Set priority intentionally: `0..3`.
169
- - Add labels with consistent naming.
170
- - Attach spec when scope/acceptance non-trivial.
171
- - Add explicit deps/relations when relevant.
172
-
173
- ### Parallelization guidance
174
-
175
- - Prefer multiple independent tasks over one large task.
176
- - Use `blocks` only when work truly gates another task.
177
- - Use `starts_after` for sequencing without blocking readiness.
178
- - Add discovered work as new tasks via `--discovered-from`.
179
- - Keep each task small enough for one focused agent pass.
180
-
181
- ### Practical authoring starter
182
-
183
- ```bash
184
- tsq create "<title>" --kind task -p 2 --needs-plan
185
- tsq spec <id> --text "<markdown spec>"
186
- tsq block <child> by <blocker>
187
- tsq relate <src> <dst>
188
- ```
146
+ Use `--format json` for scripts/parsers. Human output fine for inspection.
189
147
 
190
- ## Required habits
148
+ ## Habits
191
149
 
192
- - Keep lifecycle `status` and `planning_state` separate.
193
- - Use deps to make parallel execution explicit.
194
- - Create follow-up tasks; avoid chat TODOs.
195
- - Prefer `--format json` for automation; inspect with human output.
196
- - Use `--ensure` in scripts to prevent duplicate creates on rerun.
150
+ - Keep `status` and `planning_state` separate.
151
+ - Use deps/relations to expose parallel shape.
152
+ - Use `--ensure` in rerunnable automation.
153
+ - Keep task small enough for one focused agent pass.
154
+ - Need edge flags? Run `tsq <cmd> --help`.
197
155
 
198
- ## Read when needed
156
+ ## Need More
199
157
 
200
- - Planning/deferred semantics: `references/planning-workflow.md`
201
- - JSON schema + durability details: `references/machine-output-and-durability.md`
202
- - Full option matrix (edge cases): `references/command-reference.md`
203
- - Install if missing: `npm install -g @bumpyclock/tasque`
158
+ - Edge flags/full command matrix: `references/command-reference.md` or `tsq <cmd> --help`.
159
+ - Planning/deferred semantics: `references/planning-workflow.md`.
160
+ - JSON/durability: `references/machine-output-and-durability.md`.
161
+ - Missing install: `npm install -g @bumpyclock/tasque`.
@@ -26,9 +26,11 @@ and sets upstream automatically when needed. Non-git directories use local `.tas
26
26
  ```
27
27
 
28
28
  - `tsq show <id> [--with-spec]`
29
- - `tsq find ready [--lane <planning|coding>] [--assignee <name>] [--unassigned] [--kind ...] [--label ...] [--planning <needs_planning|planned>] [--tree] [--full]`
30
- - `tsq find <blocked|open|in-progress|deferred|done|canceled> [filters...] [--tree] [--full]`
29
+ - `tsq find ready [--lane <planning|coding>] [--assignee <name>] [--unassigned] [--kind ...] [--label ...] [--planning <needs_planning|planned>] [--tree [--full]]`
30
+ - `tsq find <blocked|open|in-progress|deferred|done|canceled> [filters...] [--tree [--full]]`
31
31
  - `tsq find search <query> [--full]`
32
+
33
+ Note: for `find ready` and status-based `find` commands, `--full` is only valid with `--tree`. `--tree --full` keeps the full status set instead of applying the default tree status narrowing. `find search --full` remains valid without `--tree`.
32
34
  - `tsq edit <id> [--title ...] [--description ...] [--clear-description] [--priority ...] [--external-ref <ref>] [--clear-external-ref] [--discovered-from <id>] [--clear-discovered-from]`
33
35
  - `tsq claim <id> [--assignee <a>] [--start] [--require-spec]`
34
36
  - `tsq assign <id> --assignee <a>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bumpyclock/tasque-linux-x64-gnu",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Tasque binary for Linux x64 (glibc)",
5
5
  "license": "MIT",
6
6
  "repository": {
package/tsq CHANGED
Binary file
@@ -1,42 +0,0 @@
1
- # Task Authoring Checklist
2
-
3
- Read when: creating/refining tasks or splitting work for parallel execution.
4
-
5
- ## Minimum quality bar
6
-
7
- - Use clear, action-oriented titles.
8
- - Set `kind` correctly (`task`, `feature`, `epic`).
9
- - Assign priority (`0..3`) intentionally.
10
- - Add labels using a consistent format.
11
- - Attach spec content when scope/acceptance is non-trivial.
12
- - Link task dependencies and relations explicitly.
13
-
14
- ## Parallelization guidance
15
-
16
- - Prefer multiple independent tasks over one large task.
17
- - Use `blocks` only when completion truly gates another task.
18
- - Use `starts_after` for ordering without readiness blocking.
19
- - Add discovered follow-up work as new tasks with `--discovered-from <id>`.
20
- - Keep each task sized so one agent can complete it in one focused pass.
21
-
22
- ## Practical starter flow
23
-
24
- ```bash
25
- tsq create "<title>" --kind task -p 2 --needs-plan
26
- tsq spec <id> --text "<markdown spec>"
27
- tsq block <child> by <blocker>
28
- tsq relate <src> <dst>
29
- ```
30
-
31
- For many tasks, write `tasks.md` with nested two-space bullets:
32
-
33
- ```md
34
- - Parent task
35
- - Child task
36
- - Grandchild task
37
- - [ ] Another parent task
38
- ```
39
-
40
- ```bash
41
- tsq create --parent <id> --from-file tasks.md
42
- ```