agency-cli 1.4.0 → 1.6.0

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/README.md CHANGED
@@ -31,11 +31,12 @@ The easiest option is to use the TUI; run `agency tui` or just `agency`.
31
31
  Everything available in the TUI is also available via the CLI:
32
32
 
33
33
  - `agency --help` - See all available commands
34
- - `agency new my-task` - Start a new task with slug `my-task`; opens your configured editor to describe what the agent should do.
35
- - `agency new --draft my-task` - Create a new task as a draft (doesn't start it yet).
34
+ - `agency new my-task` - Create a new task with slug `my-task`, start a session for it, and attach immediately (no editor by default).
35
+ - `agency new --draft my-task` - Create a new task as a draft (doesn't start or attach; in interactive TTY mode without a description, this opens your editor to write the initial instructions).
36
36
  - `agency edit my-task` - Edit a draft task.
37
37
  - `agency start my-task` - Start a task that is a draft or stopped.
38
38
  - `agency attach my-task` or `agency attach 1` - Open the agent TUI by slug or ID.
39
+ - `agency attach --follow` - Attach to the focused task in a running Agency TUI.
39
40
  - `agency stop my-task` - Stop a running task (keep its worktree and branch).
40
41
  - `agency merge my-task` - Merge the task back into the base branch.
41
42
  - `agency path my-task` - Get the worktree path for a task.
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "hasInstallScript": true,
24
24
  "name": "agency-cli",
25
- "version": "1.4.0"
25
+ "version": "1.6.0"
26
26
  },
27
27
  "node_modules/@isaacs/balanced-match": {
28
28
  "engines": {
@@ -895,5 +895,5 @@
895
895
  }
896
896
  },
897
897
  "requires": true,
898
- "version": "1.4.0"
898
+ "version": "1.6.0"
899
899
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.4.0",
2
+ "artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.6.0",
3
3
  "bin": {
4
4
  "agency": "run-agency.js"
5
5
  },
@@ -54,7 +54,7 @@
54
54
  "zipExt": ".tar.xz"
55
55
  }
56
56
  },
57
- "version": "1.4.0",
57
+ "version": "1.6.0",
58
58
  "volta": {
59
59
  "node": "18.14.1",
60
60
  "npm": "9.5.0"