@sulhadin/orchestrator 3.1.0 → 3.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 +13 -1
- package/package.json +1 -1
- package/template/.claude-plugin/plugin.json +1 -1
package/README.md
CHANGED
|
@@ -10,11 +10,23 @@ No infrastructure. No API keys. Just markdown files and Claude Code.
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
|
+
### As Claude Code Plugin (recommended)
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
/plugin install orchestra
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
No files copied into your project.
|
|
20
|
+
|
|
21
|
+
### As Standalone (copies files into your project)
|
|
22
|
+
|
|
13
23
|
```bash
|
|
14
24
|
npx @sulhadin/orchestrator
|
|
15
25
|
```
|
|
16
26
|
|
|
17
|
-
|
|
27
|
+
Copies `.orchestra/` (project data + config) and `.claude/` (agents, skills, rules, commands) into your project.
|
|
28
|
+
|
|
29
|
+
Both options use the same commands: `/orchestra:pm`, `/orchestra:start`, etc.
|
|
18
30
|
|
|
19
31
|
## How It Works
|
|
20
32
|
|
package/package.json
CHANGED