adaptive-director-skill 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 +11 -4
- package/SKILL.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Adaptive Director Skill
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/adaptive-director-skill)
|
|
3
4
|
[](https://nodejs.org)
|
|
4
5
|
[-blue.svg)](#architecture)
|
|
5
6
|
[](LICENSE)
|
|
@@ -58,16 +59,22 @@ flowchart LR
|
|
|
58
59
|
|
|
59
60
|
Adaptive Director runs with **zero external npm dependencies** (pure Node.js built-ins).
|
|
60
61
|
|
|
61
|
-
### 1.
|
|
62
|
+
### 1. Install & Setup
|
|
62
63
|
|
|
64
|
+
Via npm:
|
|
65
|
+
```bash
|
|
66
|
+
npm install adaptive-director-skill
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Or clone directly:
|
|
63
70
|
```bash
|
|
64
71
|
git clone https://github.com/tamourax/Adaptive-Orchestrator.git
|
|
65
72
|
cd Adaptive-Orchestrator
|
|
73
|
+
```
|
|
66
74
|
|
|
67
|
-
|
|
75
|
+
Initialize local configuration and run verification:
|
|
76
|
+
```bash
|
|
68
77
|
node scripts/setup.mjs
|
|
69
|
-
|
|
70
|
-
# Verify installation with smoke test
|
|
71
78
|
node scripts/smoke-test.mjs
|
|
72
79
|
```
|
|
73
80
|
|
package/SKILL.md
CHANGED