olympus-ai 4.4.5 → 4.4.6
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.
|
@@ -24,7 +24,7 @@ export declare const HOOKS_DIR: string;
|
|
|
24
24
|
export declare const SETTINGS_FILE: string;
|
|
25
25
|
export declare const VERSION_FILE: string;
|
|
26
26
|
/** Current version - MUST match package.json */
|
|
27
|
-
export declare const VERSION = "4.4.
|
|
27
|
+
export declare const VERSION = "4.4.6";
|
|
28
28
|
/** Installation result */
|
|
29
29
|
export interface InstallResult {
|
|
30
30
|
success: boolean;
|
package/dist/installer/index.js
CHANGED
|
@@ -40,7 +40,7 @@ export const HOOKS_DIR = join(CLAUDE_CONFIG_DIR, 'hooks');
|
|
|
40
40
|
export const SETTINGS_FILE = join(CLAUDE_CONFIG_DIR, 'settings.json');
|
|
41
41
|
export const VERSION_FILE = join(CLAUDE_CONFIG_DIR, '.olympus-version.json');
|
|
42
42
|
/** Current version - MUST match package.json */
|
|
43
|
-
export const VERSION = '4.4.
|
|
43
|
+
export const VERSION = '4.4.6';
|
|
44
44
|
/**
|
|
45
45
|
* Read a content file from the resources/ directory.
|
|
46
46
|
*
|
package/package.json
CHANGED
|
@@ -23,6 +23,16 @@ Determine which mode to run based on the input:
|
|
|
23
23
|
|
|
24
24
|
If the input already contains substantial context (e.g., the user pasted a feature description, a ticket, or a problem statement), extract what you can from it and confirm rather than re-asking. The goal is a conversation, not a questionnaire.
|
|
25
25
|
|
|
26
|
+
### Thin-Context Handling
|
|
27
|
+
|
|
28
|
+
When the input is vague or minimal (e.g., "we need password reset" with no further detail), don't generate a brief full of assumptions. Instead:
|
|
29
|
+
|
|
30
|
+
1. **Generate the brief anyway** — a brief with "Unknown" sections is better than no brief. Fill in what you can reasonably infer from the request itself.
|
|
31
|
+
2. **Mark unknowns explicitly** — for each unknown section, include the specific questions you would have asked. This turns the brief into a structured interview guide for the next conversation. Example: "Unknown — Who is requesting this? What is the business impact? Is there a deadline?"
|
|
32
|
+
3. **Invest in Notes for Elaboration** — when context is thin, this section becomes the most valuable part of the brief. List the open questions, risks, and decisions the elaboration team needs to resolve.
|
|
33
|
+
|
|
34
|
+
The goal is that even a thin-context brief is useful — it captures what is known, makes the unknowns visible, and gives the team a structured starting point for discussion.
|
|
35
|
+
|
|
26
36
|
---
|
|
27
37
|
|
|
28
38
|
## Single Mode
|
|
@@ -57,7 +67,7 @@ Have a natural conversation to understand the user's intent. You're trying to fi
|
|
|
57
67
|
|
|
58
68
|
### Generating the Brief
|
|
59
69
|
|
|
60
|
-
Once you have enough context, generate the brief. Don't wait for perfect information — a brief with a few "
|
|
70
|
+
Once you have enough context, generate the brief. Don't wait for perfect information — a brief with a few "Unknown" sections is better than no brief.
|
|
61
71
|
|
|
62
72
|
Create the directory if needed, then write the brief:
|
|
63
73
|
|
|
@@ -69,7 +79,7 @@ Create the directory if needed, then write the brief:
|
|
|
69
79
|
# Intent Brief: [Name]
|
|
70
80
|
|
|
71
81
|
**Date:** [ISO date]
|
|
72
|
-
**Author:** [who created it — ask if not obvious]
|
|
82
|
+
**Author:** [who created it — ask if not obvious, default to "Unknown" if not provided]
|
|
73
83
|
**Status:** Draft
|
|
74
84
|
|
|
75
85
|
## Problem
|
|
@@ -143,6 +153,8 @@ Help the user sequence the items. Ask about:
|
|
|
143
153
|
|
|
144
154
|
If the user already has a priority order, confirm it rather than re-deriving it.
|
|
145
155
|
|
|
156
|
+
**Partial priority ordering:** When some items have an explicit priority (e.g., "Mario requested the first 3") but others don't, preserve the explicit ordering for those items and sequence the remaining items using dependency analysis and risk assessment. Explain your reasoning for the inferred positions — the user should understand why item 4 comes before item 5.
|
|
157
|
+
|
|
146
158
|
### Step 4: Generate All Briefs
|
|
147
159
|
|
|
148
160
|
Write each brief to `.olympus/briefs/{kebab-case-name}.md` using the same template as single mode. Include the priority position in each brief's metadata.
|
|
@@ -176,7 +188,19 @@ Write the priority-sequenced index:
|
|
|
176
188
|
[How this collection should be used — e.g., "Feed into March 30th Mob Elaboration session" or "Input for /plan runs on the EZFacility codebase"]
|
|
177
189
|
```
|
|
178
190
|
|
|
179
|
-
|
|
191
|
+
### Step 6: Identify Cross-Brief Dependencies
|
|
192
|
+
|
|
193
|
+
After generating all briefs, review the full set and identify items that share components, data models, or user flows. Document these in the index under a dedicated section:
|
|
194
|
+
|
|
195
|
+
```markdown
|
|
196
|
+
## Cross-Brief Dependencies
|
|
197
|
+
|
|
198
|
+
- **[Brief A] ↔ [Brief B]** — Share [component/data model/user flow]. Elaborate together or sequence A before B.
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
This prevents the team from elaborating overlapping items in isolation, which leads to conflicting designs and rework during construction.
|
|
202
|
+
|
|
203
|
+
After generating all briefs, the index, and cross-brief dependencies, summarize what was created and offer next steps.
|
|
180
204
|
|
|
181
205
|
---
|
|
182
206
|
|
|
@@ -193,7 +217,7 @@ This integration point will be formalized in a future update to the `/plan` skil
|
|
|
193
217
|
## Principles
|
|
194
218
|
|
|
195
219
|
- **Capture intent, not design.** Briefs describe problems and outcomes. Solutions, architecture, and implementation details belong to `/plan` and Mob Elaboration.
|
|
196
|
-
- **Good enough beats perfect.** A brief with
|
|
220
|
+
- **Good enough beats perfect.** A brief with an "Unknown" section is better than no brief. The elaboration team will fill gaps — that's their job.
|
|
197
221
|
- **Respect the user's time.** In batch mode especially, don't ask questions you can infer the answers to. Template similar items. Be efficient.
|
|
198
222
|
- **Standalone value.** A brief should be useful even if `/plan` is never run — it's a communication artifact that helps teams align on what needs to be built and why.
|
|
199
223
|
- **No codebase analysis.** Briefs are business-context documents. Technical discovery, reverse engineering, and architecture decisions happen in `/plan`. Don't read source code or suggest implementations.
|