← Back to list

new-column
by griffnb
Claude Plugins
⭐ 0🍴 0📅 Jan 8, 2026
SKILL.md
name: new-column description: database column setup. Use when you need to create or update a database column
Be sure all database fields are snake_case Be sure all sub structs that are in jsonb collumns are also snake_case Be sure to not use booleans for fields, use smallint 0/1
Struct Tag Annotations
Critical: Struct tags control database migrations and constraints. Include all relevant tags:
Name *fields.StringField `column:"name" type:"text" default:"":"false"`
Email *fields.StringField `column:"email" type:"text" default:"" unique:"true"`
Age *fields.IntField `column:"age" type:"integer" default:"0" null:"true"`
Status *fields.IntConstantField[Status] `column:"status" type:"smallint" default:"1"`
Settings *fields.StructField[*Settings] `column:"settings" type:"jsonb" default:"{}"`
Available Tags:
column:"name"– Database column name (required)type:"text|jsonb|smallint|integer|uuid|date|datetime|bigint"– Database column type (required) note that all 'boolean' type things should be a smallint 0/1default:"value/null"– Default value for columnnull:"true"– Whether column allows NULL, dont add if not nullableunique:"true"– Whether column has unique constraint, dont add if not uniqueindex:"true"– Whether to create index on column, dont add if not indexedpublic:"view|edit"- For public endpoints, determines whether or not the field is returned (view or edit) or on updates if its editable by the user (edit), dont add if not public facing- IMPORTANT - for all UUID fields, they must have
default:"null" null:"true"
Field Types
StringField– Text/string columnsUUIDField– UUID columnsIntField– Integer columns / Bool fields with smallint 0/1 valuesDecimalField– Decimal/numeric columnsIntConstantField[T]– Enum/constant fieldsStructField[T]– JSONB/struct columns
All fields provide .Set(val) and .Get() methods. Struct fields have a .GetI() for when errors do not need to be checked
Additional resources
- For usage examples, see examples.md
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon