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.
Files changed (3) hide show
  1. package/README.md +11 -4
  2. package/SKILL.md +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Adaptive Director Skill
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/adaptive-director-skill.svg)](https://www.npmjs.com/package/adaptive-director-skill)
3
4
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
4
5
  [![Zero Dependencies](https://img.shields.io/badge/dependencies-0%20(pure%20built--ins)-blue.svg)](#architecture)
5
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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. Clone & Setup
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
- # Probe local agents (Claude, Codex, Antigravity, Cursor, etc.)
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
@@ -4,7 +4,7 @@ description: >
4
4
  Adaptive multi-agent director for coding tasks.
5
5
  Routes every phase (plan, implement, review, fix, verify) to the right
6
6
  agent, model, and reasoning effort automatically.
7
- version: 0.1.0
7
+ version: 0.1.1
8
8
  ---
9
9
 
10
10
  # Adaptive Director Skill
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adaptive-director-skill",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Adaptive Director Skill — Skill-first adaptive multi-agent orchestration for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",