{"files":{"SKILL.md":"---\nname: uuid-generation-api\ndescription: \"UUID Generation API skill. Use when working with UUID Generation for uuid. Covers 3 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# UUID Generation API\nAPI version: 1.5\n\n## Auth\nApiKey X-Fungenerators-Api-Secret in header\n\n## Base URL\nhttps://api.fungenerators.com\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /uuid -- generate a random uuid (v4).\n3. POST /uuid -- create first uuid\n\n## Endpoints\n3 endpoints across 1 group. See references/api-spec.lap for full details.\n\n### Uuid\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /uuid | Generate a random UUID (v4). |\n| POST | /uuid | Parse a UUID string and return its version and check whether it is valid. |\n| GET | /uuid/version/{version} | Generate a random UUID (v4). |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all uuid?\" -> GET /uuid\n- \"Create a uuid?\" -> POST /uuid\n- \"Get version details?\" -> GET /uuid/version/{version}\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- Paginated endpoints accept limit/offset or cursor parameters\n- Create/update endpoints return the modified resource on success\n- Error responses include status codes and descriptions in the spec\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 UUID Generation API\n@base https://api.fungenerators.com\n@version 1.5\n@auth ApiKey X-Fungenerators-Api-Secret in header\n@endpoints 3\n@toc uuid(3)\n\n@endpoint GET /uuid\n@desc Generate a random UUID (v4).\n@optional {limit: int(integer) # Number of UUID's to generate (defaults to 1)}\n@returns(200) 200  response\n@errors {401: 401  response}\n\n@endpoint POST /uuid\n@desc Parse a UUID string and return its version and check whether it is valid.\n@required {uuidstr: str(string) # UUID String to parse}\n@returns(200) 200  response\n@errors {401: 401  response}\n\n@endpoint GET /uuid/version/{version}\n@desc Generate a random UUID (v4).\n@required {version: int(integer) # Version of the UUID spec to use. (0-5), Use '0' for nil (00000000-0000-0000-0000-000000000000) UUID.}\n@optional {limit: int(integer) # Number of UUID's to generate (defaults to 1), type: str(string) # For v3 and v5 of UUID Spec you can supply the type (dns/url/oid/x500/nil)., text: str(string) # For v3 and v5 of UUID Spec supply the text value for the type specified dns/url/oid/x500/nil. For example specify a dns/domain string if the type is \"dns\"}\n@returns(200) 200  response\n@errors {401: 401  response}\n\n@end\n"}}