agency-cli 1.5.0 → 1.6.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.
- package/README.md +3 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,8 +31,8 @@ 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` -
|
|
35
|
-
- `agency new --draft my-task` - Create a new task as a draft (doesn't start
|
|
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.
|
|
@@ -130,6 +130,7 @@ flowchart LR
|
|
|
130
130
|
C <--> S[Unix Socket]
|
|
131
131
|
S <--> D[Agency Daemon]
|
|
132
132
|
C <--> T[tmux Server]
|
|
133
|
+
D <--> T
|
|
133
134
|
T --> A[CLI Agents]
|
|
134
135
|
|
|
135
136
|
subgraph Project
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"name": "agency-cli",
|
|
25
|
-
"version": "1.
|
|
25
|
+
"version": "1.6.1"
|
|
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.
|
|
898
|
+
"version": "1.6.1"
|
|
899
899
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.6.1",
|
|
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.
|
|
57
|
+
"version": "1.6.1",
|
|
58
58
|
"volta": {
|
|
59
59
|
"node": "18.14.1",
|
|
60
60
|
"npm": "9.5.0"
|