olympus-ai 4.0.0 → 4.0.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/.claude-plugin/plugin.json +1 -1
- package/README.md +94 -38
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
**Summon the gods of code.**
|
|
13
13
|
|
|
14
|
-
[Why Olympus?](#why-olympus) • [Quick Start](#quick-start) • [Self-Learning](#self-learning-system) • [Use Cases](#use-cases) • [Agents](#available-agents) • [Docs](#documentation)
|
|
14
|
+
[Why Olympus?](#why-olympus) • [Quick Start](#quick-start) • [AI-DLC Workflow](#ai-dlc-workflow) • [Self-Learning](#self-learning-system) • [Use Cases](#use-cases) • [Agents](#available-agents) • [Docs](#documentation)
|
|
15
15
|
|
|
16
16
|
</div>
|
|
17
17
|
|
|
@@ -27,8 +27,8 @@ Olympus is a multi-agent orchestration system for [Claude Code](https://docs.ant
|
|
|
27
27
|
- 📋 **Todo Management** - Tracks progress with real-time updates
|
|
28
28
|
- 🔄 **Background Execution** - Long-running tasks run async with notifications
|
|
29
29
|
- 🎯 **Continuation Enforcement** - Never stops until all tasks are complete
|
|
30
|
-
- 💬 **
|
|
31
|
-
- 🔮 **
|
|
30
|
+
- 💬 **19 Slash Commands** - `/ultrawork`, `/plan`, `/ascent`, `/continue`, `/review`, and more
|
|
31
|
+
- 🔮 **AI-DLC Workflow** - Inception → Construction → Operations pipeline for structured development
|
|
32
32
|
- 🌐 **Language Agnostic** - Works with any tech stack: Python, .NET, Go, Rust, Java, and more
|
|
33
33
|
- 🔮 **Magic Keywords** - Natural language triggers for enhanced modes
|
|
34
34
|
|
|
@@ -69,7 +69,7 @@ Olympus transforms Claude Code from a single agent into a **pantheon of speciali
|
|
|
69
69
|
|
|
70
70
|
- **Zero Configuration** - Works out-of-the-box with sensible defaults
|
|
71
71
|
- **Works Everywhere** - Not tied to any language or framework — orchestrates across .NET, Python, Go, Rust, Java, and any codebase
|
|
72
|
-
- **Slash Commands** -
|
|
72
|
+
- **Slash Commands** - 19 slash commands (`/ultrawork`, `/plan`, `/ascent`, `/continue`)
|
|
73
73
|
- **Magic Keywords** - Natural language triggers for enhanced modes
|
|
74
74
|
|
|
75
75
|
### 📊 Olympus vs. Manual Claude Usage
|
|
@@ -120,7 +120,7 @@ npm install -g olympus-ai
|
|
|
120
120
|
olympus-ai install
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
This installs agents,
|
|
123
|
+
This installs agents, skills, rules, and hooks to `~/.claude/`.
|
|
124
124
|
|
|
125
125
|
### Local Project Installation
|
|
126
126
|
|
|
@@ -158,10 +158,8 @@ claude
|
|
|
158
158
|
| `/deepsearch <query>` | Thorough multi-strategy codebase search |
|
|
159
159
|
| `/analyze <target>` | Deep analysis and investigation |
|
|
160
160
|
| `/complete-plan [path]` | Verify and complete a plan after implementation |
|
|
161
|
-
| `/
|
|
162
|
-
| `/
|
|
163
|
-
| `/spec <feature>` | Manually generate SPEC artifact for a feature |
|
|
164
|
-
| `/intents <feature>` | Manually generate INTENTS artifact for a feature |
|
|
161
|
+
| `/continue` | Resume an active AI-DLC workflow from last checkpoint |
|
|
162
|
+
| `/retro` | Run a guardrail retrospective on the current AI-DLC workflow |
|
|
165
163
|
| `/workflow-status` | View all active structured workflows and their status |
|
|
166
164
|
| `/olympus next` | Get the next ready task from current workflow |
|
|
167
165
|
| `/doctor` | Diagnose and fix olympus installation issues |
|
|
@@ -232,10 +230,12 @@ Include these words anywhere in your prompt to activate enhanced modes:
|
|
|
232
230
|
```
|
|
233
231
|
|
|
234
232
|
**What happens:**
|
|
233
|
+
- Starts an AI-DLC workflow with full Inception phase
|
|
235
234
|
- Prometheus interviews you about requirements
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
235
|
+
- Generates requirements, user stories, and application design
|
|
236
|
+
- Creates a construction plan with units of work
|
|
237
|
+
- Each unit goes through design, code generation, and testing
|
|
238
|
+
- All artifacts saved to `aidlc-docs/` with full audit trail
|
|
239
239
|
|
|
240
240
|
### 🧠 Learning Your Workflow
|
|
241
241
|
|
|
@@ -369,13 +369,56 @@ The Ascent is a persistence loop that binds Claude to your task until verified c
|
|
|
369
369
|
|
|
370
370
|
## Planning Workflow
|
|
371
371
|
|
|
372
|
-
1. **Start
|
|
373
|
-
2. **
|
|
374
|
-
3. **
|
|
375
|
-
4. **
|
|
376
|
-
5. **
|
|
372
|
+
1. **Start AI-DLC workflow**: `/plan build a new feature`
|
|
373
|
+
2. **Inception phase**: Prometheus interviews you about requirements, generates user stories, and plans the architecture
|
|
374
|
+
3. **Workflow planning**: Determines which stages to execute based on project needs
|
|
375
|
+
4. **Construction phase**: Per-unit functional design, NFR assessment, and code generation
|
|
376
|
+
5. **Resume if interrupted**: `/continue` picks up from the last checkpoint
|
|
377
|
+
6. **Review at any gate**: `/review` to evaluate plans before proceeding
|
|
377
378
|
|
|
378
|
-
Plans are saved to
|
|
379
|
+
Plans and artifacts are saved to `aidlc-docs/` in your project directory.
|
|
380
|
+
|
|
381
|
+
---
|
|
382
|
+
|
|
383
|
+
## AI-DLC Workflow
|
|
384
|
+
|
|
385
|
+
Olympus includes a structured development workflow inspired by [AWS AI-DLC](https://github.com/awslabs/aidlc-workflows) (AI-Driven Development Life Cycle). It guides you through three phases -- **Inception** (what and why), **Construction** (how), and **Operations** (deploy, placeholder) -- with human approval gates at every stage. The workflow adapts to your project: stages are conditionally executed based on complexity, scope, and whether you are working on a greenfield or brownfield codebase.
|
|
386
|
+
|
|
387
|
+
### Phases and Stages
|
|
388
|
+
|
|
389
|
+
**Inception** -- determine what to build and why:
|
|
390
|
+
- Workspace Detection (always) -- scans for existing code, resumes prior workflows
|
|
391
|
+
- Reverse Engineering (brownfield only) -- analyzes existing codebase
|
|
392
|
+
- Requirements Analysis (always) -- gathers functional and non-functional requirements
|
|
393
|
+
- User Stories (conditional) -- generates personas and acceptance criteria
|
|
394
|
+
- Workflow Planning (always) -- determines which construction stages to execute
|
|
395
|
+
- Application Design (conditional) -- component and service design
|
|
396
|
+
- Units Generation (conditional) -- decomposes work into implementable units
|
|
397
|
+
|
|
398
|
+
**Construction** -- determine how to build it:
|
|
399
|
+
- Per-unit loop (for each unit of work):
|
|
400
|
+
- Functional Design, NFR Requirements, NFR Design, Infrastructure Design (all conditional)
|
|
401
|
+
- Code Generation (always)
|
|
402
|
+
- Build and Test (always) -- after all units complete
|
|
403
|
+
|
|
404
|
+
**Operations** -- placeholder for future deployment and monitoring workflows.
|
|
405
|
+
|
|
406
|
+
### How to Use
|
|
407
|
+
|
|
408
|
+
```bash
|
|
409
|
+
# Start a new AI-DLC workflow
|
|
410
|
+
/plan build a user authentication system
|
|
411
|
+
|
|
412
|
+
# Resume an interrupted workflow
|
|
413
|
+
/continue
|
|
414
|
+
|
|
415
|
+
# Review at any gate
|
|
416
|
+
/review
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
State is tracked in `aidlc-docs/aidlc-state.md` and `aidlc-docs/checkpoint.json`. Use `/continue` to resume from exactly where you left off, even across sessions.
|
|
420
|
+
|
|
421
|
+
**Skill stacking**: Combine `/plan` with `/ascent` for persistent execution that never stops, or with `/ultrawork` for maximum parallelism across units.
|
|
379
422
|
|
|
380
423
|
---
|
|
381
424
|
|
|
@@ -506,20 +549,27 @@ Top Verified Discoveries:
|
|
|
506
549
|
|
|
507
550
|
```
|
|
508
551
|
~/.claude/
|
|
509
|
-
├── agents/ #
|
|
552
|
+
├── agents/ # 19 agent definitions (tiered variants)
|
|
510
553
|
│ ├── oracle.md
|
|
511
554
|
│ ├── prometheus.md
|
|
512
555
|
│ ├── olympian.md
|
|
513
556
|
│ └── ...
|
|
514
|
-
├──
|
|
515
|
-
│ ├── olympus/
|
|
516
|
-
│ ├── ultrawork/
|
|
517
|
-
│ ├── plan.md
|
|
557
|
+
├── skills/ # 19 slash commands
|
|
558
|
+
│ ├── olympus/SKILL.md
|
|
559
|
+
│ ├── ultrawork/SKILL.md
|
|
560
|
+
│ ├── plan/SKILL.md
|
|
561
|
+
│ ├── continue/SKILL.md
|
|
518
562
|
│ └── ...
|
|
519
563
|
├── hooks/ # Event handlers
|
|
520
564
|
│ ├── keyword-detector.mjs
|
|
521
565
|
│ ├── persistent-mode.mjs
|
|
522
566
|
│ └── ...
|
|
567
|
+
├── olympus/
|
|
568
|
+
│ ├── rules/ # AI-DLC workflow rules
|
|
569
|
+
│ │ ├── common/
|
|
570
|
+
│ │ ├── inception/
|
|
571
|
+
│ │ └── construction/
|
|
572
|
+
│ └── learning/ # Global learning data
|
|
523
573
|
└── CLAUDE.md # Olympus system prompt
|
|
524
574
|
```
|
|
525
575
|
|
|
@@ -551,8 +601,8 @@ This is a TypeScript monorepo using:
|
|
|
551
601
|
## Uninstall
|
|
552
602
|
|
|
553
603
|
```bash
|
|
554
|
-
# Remove agents and
|
|
555
|
-
rm -rf ~/.claude/agents ~/.claude/
|
|
604
|
+
# Remove agents and skills
|
|
605
|
+
rm -rf ~/.claude/agents ~/.claude/skills ~/.claude/hooks ~/.claude/olympus ~/.claude/CLAUDE.md
|
|
556
606
|
```
|
|
557
607
|
|
|
558
608
|
---
|
|
@@ -599,14 +649,22 @@ npm run test:coverage # Generate coverage report
|
|
|
599
649
|
```
|
|
600
650
|
olympus/
|
|
601
651
|
├── src/
|
|
602
|
-
│ ├──
|
|
603
|
-
│ ├──
|
|
604
|
-
│ ├── hooks/ # Event handlers
|
|
652
|
+
│ ├── cli/ # CLI entry point (olympus-ai command)
|
|
653
|
+
│ ├── installer/ # Installation logic
|
|
654
|
+
│ ├── hooks/ # Event handlers (session, tools, learning)
|
|
605
655
|
│ ├── learning/ # Self-learning system
|
|
606
|
-
│
|
|
607
|
-
|
|
608
|
-
├──
|
|
609
|
-
|
|
656
|
+
│ ├── features/ # Core features
|
|
657
|
+
│ │ └── workflow-engine/ # AI-DLC workflow engine
|
|
658
|
+
│ ├── config/ # Configuration management
|
|
659
|
+
│ ├── shared/ # Shared types and utilities
|
|
660
|
+
│ └── __tests__/ # Test suite (3100+ tests)
|
|
661
|
+
├── resources/
|
|
662
|
+
│ ├── agents/ # Agent markdown definitions
|
|
663
|
+
│ ├── skills/ # Slash command definitions
|
|
664
|
+
│ └── rules/ # AI-DLC workflow rules
|
|
665
|
+
├── dist/ # Build output
|
|
666
|
+
├── docs/ # Documentation
|
|
667
|
+
└── scripts/ # Build scripts
|
|
610
668
|
```
|
|
611
669
|
|
|
612
670
|
---
|
|
@@ -614,12 +672,10 @@ olympus/
|
|
|
614
672
|
## Documentation
|
|
615
673
|
|
|
616
674
|
- 📖 [Getting Started Guide](docs/guide/overview.md)
|
|
617
|
-
- 💻 [CLI Reference
|
|
618
|
-
- 🔄 [Workflow
|
|
619
|
-
-
|
|
620
|
-
-
|
|
621
|
-
- 🏗️ [Architecture Overview](docs/ARCHITECTURE.md)
|
|
622
|
-
- 🗺️ [Roadmap](docs/ROADMAP.md)
|
|
675
|
+
- 💻 [CLI Reference](docs/guide/cli-reference.md)
|
|
676
|
+
- 🔄 [Workflow Guide](docs/guide/workflow-guide.md) — AI-DLC workflow for structured development
|
|
677
|
+
- 🏗️ [Brownfield Projects](docs/guide/brownfield-projects.md) — Working with existing codebases
|
|
678
|
+
- 🧠 [Learning System](docs/learning-system.md) — How Olympus learns from your interactions
|
|
623
679
|
- 📋 [Changelog](CHANGELOG.md)
|
|
624
680
|
|
|
625
681
|
---
|
|
@@ -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.0.
|
|
27
|
+
export declare const VERSION = "4.0.1";
|
|
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.0.
|
|
43
|
+
export const VERSION = '4.0.1';
|
|
44
44
|
/**
|
|
45
45
|
* Read a content file from the resources/ directory.
|
|
46
46
|
*
|