curd

A complete CRUD module generator for CatchAdmin that turns a database table definition into matching backend PHP files and Vue pages. Vue is a JavaScript framework used to build the user interface.

In plain words
What is it for?
Use it when you provide a table structure and want a full module with database setup, record management, Excel import and export, API routes, and list and create pages.
Why use it?
It coordinates the separate steps required for migrations, models, controllers, validation, routes, imports, exports, and CRUD screens, so the module structure stays consistent.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jaguarjack/catch-admin/curd
Any agent
npx skills add JaguarJack/catch-admin --skill curd
Clone the repo
git clone --depth 1 https://github.com/JaguarJack/catch-admin

Made for: Claude Code, Codex.

Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,737 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00042 $0.03737
Opus 5 $0.00021 $0.01869
Sonnet 5 $0.00008 $0.00747
Haiku 4.5 $0.00004 $0.00374

Measured 3d ago against content hash ba879d7a42f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

curd scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/curd/SKILL.md · 491 lines

How it starts

The opening of the file, as written. The whole thing — 491 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CatchAdmin CRUD Generator

一键生成完整 CRUD 模块 - 从数据表定义到前后端完整实现。

Sub-Skills (9 个子 Skills)

Step Skill 生成文件
1 01-parse-table - (解析输入)
2 02-migration database/migrations/*.php
3 03-model Models/{Model}.php
4 04-controller Http/Controllers/{Model}Controller.php
5 05-request Http/Requests/{Model}Request.php
6 06-routes routes/route.php
7 07-export Export/{Model}.php
8 08-import Import/{Model}.php
9 09-vue-pages index.vue + create.vue

Input: Table Definition

Table: products
Fields:
- id (primary key)
- name (string, 100, required)
- category_id (foreign key -> categories)
- description (text, nullable)
- price (decimal 10,2, required)
- stock (integer, default 0)
- status (tinyint, default 1)

Output: Complete Module Structure

modules/{Module}/
├── Http/
│   ├── Controllers/{Model}Controller.php
│   └── Requests/{Model}Request.php
├── Models/{Model}.php
├── Export/{Model}.php
├── Import/{Model}.php
├── database/migrations/*.php
└── routes/route.php

web/src/views/{module}/
├── index.vue
└── create.vue

Pre-checks (执行前)

  • 模块存在性:若 modules/{Module} 不存在,先询问是否创建新模块。
  • 文件冲突:目标文件已存在时,先询问覆盖或增量修改。
  • 路由/权限前缀:检查 modules/{Module}/routes/route.php 是否已有相同资源前缀。
  • 依赖/配置:新增依赖或改动 config/ 前必须先询问。

Output Contract (输出契约)

  • 必须生成 9 步完整产物(迁移/模型/控制器/请求/路由/导入导出/前端页)。
  • 所有路径、类名、命名空间与 {Module}/{Model}/{table} 一致。
  • 前端 catch-tableapi 与后端路由前缀保持一致。

Consistency Validation (生成后校验)

  • 迁移包含 CatchAdmin 标准字段:creator_id/created_at/updated_at/deleted_at + 索引。
  • Model/Request 与迁移字段一致(类型/必填/默认值)。
  • Route API 前缀与前端 api/permission 前缀一致。

Fallback Rules (失败兜底)

  • 输入缺失关键字段(如 table/fields)时必须先澄清,停止生成。
  • 复杂关系或非标准业务逻辑需用户确认后再生成。

Workflow

Step 1: Parse Table Definition → 01-parse-table

Extract from user input:

  • Table name (snake_case plural)
  • Model name (PascalCase singular)
  • Module name (PascalCase)
  • Fields with types, constraints, and relationships

Read the full file on GitHub · 491 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 491 lines · 42 tokens per session scan A ba879d7a42f5

Subscribe to this mod's changes

curd is a skill published in the GitHub repository JaguarJack/catch-admin (928 stars, last pushed 3d ago), licensed Apache-2.0. It adds 42 tokens to every session and 3,737 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

owl-admin-app-dev

Use this skill when developing an application that installed slowlyo/owl-admin, especially backend CRUD, menus, permissions, controllers, services, routes, config/admin.php, app/Admin, helper functions, settings(), adminpages(), AdminPipeline, upload/file preview issues, route conflicts, custom login/menu examples, or…

slowlyo/owl-admin · 114 tokens

owl-admin-devtools-generator

Use this skill for Owl Admin development tools, code generator, dynamic API templates, relationships, visual pages, generated CRUD code, app/ApiTemplates, Support/Apis, Support/CodeGenerator, Controllers/DevTools, or questions about “代码生成器”, “动态 API”, “API 模板”, “关系管理”, “可视化页面”, and “生成 CRUD”.

slowlyo/owl-admin · 82 tokens

owl-admin-frontend-assets

Use this skill for Owl Admin frontend assets, admin-views, public/admin-assets, resource publishing, custom React frontend work, amis-editor frontend, layout/theme frontend files, pnpm commands, or questions about “前端资源”, “admin-views”, “自定义前端”, “发布 assets”, “前端源码”, and “打包后台前端”.

slowlyo/owl-admin · 80 tokens

owl-admin-ops-commands

Use this skill for Owl Admin installation, publishing assets, upgrades, diagnostics, database inspection, menu maintenance, user creation, password reset, route generation, IDE helper, admin:publish, admin:install, admin:update, admin:doctor, admin:db, admin:menu, admin:create-user, or deployment troubleshooting.

slowlyo/owl-admin · 71 tokens

owl-admin-amis-page

Use this skill for Owl Admin pages built with amis, including CRUD pages, forms, tables, detail pages, filters, toolbar actions, iframe pages, custom page schemas, and renderer usage. Trigger when the user mentions amis, schema, Renderers, 后台页面, 列表, 表单, 详情, 筛选, 操作按钮, or admin:make-page.

slowlyo/owl-admin · 84 tokens

owl-admin-extension-module

Use this skill for Owl Admin extensions, modules, multi-admin setup, extension service providers, module routes, module config, menus, permissions, admin-module:init, or extensions under the configured extension directory. Trigger on 扩展, 插件, 多模块, module, extension, ServiceProvider, 菜单导入, or 模块后台.

slowlyo/owl-admin · 75 tokens