{"files":{"SKILL.md":"---\nname: quickchart-api\ndescription: \"QuickChart API skill. Use when working with QuickChart for chart, qr. Covers 4 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# QuickChart API\nAPI version: 1.0.0\n\n## Auth\nApiKey key in query\n\n## Base URL\nhttps://quickchart.io\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /chart -- generate a chart (get)\n3. POST /chart -- create first chart\n\n## Endpoints\n4 endpoints across 2 groups. See references/api-spec.lap for full details.\n\n### Chart\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /chart | Generate a chart (GET) |\n| POST | /chart | Generate a chart (POST) |\n\n### Qr\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /qr | Generate a QR code (GET) |\n| POST | /qr | Generate a QR code (POST) |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all chart?\" -> GET /chart\n- \"Create a chart?\" -> POST /chart\n- \"List all qr?\" -> GET /qr\n- \"Create a qr?\" -> POST /qr\n- \"How to authenticate?\" -> See Auth section above\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints return the modified resource on success\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api QuickChart API\n@base https://quickchart.io\n@version 1.0.0\n@auth ApiKey key in query\n@endpoints 4\n@toc chart(2), qr(2)\n\n@group chart\n@endpoint GET /chart\n@desc Generate a chart (GET)\n@optional {chart: str # The chart configuration in Chart.js format (JSON or Javascript)., width: int # The width of the chart in pixels., height: int # The height of the chart in pixels., format: str # The output format of the chart, 'png', 'jpg', 'svg', or 'webp'., backgroundColor: str # The background color of the chart., key: str # QuickChart API key}\n@returns(200) A generated chart image.\n\n@endpoint POST /chart\n@desc Generate a chart (POST)\n@optional {chart: map # The chart configuration in Chart.js format (JSON or Javascript)., width: int # The width of the chart in pixels., height: int # The height of the chart in pixels., format: str # The output format of the chart, 'png', 'jpg', 'svg', or 'webp'., backgroundColor: str # The background color of the chart., key: str # QuickChart API key}\n@returns(200) A generated chart image.\n\n@endgroup\n\n@group qr\n@endpoint GET /qr\n@desc Generate a QR code (GET)\n@optional {text: str # The text to be encoded in the QR code., width: int # The width of the QR code in pixels., height: int # The height of the QR code in pixels., format: str # The output format of the QR code, e.g., 'png' or 'svg'., margin: int # The margin around the QR code in pixels., key: str # QuickChart API key}\n@returns(200) A generated QR code image.\n\n@endpoint POST /qr\n@desc Generate a QR code (POST)\n@optional {text: str # The text to be encoded in the QR code., width: int # The width of the QR code in pixels., height: int # The height of the QR code in pixels., format: str # The output format of the QR code, e.g., 'png' or 'svg'., margin: int # The margin around the QR code in pixels., key: str # QuickChart API key}\n@returns(200) A generated QR code image.\n\n@endgroup\n\n@end\n"}}