@bumpyclock/tasque-linux-x64-gnu 0.4.0 → 0.4.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.
|
@@ -4,12 +4,17 @@ Read when: you need exact command syntax or available options.
|
|
|
4
4
|
|
|
5
5
|
## Core workflow
|
|
6
6
|
|
|
7
|
-
- `tsq
|
|
8
|
-
- `tsq
|
|
7
|
+
- `tsq` (no args, TTY): open read-only TUI
|
|
8
|
+
- `tsq init [--wizard|--no-wizard] [--yes] [--preset <name>] [--sync-branch <branch>]`
|
|
9
|
+
- `tsq init --install-skill|--uninstall-skill [--skill-targets ...] [--skill-name <name>] [--force-skill-overwrite]`
|
|
10
|
+
- `tsq create [<title>] [--child <title> ...] [--kind ...] [-p ...] [--parent <id>] [--description <text>] [--external-ref <ref>] [--discovered-from <id>] [--planning <needs_planning|planned>] [--needs-planning] [--ensure] [--id <tsq-xxxxxxxx>] [--body-file <path|->]`
|
|
9
11
|
- `tsq show <id>`
|
|
10
|
-
- `tsq list [--status ...] [--assignee ...] [--external-ref <ref>] [--discovered-from <id>] [--kind ...] [--planning <needs_planning|planned>] [--dep-type <blocks|starts_after>] [--dep-direction <in|out|any>] [--tree]`
|
|
11
|
-
- `tsq
|
|
12
|
+
- `tsq list [--status ...] [--assignee ...] [--unassigned] [--external-ref <ref>] [--discovered-from <id>] [--kind ...] [--label ...] [--label-any ...] [--created-after <iso>] [--updated-after <iso>] [--closed-after <iso>] [--id <id,...>] [--planning <needs_planning|planned>] [--dep-type <blocks|starts_after>] [--dep-direction <in|out|any>] [--tree] [--full]`
|
|
13
|
+
- `tsq search <query>`
|
|
14
|
+
- `tsq update <id> [--title ...] [--description ...] [--clear-description] [--status ...] [--priority ...] [--external-ref <ref>] [--clear-external-ref] [--discovered-from <id>] [--clear-discovered-from] [--planning <needs_planning|planned>]`
|
|
12
15
|
- `tsq update <id> --claim [--assignee <a>] [--require-spec]`
|
|
16
|
+
- `tsq close <id...> [--reason <text>]`
|
|
17
|
+
- `tsq reopen <id...>`
|
|
13
18
|
- `tsq ready [--lane <planning|coding>]`
|
|
14
19
|
|
|
15
20
|
## Dependencies and relations
|
|
@@ -38,9 +43,16 @@ Read when: you need exact command syntax or available options.
|
|
|
38
43
|
## Reporting and maintenance
|
|
39
44
|
|
|
40
45
|
- `tsq watch [--once] [--interval <seconds>] [--status <csv>] [--assignee <name>] [--tree]`
|
|
46
|
+
- `tsq tui [--once] [--interval <seconds>] [--status <csv>] [--assignee <name>] [--board|--epics]`
|
|
41
47
|
- `tsq stale [--days <n>] [--status <status>] [--assignee <name>] [--limit <n>]`
|
|
42
48
|
- `tsq orphans`
|
|
43
49
|
- `tsq doctor`
|
|
50
|
+
- `tsq repair [--fix] [--force-unlock]`
|
|
51
|
+
- `tsq sync [--no-push]`
|
|
52
|
+
- `tsq hooks install [--force]`
|
|
53
|
+
- `tsq hooks uninstall`
|
|
54
|
+
- `tsq migrate --sync-branch <branch>`
|
|
55
|
+
- `tsq merge-driver <ancestor> <ours> <theirs>`
|
|
44
56
|
|
|
45
57
|
## Global options and status alias
|
|
46
58
|
|
|
@@ -35,6 +35,7 @@ Error envelope:
|
|
|
35
35
|
|
|
36
36
|
- Canonical source of truth: `.tasque/events.jsonl` (append-only)
|
|
37
37
|
- Derived cache: `.tasque/state.json` (rebuildable, gitignored)
|
|
38
|
+
- Legacy cache fallback: `.tasque/tasks.jsonl` (read-only fallback when `state.json` is absent; removal target)
|
|
38
39
|
- Optional replay checkpoints: `.tasque/snapshots/`
|
|
39
40
|
- Config: `.tasque/config.json`
|
|
40
41
|
- Ephemeral lock: `.tasque/.lock`
|
|
@@ -44,3 +45,4 @@ Error envelope:
|
|
|
44
45
|
- Read path: load latest snapshot, replay event tail, refresh state cache.
|
|
45
46
|
- Write path: append event(s), update projection, periodically write snapshot.
|
|
46
47
|
- Startup recovery tolerates one malformed trailing JSONL line.
|
|
48
|
+
- Do not create or edit `.tasque/tasks.jsonl`; new writes use `.tasque/state.json`.
|
package/package.json
CHANGED
package/tsq
CHANGED
|
Binary file
|