← ClaudeAtlas

coldbox-clilisted

Use this skill when using the ColdBox CLI (CommandBox module) to scaffold applications, generate handlers, models, services, views, layouts, interceptors, modules, ORM artifacts, tests, or manage AI integration. Covers all `coldbox create` commands, language flags (BoxLang vs CFML), app skeleton selection, feature flags (--docker, --vite, --rest, --migrations, --ai), template token patterns, layout detection, and AI integration sub-commands.
ColdBox/skills · ★ 0 · API & Backend · score 61
Install: claude install-skill ColdBox/skills
# ColdBox CLI Skill ## When to Use This Skill Use this skill when: - Creating a new ColdBox application from a skeleton - Scaffolding any ColdBox artifact: handler, model, service, view, layout, interceptor, module - Generating ORM entities, services, or CRUD scaffolding - Generating test specs (BDD or xUnit, unit or integration) - Running the interactive `app-wizard` for guided project creation - Managing AI integration (installing guidelines, skills, agents, MCP servers) - Choosing between BoxLang (default) and CFML output --- ## Language Mode Reference Examples use **BoxLang (`.bx`)** syntax by default. Adapt for your target language: | Concept | BoxLang (`.bx`) | CFML (`.cfc`) | |---------|-----------------|---------------| | Class declaration | `class [extends="..."] {` | `component [extends="..."] {` | | DI annotation | `@inject` above `property name="svc";` | `property name="svc" inject="svc";` | | View templates | `.bxm` suffix | `.cfm` / `.cfml` suffix | | Tag prefix | `<bx:if>`, `<bx:output>`, `<bx:set>` | `<cfif>`, `<cfoutput>`, `<cfset>` | > **CFML Compat Mode**: With BoxLang + CFML Compat module, `.bx` and `.cfc` files coexist freely. BoxLang-native classes use `class {}` (`.bx` files); CFML-compat classes use `component {}` (`.cfc` files). ## Command Quick Reference All commands are prefixed with `coldbox`. ### `coldbox create` — Code Generation | Command | Purpose | |---------|---------| | `coldbox create app` | Create a ColdBox application from a s