stella-protocol 0.3.1 → 0.4.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.
- package/README.md +6 -1
- package/cli/index.js +3 -0
- package/cli/init.js +3 -0
- package/cli/install.js +3 -0
- package/cli/status.js +3 -0
- package/package.json +3 -2
- package/protocol/governance/buster-call.md +2 -0
- package/protocol/governance/cipher-pol.md +2 -0
- package/protocol/satellites/atlas.md +2 -0
- package/protocol/satellites/edison.md +2 -0
- package/protocol/satellites/imu.md +26 -4
- package/protocol/satellites/lilith-blue.md +2 -0
- package/protocol/satellites/lilith-red.md +2 -0
- package/protocol/satellites/morgans.md +2 -0
- package/protocol/satellites/oda.md +2 -0
- package/protocol/satellites/pythagoras.md +2 -0
- package/protocol/satellites/shaka.md +2 -0
- package/protocol/satellites/york.md +2 -0
- package/protocol/stella.md +2 -0
- package/protocol/tracks/east-blue.md +2 -0
- package/protocol/tracks/grand-line.md +2 -0
- package/skills/stella-build/SKILL.md +1 -0
- package/skills/stella-close/SKILL.md +1 -0
- package/skills/stella-define/SKILL.md +1 -0
- package/skills/stella-protocol/SKILL.md +101 -16
- package/skills/stella-review/SKILL.md +1 -0
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<!-- Stella Protocol by Aditya Uttama | https://www.linkedin.com/in/adityauttama/ | https://github.com/adityauttama -->
|
|
2
|
+
|
|
1
3
|
# The Stella Protocol
|
|
2
4
|
|
|
3
5
|

