Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
系统字典和业务字典配置。建表需要枚举字段或给表添加枚举类字段时使用
-- 系统字典
`is_locked` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '锁定,dict:is_locked',
-- 业务字典, 字典编码格式: {mod}_{table}_{column}
`status` varchar(20) NOT NULL DEFAULT '' COMMENT '状态,dictbiz:ec_order_status',
src/tables/{mod}/
├── base_dict.{mod}.sql.csv # 系统字典
├── base_dict_detail.{mod}.sql.csv # 系统字典明细
├── base_dictbiz.{mod}.sql.csv # 业务字典
├── base_dictbiz_detail.{mod}.sql.csv # 业务字典明细
base_dictbiz.{mod}.sql.csv 中:id 使用 nr uuid 生成唯一 IDlbl 为: {table_comment}-{column_comment}, 例: 订单-状态type 一般为: string, 或 numbertenant_id 固定为: ZDbZlC1OT8KaDg6soxMCBQ (默认租户)is_sys 一般为: 1 代表是否 系统记录, 系统记录禁止用户修改/删除is_add 一般为: 0 代表是否允许用户新增字典明细order_by 从1开始依次递增id,code,lbl,type,order_by,tenant_id,is_sys,is_add
l4V3aK5XRCOqSWsc/59GEw,exh_booking_order_state,订单-状态,string,1,ZDbZlC1OT8KaDg6soxMCBQ,1,0
base_dictbiz_detail.{mod}.sql.csv 中:id 使用 nr uuid 生成唯一 IDdictbiz_id 为业务字典 ID, 对应 base_dictbiz.{mod}.sql.csv 中对应业务字典的 ID_dictbiz_lbl 为业务字典标签, 对应 base_dictbiz.{mod}.sql.csv 中对应业务字典的 lbl 字段lbl 字段为字典明细标签val 字段为字典明细值npx skills add majiayu000/claude-skill-registry --skill dictHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.