@bumpyclock/tasque-linux-x64-gnu 0.6.4 → 0.6.6
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/SKILLS/tasque/SKILL.md +4 -0
- package/SKILLS/tasque/references/command-reference.md +20 -4
- package/package.json +1 -1
- package/tsq +0 -0
- package/tsq-tui +0 -0
package/SKILLS/tasque/SKILL.md
CHANGED
|
@@ -79,11 +79,15 @@ tsq create --parent <parent-id> --from-file tasks.md
|
|
|
79
79
|
```bash
|
|
80
80
|
tsq spec <id> --text "## Plan\n...\n## Acceptance\n..."
|
|
81
81
|
tsq spec <id> --show
|
|
82
|
+
# Choose one edit mode when changing an existing spec:
|
|
83
|
+
tsq spec <id> --update --stdin
|
|
84
|
+
tsq spec <id> --patch --stdin
|
|
82
85
|
tsq planned <id>
|
|
83
86
|
tsq claim <id> --assignee <name> --start
|
|
84
87
|
```
|
|
85
88
|
|
|
86
89
|
Use `tsq spec <id> --show` when spec markdown lives in sync worktree.
|
|
90
|
+
Use `--update` for whole-spec replacement. Use `--patch` for small agent edits; patch applies only to the attached spec and fails if context is stale. Prefer `--stdin` or `--file` for patches because unified diffs start with `---`.
|
|
87
91
|
|
|
88
92
|
## Parallel Work
|
|
89
93
|
|
|
@@ -14,7 +14,7 @@ Use `--sync-branch <name>` or `--worktree-name <name>` to choose another branch/
|
|
|
14
14
|
and create the worktree on first use. `tsq sync` pushes the sync branch to `origin`
|
|
15
15
|
and sets upstream automatically when needed. Non-git directories use local `.tasque/` storage.
|
|
16
16
|
|
|
17
|
-
- `tsq create <title...> [--kind ...] [-p ...] [--parent <id>] [--from-file tasks.md] [--description <text>] [--external-ref <ref>] [--discovered-from <id>] [--planned|--needs-plan] [--ensure] [--id <
|
|
17
|
+
- `tsq create <title...> [--kind ...] [-p ...] [--parent <id>] [--from-file tasks.md] [--description <text>] [--external-ref <ref>] [--discovered-from <id>] [--planned|--needs-plan] [--ensure] [--id <id>] [--body-file <path|->] [--force]`
|
|
18
18
|
|
|
19
19
|
`tasks.md` supports nested two-space bullets:
|
|
20
20
|
|
|
@@ -29,8 +29,7 @@ and sets upstream automatically when needed. Non-git directories use local `.tas
|
|
|
29
29
|
- `tsq find ready [--lane <planning|coding>] [--assignee <name>] [--unassigned] [--kind ...] [--label ...] [--planning <needs_planning|planned>] [--tree [--full]]`
|
|
30
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
|
+
- `tsq find similar "<text>"`
|
|
34
33
|
- `tsq edit <id> [--title ...] [--description ...] [--clear-description] [--priority ...] [--external-ref <ref>] [--clear-external-ref] [--discovered-from <id>] [--clear-discovered-from]`
|
|
35
34
|
- `tsq claim <id> [--assignee <a>] [--start] [--require-spec]`
|
|
36
35
|
- `tsq assign <id> --assignee <a>`
|
|
@@ -44,6 +43,14 @@ Note: for `find ready` and status-based `find` commands, `--full` is only valid
|
|
|
44
43
|
- `tsq reopen <id...> [--note <text>]`
|
|
45
44
|
- `tsq cancel <id...> [--note <text>]`
|
|
46
45
|
|
|
46
|
+
Notes:
|
|
47
|
+
- New root task IDs use `tsq-<number>`; legacy `tsq-<8 crockford base32 chars>` IDs remain valid.
|
|
48
|
+
- `--id <id>` accepts `tsq-<number>` or legacy `tsq-<8 crockford base32 chars>`.
|
|
49
|
+
- Task JSON includes `alias`, generated from the creation title and stable across title edits.
|
|
50
|
+
- Commands that accept a task ID also accept exact aliases and unique alias prefixes unless `--exact-id` is used.
|
|
51
|
+
- `tsq find similar "<text>"` shows ranked duplicate candidates.
|
|
52
|
+
- `tsq create` refuses similar open/in-progress/blocked/deferred tasks unless `--force` is passed.
|
|
53
|
+
|
|
47
54
|
## Dependencies and relations
|
|
48
55
|
|
|
49
56
|
- `tsq block <task> by <blocker>`
|
|
@@ -61,6 +68,8 @@ Note: for `find ready` and status-based `find` commands, `--full` is only valid
|
|
|
61
68
|
## Specs, notes, labels, history
|
|
62
69
|
|
|
63
70
|
- `tsq spec <id> [--file <path> | --stdin | --text <markdown> | --show | --check] [--force]`
|
|
71
|
+
- `tsq spec <id> --update [--file <path> | --stdin | --text <markdown>]`
|
|
72
|
+
- `tsq spec <id> --patch [--file <path> | --stdin | --text <patch>]`
|
|
64
73
|
- `tsq note <id> <text>`
|
|
65
74
|
- `tsq note <id> --stdin`
|
|
66
75
|
- `tsq notes <id>`
|
|
@@ -69,9 +78,16 @@ Note: for `find ready` and status-based `find` commands, `--full` is only valid
|
|
|
69
78
|
- `tsq labels`
|
|
70
79
|
- `tsq history <id> [--limit <n>] [--type <event-type>] [--actor <name>] [--since <iso>]`
|
|
71
80
|
|
|
81
|
+
Spec update notes:
|
|
82
|
+
- `--update` requires an existing attached spec and atomically replaces the whole spec.
|
|
83
|
+
- `--patch` requires an existing attached spec, applies one unified diff to the current spec in memory, rejects multi-file patches, and fails when patch context is stale.
|
|
84
|
+
- Prefer `--patch --stdin` or `--patch --file spec.patch`; unified diffs begin with `---`, which can confuse shell/arg parsing when passed via `--text`.
|
|
85
|
+
|
|
72
86
|
## Reporting and maintenance
|
|
73
87
|
|
|
74
|
-
- `tsq watch [--once] [--interval <seconds>] [--status <csv>] [--assignee <name>] [--tree]`
|
|
88
|
+
- `tsq watch [--once] [--interval <seconds>] [--status <csv>] [--assignee <name>] [--tree] [--flat]`
|
|
89
|
+
|
|
90
|
+
`watch` renders the task tree by default for human output. Use `--tree` to explicitly request tree view or `--flat` for the compact list view. These options are mutually exclusive.
|
|
75
91
|
- `tsq tui [--once] [--interval <seconds>] [--status <csv>] [--assignee <name>] [--board|--epics]`
|
|
76
92
|
- `tsq stale [--days <n>] [--status <status>] [--assignee <name>] [--limit <n>]`
|
|
77
93
|
- `tsq orphans`
|
package/package.json
CHANGED
package/tsq
CHANGED
|
Binary file
|
package/tsq-tui
CHANGED
|
Binary file
|