@sulhadin/orchestrator 1.10.0 → 1.12.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.
Files changed (2) hide show
  1. package/README.md +31 -27
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -70,31 +70,19 @@ You: #start
70
70
 
71
71
  Close the terminal, reopen, type `#start` — it resumes from where it left off.
72
72
 
73
- ## Milestones
74
-
75
- Everything for a feature lives in one directory:
76
-
77
- ```
78
- .orchestra/milestones/M1-user-auth/
79
- ├── prd.md What + why (PM writes)
80
- ├── milestone.md Status, acceptance criteria
81
- ├── grooming.md Discussion notes, scope decisions
82
- ├── rfc.md Technical design (architect writes)
83
- ├── context.md Running log (worker maintains for resume)
84
- └── phases/
85
- ├── phase-1.md backend: DB schema commit
86
- ├── phase-2.md backend: API endpoints → commit
87
- └── phase-3.md frontend: login UI → commit
88
- ```
89
-
90
- ## Approval Gates
91
-
92
- Worker asks you at two points:
93
-
94
- 1. **RFC ready** — approve before implementation starts
95
- 2. **Push to origin** — approve before code is pushed
96
-
97
- PM asks you before creating a milestone. Everything else is automatic.
73
+ ## Key Features
74
+
75
+ | Feature | What it does |
76
+ |---------|-------------|
77
+ | **Fast Track** | `quick/standard/full` pipeline complexity — skip unnecessary steps for simple work |
78
+ | **Verification Gate** | Tests + lint must pass before every commit — broken code can't be committed |
79
+ | **Skills** | Domain checklists (auth, CRUD, deploy) assigned to phases |
80
+ | **Blueprints** | Project templates — `blueprint saas-starter` creates 5 milestones instantly |
81
+ | **Hotfix** | `#hotfix {desc}` — implement, verify, commit, push in one command |
82
+ | **Learning** | knowledge.md accumulates decisions and lessons across milestones |
83
+ | **Parallel Phases** | Independent phases run simultaneously via `depends_on` |
84
+ | **Stuck Detection** | Detects infinite loops, escalates to user |
85
+ | **Retrospective** | 5-line auto-summary after each milestone |
98
86
 
99
87
  ## Commands
100
88
 
@@ -102,11 +90,16 @@ PM asks you before creating a milestone. Everything else is automatic.
102
90
  |---------|-------|-------------|
103
91
  | `#pm` | Terminal 1 | Plan features, create milestones |
104
92
  | `#start` | Terminal 2 | Execute milestones, asks at approval gates |
105
- | `#start --auto` | Terminal 2 | Fully autonomous no questions asked |
93
+ | `#start --auto` | Terminal 2 | Confirms once, then fully autonomous |
94
+ | `#hotfix {desc}` | Any | Ultra-fast fix: implement → verify → commit → push |
106
95
  | `#status` | Terminal 1 | Milestone status report |
107
96
  | `#help` | Any | Show all commands |
97
+ | `#help skills` | Any | List available skills |
98
+ | `#help blueprints` | Any | List available blueprints |
99
+ | `blueprint {name}` | Terminal 1 | Generate milestones from template |
100
+ | `blueprint add` | Terminal 1 | Save current work as reusable template |
108
101
 
109
- Manual mode (any terminal):
102
+ Manual roles (any terminal):
110
103
 
111
104
  | Command | Role |
112
105
  |---------|------|
@@ -116,6 +109,17 @@ Manual mode (any terminal):
116
109
  | `#architect` | Architect |
117
110
  | `#owner` | System maintenance |
118
111
 
112
+ ## Documentation
113
+
114
+ See [docs/](https://github.com/sulhadin/orchestrator/blob/main/docs/README.md) for full documentation:
115
+
116
+ - [Getting Started](https://github.com/sulhadin/orchestrator/blob/main/docs/getting-started.md) — installation, first milestone, two-terminal model
117
+ - [Commands](https://github.com/sulhadin/orchestrator/blob/main/docs/commands.md) — all commands with examples
118
+ - [Roles](https://github.com/sulhadin/orchestrator/blob/main/docs/roles.md) — 6 roles, responsibilities, boundaries
119
+ - [Features](https://github.com/sulhadin/orchestrator/blob/main/docs/features.md) — verification gate, fast track, parallel, hotfix, and more
120
+ - [Blueprints](https://github.com/sulhadin/orchestrator/blob/main/docs/blueprints.md) — project templates, `blueprint add`
121
+ - [Skills](https://github.com/sulhadin/orchestrator/blob/main/docs/skills.md) — domain checklists, creating new skills
122
+
119
123
  ## License
120
124
 
121
125
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sulhadin/orchestrator",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "AI Team Orchestration System — multi-role coordination for Claude Code",
5
5
  "bin": {
6
6
  "orchestrator": "bin/index.js"