API Integration Helper
Installation
SKILL.md
Usage Examples
Endpoint Mapping
from scripts.endpoint_mapper import EndpointMapper
mapper = EndpointMapper()
endpoints = mapper.analyze_fastapi_code("""
@app.get('/users/{id}')
@app.post('/users')
""")
print(f"Found {len(endpoints)} endpoints")
Schema Validation
from scripts.schema_validator import SchemaValidator