@bumpyclock/tasque-linux-x64-gnu 0.4.1 → 0.5.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.
@@ -5,8 +5,14 @@ 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 <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. Non-git directories use local `.tasque/` storage.
15
+
10
16
  - `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
17
  - `tsq show <id>`
12
18
  - `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 +57,7 @@ Read when: you need exact command syntax or available options.
51
57
  - `tsq sync [--no-push]`
52
58
  - `tsq hooks install [--force]`
53
59
  - `tsq hooks uninstall`
54
- - `tsq migrate --sync-branch <branch>`
60
+ - `tsq migrate [--sync-branch|--worktree-name <name>]`
55
61
  - `tsq merge-driver <ancestor> <ours> <theirs>`
56
62
 
57
63
  ## Global options and status alias
@@ -33,6 +33,11 @@ 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.
36
41
  - Canonical source of truth: `.tasque/events.jsonl` (append-only)
37
42
  - Derived cache: `.tasque/state.json` (rebuildable, gitignored)
38
43
  - Legacy cache fallback: `.tasque/tasks.jsonl` (read-only fallback when `state.json` is absent; removal target)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bumpyclock/tasque-linux-x64-gnu",
3
- "version": "0.4.1",
3
+ "version": "0.5.1",
4
4
  "description": "Tasque binary for Linux x64 (glibc)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -18,6 +18,7 @@
18
18
  ],
19
19
  "files": [
20
20
  "tsq",
21
+ "tsq-tui",
21
22
  "SKILLS/**"
22
23
  ],
23
24
  "publishConfig": {
package/tsq CHANGED
Binary file
package/tsq-tui ADDED
Binary file