Appeus is a design-first workflow that turns user stories into running applications. Instead of scaffolding a framework and then bolting on design, Appeus starts with design decisions and stories, then instantiates the appropriate app scaffolds.
- Design-first: Project decisions are documented before any framework code is generated
- Multi-target: A single project can contain multiple apps (mobile, web, desktop)
- Canonical per-target structure: Apps always live under
apps/<target>/and design artifacts are per-target underdesign/*/<target>/ - Shared domain contract (as needed): Shared schema/operations/rules/interfaces live under
design/specs/domain/ - Framework adapters: Support for React Native, SvelteKit, and more
- Init project — Create project folder with decision document template
- Discovery — Agent guides you through toolchain and architecture decisions
- Add apps — Scaffold one or more apps based on your decisions
- Write stories — Define user stories per target
- Domain contract — Capture shared schema/operations/rules/interfaces (when multiple targets share concepts)
- Generate code — Vertical slicing: one screen/page at a time
- Review via scenarios — Screenshots with deep links for stakeholder review
appeus/
├── docs/ # For developing appeus itself
├── agent-rules/ # Brief rules for AI agents (linked via AGENTS.md)
├── reference/ # Detailed workflow docs (linked from agent-rules)
├── user-guides/ # Human-facing guides (linked via README.md)
├── templates/ # Starter files copied into projects
├── scripts/ # Automation (init, add-app, check-stale, etc.)
├── QUICKSTART.md # Getting started guide
└── README.md # This file
See QUICKSTART.md for step-by-step instructions.
- Stories — User-facing requirements ("As a user, I want...")
- Specs — Human-authored technical details (precedence over AI)
- Consolidations — AI-derived facts from stories (regenerable)
- Scenarios — Screenshots with deep links for review
- Vertical slicing — Generate one navigable screen at a time
docs/DESIGN.md— Vision, principles, architecturedocs/GENERATION.md— Staleness, dependencies, generation flowdocs/ARCHITECTURE.md— Folder structure referencedocs/STATUS.md— Development roadmap
- v2.1 (current) — Canonical per-target layout + consolidated domain contract
- v1 — RN-first workflow (available on
v1branch)