KS
Killer-Skills

crud-implementation — how to use crud-implementation how to use crud-implementation, crud-implementation setup guide, crud-implementation vs rapid-go, crud-implementation install, what is crud-implementation, crud-implementation alternative, crud-implementation tutorial, crud-implementation workflow, crud-implementation api development

v1.0.0
GitHub

About this Skill

Perfect for API Development Agents needing rapid CRUD operation implementation using rapid-go. crud-implementation is a workflow for implementing new entities with full CRUD operations, involving add-database-table, add-domain-entity, and add-api-endpoint steps.

Features

Implements CRUD operations using rapid-go
Generates migration SQL for database tables
Creates domain models and repositories
Supports usecase implementation for API endpoints
Includes constant tables for data consistency
Streamlines workflow with a structured entry point

# Core Topics

abyssparanoia abyssparanoia
[0]
[0]
Updated: 3/7/2026

Quality Score

Top 5%
42
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add abyssparanoia/rapid-go/crud-implementation

Agent Capability Analysis

The crud-implementation MCP Server by abyssparanoia is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use crud-implementation, crud-implementation setup guide, crud-implementation vs rapid-go.

Ideal Agent Persona

Perfect for API Development Agents needing rapid CRUD operation implementation using rapid-go.

Core Value

Empowers agents to quickly implement new entities with full CRUD operations, utilizing migration SQL, domain models, and repository patterns, streamlining API development with rapid-go.

Capabilities Granted for crud-implementation MCP Server

Implementing new database tables with migration SQL
Generating domain entities with repository patterns
Creating API endpoints with usecase-driven development

! Prerequisites & Limits

  • Requires rapid-go setup
  • Limited to CRUD operations
Project
SKILL.md
2.4 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

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

StepSkillKey Command
1add-database-tablemake migrate.create then make migrate.up
2add-domain-entitymake generate.mock
3add-api-endpointmake generate.buf

Before You Start

  1. Know the entity name and its fields
  2. Identify relationships to existing entities
  3. 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.up to 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

bash
1make 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

Related Skills

Looking for an alternative to crud-implementation or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design