Finqu CLI — theme development, storefront scaffolding, authentication, and local development workflow
Use this skill when:
@finqu/cli)npm install -g @finqu/cli
Verify installation:
finqu --version
finqu login
Opens a browser for authentication. After logging in, your session is saved locally.
Read: references/authentication.md
Liquid theme development:
→ Steps 3–5 below
Headless storefront:
→ Step 6 below
finqu theme configure
This connects your local directory to a specific theme on a specific store. Creates/updates finqu.config.json with:
Read: references/theme-commands.md
finqu theme dev
Starts a local development server that:
finqu theme deploy
Uploads the current theme files to the connected store. The theme becomes live (or updates the draft, depending on settings).
finqu storefront create
Scaffolds a new headless storefront project. Follow the interactive prompts to configure the project.
Read: references/storefront-commands.md
After setup, your project has a finqu.config.json:
{
"store": "your-store.finqu.com",
"themeId": "12345"
}
Read: references/configuration.md
finqu --version outputs the installed versionfinqu login completes successfullyfinqu theme configure creates finqu.config.jsonfinqu theme dev starts the dev server and opens a previewfinqu theme deploy uploads files without errorsfinqu storefront create scaffolds a new projectnpm install -g @finqu/clifinqu logout then finqu login againRead: references/troubleshooting.md