Agent skill
api-conventions
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/api-conventions
SKILL.md
API Conventions Skill
REST API patterns for cl-n8n-mcp.
Endpoints
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | / |
No | Server info |
| GET | /health |
No | Health check |
| GET | /stats |
API Key | Usage stats |
| POST | /mcp |
Yes | MCP endpoint |
| DELETE | /mcp |
Yes | Terminate session |
Authentication
Multi-Tenant Headers
x-n8n-url: https://n8n.example.com
x-n8n-key: n8n_api_key_here
SaaS API Key (wrapper)
Authorization: Bearer n2f_xxxxxxxxxxxxx
Response Format
Success
{
"success": true,
"data": { ... }
}
Error
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded"
}
}
Rate Limit Headers
X-RateLimit-Limit: 50
X-RateLimit-Remaining: 45
X-RateLimit-Reset: 1704067200
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?