Skip to content

Prompt Library

McAmner edited this page Jun 2, 2026 · 1 revision

Prompt Library

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.

Structure

prompts/
├── atlas-one.md
├── modes/
└── packs/

Core Prompt

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

Modes live in:

prompts/modes/

Each mode file includes:

  • when to use it
  • what it is best for
  • recommended output shape

Packs

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

GitHub Pages

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.

Current Rule

If a prompt is public, it should have a readable markdown source file.

Clone this wiki locally