소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill faion-api-developer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | faion-api-developer |
| description | API development: REST, GraphQL, OpenAPI, versioning, auth, rate limiting. |
| user-invocable | false |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash, Task, AskUserQuestion, TodoWrite, Skill |
Entry point:
/faion-net— invoke this skill for automatic routing to the appropriate domain.
API design and development covering REST, GraphQL, OpenAPI specifications, authentication, and API best practices.
Handles API design, documentation, authentication, rate limiting, versioning, and API-specific patterns.
Detect API patterns from project:
| Signal | How to Check | What It Tells Us |
|---|---|---|
| OpenAPI spec | Glob("**/openapi.yaml") or Glob("**/swagger.*") | API documented |
| GraphQL schema | Glob("**/*.graphql") | GraphQL API |
| DRF | Grep("rest_framework", "**/settings.py") | Django REST Framework |
| FastAPI | Grep("fastapi", "**/requirements.txt") | FastAPI used |
| Express routes | Grep("app.get|app.post|router", "**/*.js") | Express API |
| Auth middleware | Grep("jwt|oauth|auth", "**/*.py") | Auth patterns |
Read existing patterns:
question: "What type of API are you building?"
header: "Type"
multiSelect: false
options:
- label: "REST API"
description: "Resource-based HTTP endpoints"
- label: "GraphQL API"
description: "Query language, single endpoint"
- label: "WebSocket/Real-time"
description: "Bidirectional communication"
- label: "RPC-style"
description: "Action-based endpoints"
Routing:
question: "Who will consume this API?"
header: "Consumers"
multiSelect: true
options:
- label: "Own frontend (SPA/mobile)"
description: "First-party clients"
- label: "Third-party developers"
description: "Public API, need docs"
- label: "Internal services"
description: "Microservices communication"
- label: "Partners (B2B)"
description: "Specific integrations"
Context impact:
question: "How should API authentication work?"
header: "Auth"
multiSelect: false
options:
- label: "JWT tokens"
description: "Stateless, self-contained tokens"
- label: "Session-based"
description: "Server-side sessions"
- label: "API keys"
description: "Simple key-based auth"
- label: "OAuth 2.0"
description: "Third-party auth flow"
- label: "No auth needed"
description: "Public API"
question: "How should API be documented?"
header: "Docs"
multiSelect: false
options:
- label: "OpenAPI/Swagger (auto-generated)"
description: "Generate from code"
- label: "OpenAPI (design-first)"
description: "Write spec first, then implement"
- label: "Markdown docs"
description: "Manual documentation"
- label: "GraphQL introspection"
description: "Self-documenting schema"
| Category | Methodology | File |
|---|---|---|
| REST APIs | ||
| REST API design | RESTful principles, resource design | api-rest-design.md |
| REST API design alt | REST patterns and best practices | rest-api-design.md |
| GraphQL | ||
| GraphQL API basics | Schema, queries, mutations | api-graphql.md |
| GraphQL API design | Schema design, resolvers, federation | graphql-api-design.md |
| GraphQL API alt | GraphQL patterns | graphql-api.md |
| OpenAPI | ||
| OpenAPI spec | OpenAPI 3.x specification | api-openapi-spec.md |
| OpenAPI specification | Spec writing, code generation | openapi-specification.md |
| API Patterns | ||
| Contract-first API | Schema-first development | api-contract-first.md |
| Contract-first development | API-first approach | contract-first-development.md |
| API versioning | Version strategies (URL, header, media type) | api-versioning.md |
| API error handling | Error codes, error responses | api-error-handling.md |
| API authentication | OAuth 2.0, JWT, API keys | api-authentication.md |
| API rate limiting | Rate limiting strategies | api-rate-limiting.md |
| Rate limiting | Throttling patterns | rate-limiting.md |
| API gateway patterns | Gateway design, BFF pattern | api-gateway-patterns.md |
| API monitoring | Metrics, logging, tracing | api-monitoring.md |
| Testing & Docs | ||
| API testing | Integration testing, contract testing | api-testing.md |
| API documentation | API docs, Swagger UI | api-documentation.md |
| Sub-skill | Relationship |
|---|---|
| faion-python-developer | Django REST Framework, FastAPI |
| faion-javascript-developer | Express, Fastify, GraphQL |
| faion-backend-developer | API implementation in Go, Java, etc. |
| faion-testing-developer | API testing strategies |
Invoked by parent skill faion-software-developer for API design and implementation work.
Required Context:
Decision Tree:
Start
├── Resources/entities clear?
│ └── NO → faion-ba-modeling (data-analysis) first
├── Consumers defined?
│ └── NO → faion-product-manager (stakeholder-analysis)
├── Auth requirements?
│ └── NO → See api-authentication.md
└── YES to all → Proceed with REST design
If Missing:
| Context | Skill/Methodology |
|---|---|
| Data model | faion-ba-modeling → data-analysis |
| Security needs | faion-software-architect → security-architecture |
| Consumer requirements | faion-product-manager → product-operations |
Required Context:
Decision Tree:
Start
├── Complex relationships?
│ └── NO → Consider REST instead (simpler)
├── Multiple clients with different needs?
│ └── NO → REST may be sufficient
├── Need real-time subscriptions?
│ └── YES → GraphQL with subscriptions
└── Proceed with GraphQL
If Missing:
| Context | Skill/Methodology |
|---|---|
| Data relationships | faion-ba-modeling → data-analysis |
| Query optimization | faion-backend-systems → database-optimization |
| Frontend needs | faion-frontend-developer |
Required Context:
Decision Tree:
Start
├── Third-party login needed?
│ └── YES → OAuth 2.0 / OIDC
├── Service-to-service?
│ └── YES → API keys or mTLS
├── Need stateless?
│ └── YES → JWT tokens
├── Need session management?
│ └── YES → Session-based auth
└── Simple internal API → API keys
If Missing:
| Context | Skill/Methodology |
|---|---|
| Security requirements | faion-software-architect → security-architecture |
| Compliance needs | faion-devops-engineer → security-compliance |
| User types | faion-ba-core → stakeholder-analysis |
Required Context:
Decision Tree:
Start
├── Public API with external clients?
│ └── YES → URL versioning (/v1/) recommended
├── Internal services only?
│ └── YES → Header versioning or no versioning
├── GraphQL?
│ └── YES → Schema evolution, no versioning needed
└── Frequent breaking changes → Media type versioning
If Missing:
| Context | Skill/Methodology |
|---|---|
| API consumers | faion-product-manager → stakeholder-analysis |
| Deprecation policy | faion-sdd-planning → spec-writing |
Required Context:
Decision Tree:
Start
├── Multi-tenant SaaS?
│ └── YES → Per-tenant rate limits
├── Public API?
│ └── YES → Tiered rate limiting
├── Internal only?
│ └── Consider circuit breakers instead
└── Define limits: requests/minute/hour/day
If Missing:
| Context | Skill/Methodology |
|---|---|
| Traffic analysis | faion-software-architect → performance-architecture |
| Pricing tiers | faion-product-manager → product-planning |
| Infrastructure | faion-devops-engineer → infrastructure |
Required Context:
Decision Tree:
Start
├── Public API?
│ └── YES → RFC 7807 Problem Details
├── Internal API?
│ └── Consistent error schema
├── Need debugging info?
│ └── DEV only, never in production
└── Always: structured errors, proper HTTP codes
If Missing:
| Context | Skill/Methodology |
|---|---|
| Error categories | faion-ba-core → requirements-analysis |
| Monitoring | faion-software-architect → observability-architecture |
Required Context:
Decision Tree:
Start
├── Design-first approach?
│ └── YES → Write OpenAPI first, generate code
├── Code-first approach?
│ └── YES → Generate OpenAPI from code
├── Need code generation?
│ └── YES → Ensure strict typing in spec
└── OpenAPI 3.1 recommended (JSON Schema)
If Missing:
| Context | Skill/Methodology |
|---|---|
| Endpoint design | api-rest-design.md |
| Data schemas | faion-ba-modeling → data-analysis |
Required Context:
Decision Tree:
Start
├── Need bidirectional?
│ └── NO → Consider SSE instead
├── High frequency updates?
│ └── YES → WebSocket with batching
├── Many concurrent connections?
│ └── YES → Consider dedicated WS server
└── Define: connect, message, disconnect flows
If Missing:
| Context | Skill/Methodology |
|---|---|
| Real-time requirements | faion-ba-core → requirements-analysis |
| Scale architecture | faion-software-architect → distributed-patterns |
| Infrastructure | faion-devops-engineer → infrastructure |
Required Context:
Decision Tree:
Start
├── Single backend service?
│ └── NO → Consider API gateway
├── Multiple client types with different needs?
│ └── YES → BFF pattern (Backend for Frontend)
├── Need aggregation across services?
│ └── YES → Gateway with composition
└── Cross-cutting: auth, rate limiting, caching
If Missing:
| Context | Skill/Methodology |
|---|---|
| Service architecture | faion-software-architect → microservices-architecture |
| Client requirements | faion-frontend-developer, faion-product-manager |
Required Context:
Decision Tree:
Start
├── Contract testing needed?
│ └── YES → Use Pact or similar
├── Integration tests?
│ └── YES → Test against real/mock server
├── Performance testing?
│ └── YES → Load testing with k6, Artillery
└── Minimum: contract + integration tests
If Missing:
| Context | Skill/Methodology |
|---|---|
| API contracts | api-openapi-spec.md |
| Testing strategy | faion-testing-developer → integration-testing |
| CI/CD | faion-cicd-engineer → ci-cd-pipelines |
Required Context:
Decision Tree:
Start
├── SLOs defined?
│ └── NO → Define first (faion-software-architect)
├── Distributed system?
│ └── YES → Need distributed tracing
├── Need business metrics?
│ └── YES → Custom metrics + dashboards
└── Minimum: latency, errors, throughput (RED)
If Missing:
| Context | Skill/Methodology |
|---|---|
| SLOs | faion-software-architect → quality-attributes |
| Observability | faion-software-architect → observability-architecture |
| Alerting | faion-cicd-engineer → monitoring-alerting |
faion-api-developer v1.1 | 19 methodologies | Context-aware
| Real-time |
| WebSocket design | WebSocket patterns, real-time APIs | websocket-design.md |