Smithery Logo
MCPsSkillsDocsPricing
Login
NewFlame, an assistant that learns and improves. Available onTelegramSlack
    jhlee0409

    api-architecture

    jhlee0409/api-architecture
    Coding

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─
    Smithery Logo

    Give agents more agency

    Resources

    DocumentationPrivacy PolicySystem Status

    Company

    PricingAboutBlog

    Connect

    © 2026 Smithery. All rights reserved.

    About

    API 아키텍처 설계 원칙과 패턴을 적용합니다. RESTful API 설계, 버저닝, 응답 표준화, 미들웨어 패턴 구현 시 사용하세요. Next.js App Router 기반 서버리스 아키텍처에 최적화되어 있습니다.

    SKILL.md

    API Architecture Skill

    Instructions

    1. Follow REST conventions (resource-centric URLs)
    2. Use proper HTTP methods (GET/POST/PATCH/DELETE)
    3. Apply security pipeline: Rate Limit → Auth → Validate → Authorize → Execute
    4. Return consistent response structures
    5. Use cursor-based pagination

    REST URL Patterns

    GET    /api/projects          → List
    POST   /api/projects          → Create
    GET    /api/projects/[id]     → Read
    PATCH  /api/projects/[id]     → Update
    DELETE /api/projects/[id]     → Delete
    POST   /api/projects/[id]/like → Action
    

    Response Structure

    // Success
    { data: [...], nextCursor: "id", hasMore: true }
    
    // Error
    { error: "한국어 메시지", details: { field: "에러" } }
    

    Request Pipeline

    // 1. Rate Limit → 2. Auth → 3. Validate → 4. Authorize → 5. Execute
    

    For complete architecture diagrams, anti-patterns, and caching strategies, see reference.md.

    Recommended Servers
    Parallel Tasks
    Parallel Tasks
    Ref
    Ref
    Local Model Suitability MCP
    Local Model Suitability MCP
    Repository
    jhlee0409/sidedish
    Files