@bumpyclock/tasque-linux-x64-gnu 0.5.0 → 0.5.2
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,8 +5,15 @@ Read when: you need exact command syntax or available options.
|
|
|
5
5
|
## Core workflow
|
|
6
6
|
|
|
7
7
|
- `tsq` (no args, TTY): open read-only TUI
|
|
8
|
-
- `tsq init [--wizard|--no-wizard] [--yes] [--preset <name>] [--sync-branch <
|
|
8
|
+
- `tsq init [--wizard|--no-wizard] [--yes] [--preset <name>] [--sync-branch|--worktree-name <name>]`
|
|
9
9
|
- `tsq init --install-skill|--uninstall-skill [--skill-targets ...] [--skill-name <name>] [--force-skill-overwrite]`
|
|
10
|
+
|
|
11
|
+
In git repos, `tsq init` defaults to sync-worktree mode using `tsq-sync`.
|
|
12
|
+
Use `--sync-branch <name>` or `--worktree-name <name>` to choose another branch/worktree. Existing main-tree
|
|
13
|
+
`.tasque` data migrates automatically. Fresh clones fetch the configured sync branch
|
|
14
|
+
and create the worktree on first use. `tsq sync` pushes the sync branch to `origin`
|
|
15
|
+
and sets upstream automatically when needed. Non-git directories use local `.tasque/` storage.
|
|
16
|
+
|
|
10
17
|
- `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|->]`
|
|
11
18
|
- `tsq show <id>`
|
|
12
19
|
- `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]`
|
|
@@ -51,7 +58,7 @@ Read when: you need exact command syntax or available options.
|
|
|
51
58
|
- `tsq sync [--no-push]`
|
|
52
59
|
- `tsq hooks install [--force]`
|
|
53
60
|
- `tsq hooks uninstall`
|
|
54
|
-
- `tsq migrate --sync-branch <
|
|
61
|
+
- `tsq migrate [--sync-branch|--worktree-name <name>]`
|
|
55
62
|
- `tsq merge-driver <ancestor> <ours> <theirs>`
|
|
56
63
|
|
|
57
64
|
## Global options and status alias
|
|
@@ -33,6 +33,12 @@ Error envelope:
|
|
|
33
33
|
|
|
34
34
|
## Storage model
|
|
35
35
|
|
|
36
|
+
- Git repos default to sync-worktree mode on `tsq init`: the main worktree keeps
|
|
37
|
+
`.tasque/config.json`, while task data lives in `tsq-sync` unless
|
|
38
|
+
`--sync-branch` or `--worktree-name` names another branch/worktree. Existing main-tree `.tasque` data
|
|
39
|
+
migrates automatically when no `sync_branch` is configured. Fresh clones fetch
|
|
40
|
+
the configured sync branch and create the worktree on first use. `tsq sync`
|
|
41
|
+
pushes the sync branch to `origin` and sets upstream automatically when needed.
|
|
36
42
|
- Canonical source of truth: `.tasque/events.jsonl` (append-only)
|
|
37
43
|
- Derived cache: `.tasque/state.json` (rebuildable, gitignored)
|
|
38
44
|
- Legacy cache fallback: `.tasque/tasks.jsonl` (read-only fallback when `state.json` is absent; removal target)
|
package/package.json
CHANGED
package/tsq
CHANGED
|
Binary file
|