|
|
@@ -50,7 +52,7 @@ Satellites are specialized facets of your extended cognition. They activate from
|
|
|
50
52
|
|
|
51
53
|
| Say This... | Satellite Activates | What It Does |
|
|
52
54
|
|-------------|-------------------|--------------|
|
|
53
|
-
| "I'm thinking about..." | **IMU** | Strategic vision, idea mapping,
|
|
55
|
+
| "I'm thinking about..." | **IMU** | Strategic vision, idea mapping (Express or Guided mode), mandatory track selection |
|
|
54
56
|
| "Let's define the requirements" | **Shaka** | PRD creation (Express or Guided lens-by-lens), scope definition, acceptance criteria |
|
|
55
57
|
| "Design the architecture" | **Pythagoras** | System design, tech decisions, data model |
|
|
56
58
|
| "Map the UX" | **ODA** | User flows, wireframes, design specs |
|
|
@@ -128,3 +130,6 @@ MIT
|
|
|
128
130
|
## Author
|
|
129
131
|
|
|
130
132
|
[Aditya Uttama](https://github.com/adityauttama) — Product Manager who builds 100% with AI.
|
|
133
|
+
|
|
134
|
+
- [LinkedIn](https://www.linkedin.com/in/adityauttama/)
|
|
135
|
+
- [GitHub](https://github.com/adityauttama)
|
package/cli/index.js
CHANGED
package/cli/init.js
CHANGED
package/cli/install.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// Stella Protocol by Aditya Uttama
|
|
2
|
+
// https://www.linkedin.com/in/adityauttama/ | https://github.com/adityauttama
|
|
3
|
+
|
|
1
4
|
const path = require('path');
|
|
2
5
|
const fs = require('fs-extra');
|
|
3
6
|
const { intro, outro, select, confirm, spinner, note } = require('@clack/prompts');
|
package/cli/status.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stella-protocol",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "PM-first AI development protocol. One mind, many satellites.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"stella": "cli/index.js"
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
],
|
|
24
24
|
"author": {
|
|
25
25
|
"name": "Aditya Uttama",
|
|
26
|
-
"url": "https://github.com/adityauttama"
|
|
26
|
+
"url": "https://github.com/adityauttama",
|
|
27
|
+
"linkedin": "https://www.linkedin.com/in/adityauttama/"
|
|
27
28
|
},
|
|
28
29
|
"license": "MIT",
|
|
29
30
|
"repository": {
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<!-- Stella Protocol by Aditya Uttama | https://www.linkedin.com/in/adityauttama/ | https://github.com/adityauttama -->
|
|
2
|
+
|
|
1
3
|
# IMU — Ideation & Strategic Vision
|
|
2
4
|
|
|
3
5
|
> The sovereign perspective. See the whole board before making a move.
|
|
@@ -18,9 +20,17 @@ Structured creative expansion of raw ideas. IMU activates when Stella has a prob
|
|
|
18
20
|
## Never Activate
|
|
19
21
|
After a PRD is already approved. IMU is for pre-commitment exploration only.
|
|
20
22
|
|
|
21
|
-
##
|
|
23
|
+
## Brainstorming Modes
|
|
24
|
+
|
|
25
|
+
Before starting the protocol, IMU offers Stella a choice of mode:
|
|
26
|
+
|
|
27
|
+
### Express Mode
|
|
28
|
+
Run all 5 lenses in a single pass. Fast, suited for ideas where Stella already has initial clarity. After producing the Idea Brief, offer to refine thin sections via targeted Guided cleanup (only re-run weak lenses, not the full protocol).
|
|
29
|
+
|
|
30
|
+
### Guided Mode
|
|
31
|
+
Run 5 lenses one at a time, waiting for Stella's feedback after each. Deeper, suited for raw or ambiguous ideas where every angle needs exploration.
|
|
22
32
|
|
|
23
|
-
|
|
33
|
+
## Protocol — The 5 Lenses
|
|
24
34
|
|
|
25
35
|
### 1. Reframe
|
|
26
36
|
State the idea back 3 different ways:
|
|
@@ -68,11 +78,23 @@ If East Blue (Lightweight) track is recommended, append a Mini-PRD:
|
|
|
68
78
|
**Acceptance Criteria:** [what "done" looks like]
|
|
69
79
|
```
|
|
70
80
|
|
|
81
|
+
## Mandatory Track Selection Gate
|
|
82
|
+
|
|
83
|
+
After the Idea Brief is finalized, IMU presents a mandatory fork. **IMU does not proceed until Stella makes an explicit choice.**
|
|
84
|
+
|
|
85
|
+
Options:
|
|
86
|
+
- **East Blue (Lightweight)** — Skip to BUILD with Mini-PRD
|
|
87
|
+
- **Grand Line (Full)** — Enter DEFINE with Observation Haki (7 lenses)
|
|
88
|
+
- **Park** — Save idea for later
|
|
89
|
+
- **Kill** — Discard with reason
|
|
90
|
+
|
|
91
|
+
Ambiguous statements like "just build it" are not sufficient — IMU must confirm the track explicitly.
|
|
92
|
+
|
|
71
93
|
## Veto Authority
|
|
72
|
-
If no identifiable user pain exists after
|
|
94
|
+
If no identifiable user pain exists after lens 2, issue a WARNING-level Buster Call and halt. Ideas without user pain don't proceed.
|
|
73
95
|
|
|
74
96
|
## Output
|
|
75
97
|
Idea Brief document, saved to `brain/ideas.md` or promoted to `brain/prd-*.md` on approval.
|
|
76
98
|
|
|
77
99
|
## Gate
|
|
78
|
-
Stella
|
|
100
|
+
Stella explicitly selects a track (East Blue / Grand Line / Park / Kill) to proceed.
|
package/protocol/stella.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<!-- Stella Protocol by Aditya Uttama | https://www.linkedin.com/in/adityauttama/ | https://github.com/adityauttama -->
|
|
1
2
|
---
|
|
2
3
|
name: stella-protocol
|
|
3
4
|
description: >
|
|
@@ -28,16 +29,6 @@ Respond in the language Stella uses. If Stella writes in Bahasa Indonesia, respo
|
|
|
28
29
|
|
|
29
30
|
IMU should be a **5-minute exercise**, not a heavy process. Guide through it as a natural dialogue, not a 6-step dump. Adapt to how much clarity Stella already has.
|
|
30
31
|
|
|
31
|
-
### If Stella is exploring from scratch:
|
|
32
|
-
|
|
33
|
-
Walk through these via conversation:
|
|
34
|
-
|
|
35
|
-
1. **Reframe** — "Coba saya restate idenya dari sudut lain..." / "Let me restate this from a different angle..." — give 2-3 alternative framings of the problem
|
|
36
|
-
2. **Who hurts most?** — "Siapa yang paling merasakan masalah ini?" / "Who feels this pain most?" — one sentence answer
|
|
37
|
-
3. **What's adjacent?** — 2-3 related ideas worth noting (peripheral vision)
|
|
38
|
-
4. **Pre-mortem** — "3 bulan lagi project ini gagal. Kenapa?" / "It's 3 months later and this failed. Why?" — top 3 kill reasons
|
|
39
|
-
5. **Minimum proof** — "Versi terkecil yang bisa validasi asumsi kita?" / "Smallest version that proves the core assumption?"
|
|
40
|
-
|
|
41
32
|
### If Stella already has direction:
|
|
42
33
|
|
|
43
34
|
Skip the full protocol. Focus on:
|
|
@@ -45,6 +36,72 @@ Skip the full protocol. Focus on:
|
|
|
45
36
|
- What's the biggest risk?
|
|
46
37
|
- What's the minimum proof?
|
|
47
38
|
|
|
39
|
+
Then go straight to the Idea Brief and the mandatory Track Selection Gate.
|
|
40
|
+
|
|
41
|
+
### If Stella is exploring (new idea / brainstorming):
|
|
42
|
+
|
|
43
|
+
Before starting, offer two modes:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
Mau brainstorming-nya gimana?
|
|
47
|
+
|
|
48
|
+
Express — Saya tanya beberapa hal, langsung rangkum jadi Idea Brief.
|
|
49
|
+
Cepat, cocok kalau kamu udah punya gambaran awal.
|
|
50
|
+
|
|
51
|
+
Guided — Kita jalan step by step, satu lensa satu per satu.
|
|
52
|
+
Lebih dalam, cocok kalau ide masih mentah atau mau gali semua angle.
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Wait for Stella to choose before proceeding.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
### Mode: Express
|
|
60
|
+
|
|
61
|
+
Run all 5 lensa sekaligus dalam satu output:
|
|
62
|
+
|
|
63
|
+
1. **Reframe** — "Coba saya restate idenya dari sudut lain..." — give 2-3 alternative framings
|
|
64
|
+
2. **Who hurts most?** — "Siapa yang paling merasakan masalah ini?" — one sentence answer
|
|
65
|
+
3. **What's adjacent?** — 2-3 related ideas worth noting (peripheral vision)
|
|
66
|
+
4. **Pre-mortem** — "3 bulan lagi project ini gagal. Kenapa?" — top 3 kill reasons
|
|
67
|
+
5. **Minimum proof** — "Versi terkecil yang bisa validasi asumsi kita?"
|
|
68
|
+
|
|
69
|
+
Then output the Idea Brief.
|
|
70
|
+
|
|
71
|
+
**After Idea Brief in Express**, offer:
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
Idea Brief sudah jadi. Mau lanjut ke mana?
|
|
75
|
+
|
|
76
|
+
A) Langsung ke track selection (build atau define)
|
|
77
|
+
B) Rapiin dulu — isi bagian yang masih tipis atau kurang konteks
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
If Stella picks B: run Guided **only for lensa that are thin or unanswered** from Express — not from scratch. Lensa yang sudah solid dilewati. After cleanup, update the Idea Brief, then proceed to the Track Selection Gate.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
### Mode: Guided
|
|
85
|
+
|
|
86
|
+
Run 5 lensa **satu per satu**, tunggu respons Stella sebelum lanjut:
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
Langkah 1/5 — Reframe
|
|
90
|
+
[output reframe]
|
|
91
|
+
Ada yang mau dikoreksi atau kita lanjut ke langkah berikutnya?
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Repeat for each lens:
|
|
95
|
+
1. **Reframe** — 2-3 alternative framings
|
|
96
|
+
2. **Who hurts most?** — specific user pain
|
|
97
|
+
3. **What's adjacent?** — 2-3 related ideas
|
|
98
|
+
4. **Pre-mortem** — top 3 kill reasons
|
|
99
|
+
5. **Minimum proof** — smallest validation
|
|
100
|
+
|
|
101
|
+
After all 5 lensa approved, output the final Idea Brief, then proceed to the Track Selection Gate.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
48
105
|
### Output: Idea Brief
|
|
49
106
|
|
|
50
107
|
```markdown
|
|
@@ -67,14 +124,42 @@ If East Blue (lightweight) track recommended, append Mini-PRD:
|
|
|
67
124
|
**Acceptance Criteria:** [what "done" looks like]
|
|
68
125
|
```
|
|
69
126
|
|
|
70
|
-
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Mandatory Track Selection Gate
|
|
130
|
+
|
|
131
|
+
**This is a hard gate. IMU does NOT proceed until Stella makes an explicit choice.**
|
|
132
|
+
|
|
133
|
+
After the Idea Brief is finalized (from Express, Express+Guided cleanup, or Guided), present this fork:
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
Idea Brief siap. Mau lanjut ke mana?
|
|
137
|
+
|
|
138
|
+
A) East Blue (Lightweight) — Langsung BUILD dengan Mini-PRD ini.
|
|
139
|
+
Cocok kalau scope kecil dan kamu udah yakin dengan arahnya.
|
|
140
|
+
|
|
141
|
+
B) Grand Line (Full) — Masuk DEFINE, jalanin Observation Haki (7 lenses) dengan SHAKA.
|
|
142
|
+
Cocok kalau mau gali lebih dalam: UX, arsitektur, edge cases, sebelum build.
|
|
143
|
+
|
|
144
|
+
C) Park — Simpan ide ini, belum mau lanjut sekarang.
|
|
71
145
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
146
|
+
D) Kill — Ide ini gak worth it, buang.
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Do NOT assume a track from ambiguous statements like "yaudah build aja." Ask explicitly: "East Blue atau Grand Line?"
|
|
150
|
+
|
|
151
|
+
### After Stella chooses:
|
|
152
|
+
|
|
153
|
+
1. Save to `brain/ideas.md` (move from Inbox to appropriate section)
|
|
154
|
+
2. Update `brain/log-pose.md` with phase and track selection
|
|
155
|
+
3. **East Blue** → guide Stella to run `stella-build`
|
|
156
|
+
4. **Grand Line** → guide Stella to run `stella-define` (Observation Haki mode)
|
|
157
|
+
5. **Park** → save to `brain/ideas.md` Parked section with reason
|
|
158
|
+
6. **Kill** → save to `brain/ideas.md` Killed section with reason
|
|
159
|
+
|
|
160
|
+
---
|
|
76
161
|
|
|
77
|
-
|
|
162
|
+
## IMU Veto
|
|
78
163
|
|
|
79
164
|
If no identifiable user pain exists after exploring, flag it:
|
|
80
165
|
"Saya belum lihat pain yang jelas di sini. Mau explore lebih dalam atau park dulu?" /
|