This folder is the durable reference for create-electrobun-stack. It is meant to work for humans scanning the project and for LLMs that need accurate, low-ambiguity context.
- CLI reference covers commands, flags, defaults, and examples.
- Stack options explains each scaffold option, what files it affects, and the combinations that are valid.
- Manifest reference documents
ces.jsonand links to the JSON schema. - Generated project guide explains the app that gets created and how to work in it after scaffolding.
- Add command explains how existing generated apps are expanded through
ces.json. - Templates explains the template overlay structure used by the generator.
- LLMs guide is a compact plain-text summary for agents and retrieval systems.
reference/holds stable CLI, option, and manifest contracts.guides/holds task-oriented docs for working with generated projects.internals/holds contributor-facing implementation docs.ces.schema.jsonstays at the docs root because generated manifests point at that public path.llms.txtstays at the docs root as the compact retrieval entrypoint.
For a first app:
- Read the root README.
- Use CLI reference for commands.
- Use Stack options before choosing optional integrations.
- Use Generated project guide once the app exists.
For contributing to the generator:
- Read Templates to understand
baseand option overlays. - Read Manifest reference before changing
ces.json. - Update LLMs guide when user-facing options or behavior changes.
- Place new docs in the folder that matches the reader:
reference/,guides/, orinternals/. - Add a new top-level docs file only for stable public paths or machine-readable entrypoints.
- Prefer exact flag names, generated paths, and commands over broad descriptions.
- Document what exists now. Mark future ideas as future work only when they are relevant to current behavior.
- When adding a scaffold option, update
reference/cli.md,reference/options.md,guides/generated-project.mdif generated files change,reference/manifest.mdif manifest fields change,internals/templates.mdif template layout changes, andllms.txt.