Wheels Routing Generator

Official

Define clean, RESTful routes effortlessly.

Authorwheels-dev
Version1.0.0
Installs0

System Documentation

What problem does it solve?

This Skill simplifies the often-complex task of defining URL structures and RESTful routes in CFWheels applications, preventing routing errors and ensuring a consistent, maintainable API design. It automates the boilerplate, so you don't have to.

Core Features & Use Cases

  • Comprehensive Route Generation: Create basic, RESTful, nested, and custom routing patterns.
  • Advanced Routing Controls: Implement route constraints, namespaces, path scoping, and API versioning.
  • Use Case: Quickly set up a /posts resource with all standard CRUD actions, then easily add nested /posts/[key]/comments routes. This ensures your application's URL structure is logical, maintainable, and adheres to RESTful principles without manual configuration.

Quick Start

In config/routes.cfm:

mapper() .resources("posts") # Generates 7 RESTful routes for posts .get(name="about", pattern="about", to="pages##about") .end();

Dependency Matrix

Required Modules

None required

Components

Standard package

💻 Claude Code Installation

Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.

Please help me install this Skill:
Name: Wheels Routing Generator
Download link: https://github.com/wheels-dev/wheels/archive/main.zip#wheels-routing-generator

Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
View Source Repository