agency-cli 1.8.0 → 1.9.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
@@ -46,6 +46,25 @@ Everything available in the TUI is also available via the CLI:
46
46
  - `agency daemon start|stop|restart` - Manage the background daemon that tracks sessions and notifies clients.
47
47
  - ... and many more (see `agency --help`).
48
48
 
49
+ ## Skills
50
+
51
+ Teach your AI coding agent how to use Agency by installing the Agency skill. Once installed, your agent will know how to parallelize tasks using Agency when you ask it to.
52
+
53
+ ### Claude Code
54
+
55
+ ```bash
56
+ /plugin marketplace add tobias-walle/agency
57
+ /plugin install agency@agency
58
+ ```
59
+
60
+ ### Codex CLI
61
+
62
+ ```bash
63
+ git clone --depth 1 https://github.com/tobias-walle/agency /tmp/agency && \
64
+ cp -r /tmp/agency/skills/agency ~/.codex/skills/ && \
65
+ rm -rf /tmp/agency
66
+ ```
67
+
49
68
  ## Configuration
50
69
 
51
70
  Configuration is layered in three tiers:
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "hasInstallScript": true,
24
24
  "name": "agency-cli",
25
- "version": "1.8.0"
25
+ "version": "1.9.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.8.0"
898
+ "version": "1.9.0"
899
899
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.8.0",
2
+ "artifactDownloadUrl": "https://github.com/tobias-walle/agency/releases/download/v1.9.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.8.0",
57
+ "version": "1.9.0",
58
58
  "volta": {
59
59
  "node": "18.14.1",
60
60
  "npm": "9.5.0"