agentcohort 0.1.0 → 0.1.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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,25 +14,27 @@ shipping.
|
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
17
|
+
`agentcohort` is a CLI — install it **globally**, once:
|
|
18
|
+
|
|
17
19
|
```bash
|
|
18
|
-
npm i agentcohort
|
|
20
|
+
npm i -g agentcohort
|
|
19
21
|
```
|
|
20
22
|
|
|
21
|
-
Or run it without installing:
|
|
23
|
+
Or run it without installing anything (per-project, ad-hoc):
|
|
22
24
|
|
|
23
25
|
```bash
|
|
24
26
|
npx agentcohort init
|
|
25
27
|
```
|
|
26
28
|
|
|
27
|
-
> The npm package is `agentcohort`; the CLI command it installs is
|
|
28
|
-
>
|
|
29
|
+
> The npm package is `agentcohort`; the CLI command it installs is also
|
|
30
|
+
> `agentcohort`.
|
|
29
31
|
|
|
30
32
|
## Quick start
|
|
31
33
|
|
|
32
|
-
From the root of the project you want to equip:
|
|
33
|
-
|
|
34
34
|
```bash
|
|
35
|
-
agentcohort
|
|
35
|
+
npm i -g agentcohort # once, globally
|
|
36
|
+
cd path/to/your-project # any project you want to equip
|
|
37
|
+
agentcohort init # installs agents + commands + routing rules here
|
|
36
38
|
```
|
|
37
39
|
|
|
38
40
|
Then open Claude Code in that project and run:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentcohort",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Install a principal/staff-level Claude Code AI software engineering organization (agents + workflows + routing rules) into any project with one command.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|