← スキル一覧に戻る

crud-implementation
by abyssparanoia
By using rapid-go you can quickly start developing a great API......
⭐ 18🍴 2📅 2026年1月20日
SKILL.md
name: crud-implementation description: Complete workflow guide for implementing new CRUD entities. Use when adding a new resource, implementing full CRUD operations, or needing an overview of the database-to-API flow. Triggers: "new entity", "add resource", "implement CRUD", "create table and API". Orchestrates add-database-table, add-domain-entity, and add-api-endpoint skills.
CRUD Implementation Workflow
Entry point for implementing a new entity with full CRUD operations.
Workflow Overview
┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
│ add-database-table │ --> │ add-domain-entity │ --> │ add-api-endpoint │
│ │ │ │ │ │
│ - Migration SQL │ │ - Domain model │ │ - Usecase │
│ - Constant tables │ │ - Repository │ │ - Proto definition │
│ - SQLBoiler gen │ │ - Marshaller │ │ - gRPC handler │
└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
Quick Start
| Step | Skill | Key Command |
|---|---|---|
| 1 | add-database-table | make migrate.create then make migrate.up |
| 2 | add-domain-entity | make generate.mock |
| 3 | add-api-endpoint | make generate.buf |
Before You Start
- Know the entity name and its fields
- Identify relationships to existing entities
- Determine which API actor (admin/public/debug)
Step-by-Step
Step 1: Database Layer
Use the add-database-table skill for:
- Creating migration file with table DDL
- Adding indexes and foreign keys
- Creating constant tables for enum fields
- Running
make migrate.upto generate SQLBoiler
Step 2: Domain Layer
Use the add-domain-entity skill for:
- Domain model with constructor and update methods
- Repository interface with query structs
- Marshaller (DB model <-> domain model)
- Repository implementation
Step 3: API Layer
Use the add-api-endpoint skill for:
- Usecase input/output structs
- Interactor interface and implementation
- Protocol Buffers messages and RPCs
- gRPC handler and marshaller
- DI registration
Final Verification
make lint.go && make test
Related Skills
- code-investigation - Analyze existing patterns before implementation
- review-pr - Self-review before creating PR
- create-pull-request - PR creation with proper format
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です