agency-cli 1.0.0 → 1.1.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 +8 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,19 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Agency
|
|
4
4
|
|
|
5
|
+
[](https://github.com/tobias-walle/agency/releases)
|
|
6
|
+
[](https://www.npmjs.com/package/agency-cli)
|
|
7
|
+

|
|
8
|
+
|
|
5
9
|
Agency is an AI agent orchestrator running purely in the command line.
|
|
6
10
|
|
|
7
11
|
- User-friendly TUI heavily inspired by [Lazygit](https://github.com/jesseduffield/lazygit)
|
|
8
12
|
- CLI commands for easy automation
|
|
9
13
|
- Supports any CLI coding agent: [Claude Code](https://github.com/anthropics/claude-code), [Codex CLI](https://github.com/openai/codex), [Gemini CLI](https://github.com/google-gemini/gemini-cli), [OpenCode](https://github.com/sst/opencode) and [you can add more](#defining-a-custom-agent)
|
|
10
|
-
|
|
14
|
+
- Isolated environments for each task using Git worktrees
|
|
11
15
|
|
|
12
16
|
## Getting Started
|
|
13
17
|
|
|
14
18
|
1. Install Agency with your preferred method (macOS and Linux supported)
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
19
|
+
- NPM: `npm install -g agency-cli`
|
|
20
|
+
- Homebrew : `brew install tobias-walle/tap/agency`
|
|
21
|
+
- Build from source: `cargo install --git https://github.com/tobias-walle/agency`
|
|
18
22
|
2. Set up your preferences: `agency setup`
|
|
19
23
|
3. Set up Agency in your project: `agency init`
|
|
20
24
|
4. Start the TUI: `agency`
|
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.1.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.
|
|
898
|
+
"version": "1.1.0"
|
|
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.1.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"agency": "run-agency.js"
|
|
5
5
|
},
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"zipExt": ".tar.xz"
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"version": "1.
|
|
64
|
+
"version": "1.1.0",
|
|
65
65
|
"volta": {
|
|
66
66
|
"node": "18.14.1",
|
|
67
67
|
"npm": "9.5.0"
|