docyrus-create-app
Installation
SKILL.md
Docyrus App Creation (CLI)
Scaffold a new Docyrus app and, optionally, pull its code down for local development — all from docyrus apps. Today this covers web apps (type: external-app) on a React techstack; mobile/portal types land later.
Every command prints its authoritative, always-current flags with docyrus apps <cmd> --help. Add --json for machine-readable output.
Pick a creation mode (read first)
docyrus apps create creates the app record and provisions its git repo one of three ways — choose with a flag:
| Mode | Flag | Repo you get |
|---|---|---|
| Techstack starter (default) | (none) | A fork of the techstack's starter template — a ready-to-run app |
| Empty repo | --empty-repo |
A fresh repo with only an initial commit — bring your own code |
| Remix a template | --from-template <appId|slug> |
A copy of an existing template app's repo |
Repo provisioning runs asynchronously after the app record is created — git_repo is populated a few seconds later. The --local-development and apps clone flows poll for it, so you don't have to wait manually.