com um clique
apis-sdks
Understanding APIs and building/maintaining SDKs for developer experience
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Understanding APIs and building/maintaining SDKs for developer experience
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Developer relations career development, growth paths, and professional advancement
Effective communication strategies for developer audiences across channels
Building and nurturing thriving developer communities
Creating compelling technical content for developer audiences
Planning and executing developer events, conferences, and meetups
Measuring and demonstrating DevRel impact through data and analytics
| name | apis-sdks |
| description | Understanding APIs and building/maintaining SDKs for developer experience |
| sasmp_version | 1.4.0 |
| version | 2.0.0 |
| updated | 2025-01 |
| bonded_agent | 04-technical-writer |
| bond_type | SECONDARY_BOND |
Master API design and SDK development to improve developer experience.
parameters:
required:
- artifact_type: enum[api_docs, sdk, code_sample, reference]
- language: string
optional:
- api_spec: object
- version: string
output:
deliverable:
code: string
documentation: markdown
tests: array[TestCase]
GET /users # List users
GET /users/:id # Get single user
POST /users # Create user
PUT /users/:id # Update user (full)
PATCH /users/:id # Update user (partial)
DELETE /users/:id # Delete user
| Code | Meaning | Use When |
|---|---|---|
| 200 | OK | Successful GET/PUT/PATCH |
| 201 | Created | Successful POST |
| 204 | No Content | Successful DELETE |
| 400 | Bad Request | Invalid input |
| 401 | Unauthorized | Missing/invalid auth |
| 403 | Forbidden | Insufficient permissions |
| 404 | Not Found | Resource doesn't exist |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Server Error | Something broke |
# Python SDK - Pythonic
client = AcmeClient(api_key="...")
users = client.users.list(limit=10)
# JavaScript SDK - Modern JS
const client = new AcmeClient({ apiKey: "..." });
const users = await client.users.list({ limit: 10 });
SDK
├── Authentication handling
├── Request/response serialization
├── Error handling
├── Pagination helpers
├── Rate limit handling
├── Retry logic
├── Logging/debugging
└── Type definitions
| Section | Purpose |
|---|---|
| Quickstart | First API call in 5 min |
| Authentication | How to authenticate |
| Endpoints | Complete reference |
| Errors | Error codes and handling |
| Rate limits | Usage limits |
| Changelog | Version history |
## Get User
`GET /users/:id`
Returns a user by their ID.
### Parameters
| Name | Type | Required | Description |
|------|------|----------|-------------|
| id | string | Yes | The user ID |
### Response
```json
{
"id": "usr_123",
"email": "user@example.com",
"name": "Jane Doe"
}
404 - User not found401 - Invalid API key
## DevRel API Responsibilities
- Advocate for developer-friendly design
- Create and maintain SDKs
- Write API documentation
- Gather feedback on DX issues
- Support developers using APIs
## Retry Logic
```yaml
retry_patterns:
api_error_500:
strategy: "Exponential backoff with jitter"
max_retries: 3
rate_limit_429:
strategy: "Wait for retry-after header"
fallback: "Exponential backoff"
timeout:
strategy: "Retry with increased timeout"
fallback: "Return partial data"
| Failure Mode | Detection | Recovery |
|---|---|---|
| API breaking change | Tests fail | Update SDK, notify users |
| SDK version mismatch | Compatibility errors | Align versions |
| Missing docs | Support tickets | Add documentation |
□ API spec up to date?
□ SDK matches API version?
□ Error handling complete?
□ Rate limiting documented?
□ Authentication working?
□ Examples tested?
test_apis_sdks:
unit_tests:
- test_api_endpoints:
assert: "All endpoints respond"
- test_sdk_methods:
assert: "Match API capabilities"
integration_tests:
- test_end_to_end:
assert: "Full flow works"
metrics:
- sdk_downloads: integer
- api_calls: integer
- error_rate: float
- latency_p99: duration
See assets/ for SDK templates.