The Agimon CLI (@agimonai/cms-cli) is a command-line tool to set up and manage Agimon CMS projects.
You can install the Agimon CLI globally to use it across projects:
Copy npm install -g @agimonai/cms-cli
Copy pnpm add -g @agimonai/cms-cli
Copy yarn global add @agimonai/cms-cli
Alternatively, you can use it directly without installation:
Copy npx @agimonai/cms-cli <command>
Copy pnpm dlx @agimonai/cms-cli <command>
Copy yarn dlx @agimonai/cms-cli <command>
To generate blog pages based on your Agimon CMS configuration:
Copy agimon generate
Options available:
-t, --api-key [string]
-f, --force
-y, --yes
If you don't provide the API key through the command line, you will be prompted to enter it interactively.
To update API keys for your Agimon configuration:
Copy agimon update api-key
Options available:
-s, --stage [string]
-k, --key [string]
-y, --yes
Before proceeding with the CLI setup, ensure you have:
Currently, the CLI primarily supports:
Support for more frameworks is planned for future releases.
If you receive an error about invalid API keys:
agimon update api-key
When generating pages, you may encounter warnings about files that already exist. Use the
--force
Copy agimon generate --force