-
Notifications
You must be signed in to change notification settings - Fork 0
Prompt Library
McAmner edited this page Jun 2, 2026
·
1 revision
Atlas One v0.2.0 introduces a file-based prompt library.
The goal is to make prompts easy to inspect, version, copy and reuse without burying the system in JavaScript or HTML.
prompts/
├── atlas-one.md
├── modes/
└── packs/
The core prompt lives at:
prompts/atlas-one.md
It defines the Atlas One routing behavior:
user goal → reasoning mode → output shape → final answer
Modes live in:
prompts/modes/
Each mode file includes:
- when to use it
- what it is best for
- recommended output shape
Prompt packs live in:
prompts/packs/
Packs combine modes into reusable workflows for recurring tasks.
Current seed packs:
- repo review
- systems thinking
- product strategy
- learning coach
The Pages UI still loads its prompt library from:
docs/prompts.json
The local app loads from:
web/prompts.json
Those JSON files are the browser-facing manifest. The markdown files are the human-readable source library.
If a prompt is public, it should have a readable markdown source file.