Quickback Docs

Claude Code Skill

Use the Quickback skill for Claude Code to get AI-assisted backend development.

The Quickback CLI includes a skill for Claude Code that gives Claude context about your project structure, definitions, and the Quickback compiler. This helps Claude write correct defineTable() definitions, actions, and configuration.

Installation

Install the Skill

quickback claude install

This installs the Quickback skill files into your project so Claude Code can use them.

Options:

FlagDescription
--globalInstall to ~/.claude/ (available in all projects)
--localInstall to ./quickback/.claude/ (project-specific, default)

After installing, start Claude Code in your project directory. The Quickback skill will be available automatically.

What the Skill Provides

The Quickback skill teaches Claude Code about:

  • Project structure — Where definitions, features, and config files live
  • defineTable() API — How to write schema + security definitions correctly
  • defineActions() API — How to write custom actions with input validation
  • Security pillars — Firewall, Access, Guards, and Masking configuration
  • Provider options — Cloudflare, Bun, Turso runtime and database choices
  • Compiler workflow — How to compile and deploy

Usage Examples

With the skill installed, you can ask Claude Code to:

"Add a customers feature with org-scoped firewall and email masking"

"Create an action on orders called 'refund' that requires admin role"

"Add a summary view to the projects feature showing only id, name, and status"

"Switch my config from Bun to Cloudflare for production deployment"

Claude will generate correct Quickback definitions that you can compile directly.

Updating

To update the skill to the latest version:

quickback claude install

This overwrites the existing skill files with the latest version from the CLI.

See Also

On this page