Skip to content

CLI Overview

The terminal CLI’s job stops at installation, updates, status, and the dashboard. It has nothing to do with running the workflow itself.

Terminal window
npx create-syntaxis@latest install
npx create-syntaxis@latest --scaffold create the app, then install
npx create-syntaxis@latest update apply managed workflow updates
npx create-syntaxis@latest status read project status
npx create-syntaxis@latest dashboard serve the local dashboard

Actual workflow commands need the code, the conversation, and your judgment all in the loop together — that only happens in your AI chat, as /feature, $feature, or whatever named skill applies.

Type an AI skill’s name into the terminal instead, and you get an explanation of where it actually belongs rather than a confusing failure:

Terminal window
$ npx create-syntaxis@latest feature
`feature` is an AI chat skill, not a terminal command.
Terminal window
npm install --global create-syntaxis@latest
syntaxis status
syntaxis dashboard

The global syntaxis command does only status and the dashboard — installing and updating both stay with npx create-syntaxis@latest, so a project can never end up updated by a global binary that’s gone stale.

Terminal window
npx create-syntaxis@latest --help
npx create-syntaxis@latest update --help
npx create-syntaxis@latest status --help
npx create-syntaxis@latest dashboard --help