Claude Code Plugins

Community-maintained marketplace

Feedback

Use when creating or modifying API endpoints. Provides REST conventions and error handling patterns for this project.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name api-patterns
description Use when creating or modifying API endpoints. Provides REST conventions and error handling patterns for this project.

API Patterns for Pet Adoption Center

Endpoint Conventions

  • GET /pets - List all pets
  • GET /pets/{id} - Get single pet
  • POST /pets - Create pet
  • PUT /pets/{id} - Update pet
  • DELETE /pets/{id} - Delete pet

Response Format

Always return JSON with this structure:

{
    "success": True,
    "data": {...},
    "error": None
}

Error Handling

Use HTTP status codes:

  • 200: Success
  • 201: Created
  • 400: Bad request
  • 404: Not found
  • 500: Server error

Example Endpoint

@app.route('/pets', methods=['GET'])
def list_pets():
    try:
        pets = Pet.query.all()
        return jsonify(success=True, data=[p.to_dict() for p in pets])
    except Exception as e:
        return jsonify(success=False, error=str(e)), 500