{"files":{"SKILL.md":"---\nname: api-v1\ndescription: \"API V1 API skill. Use when working with API V1 for api. Covers 3 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# API V1\nAPI version: v1\n\n## Auth\nApiKey apiKey in header\n\n## Base URL\nhttps://www.versioneye.com\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /api/v1/scans -- verify access\n\n## Endpoints\n\n3 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### api\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /api/v1/scans | Retrieves all scans |\n| GET | /api/v1/scans/{id} | Retrieves a project scan result |\n| GET | /api/v1/scans/{id}/files/{file_id} | Retrieves a file object, containing information about dependencies in the file |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all scans?\" -> GET /api/v1/scans\n- \"Get scan details?\" -> GET /api/v1/scans/{id}\n- \"Get file details?\" -> GET /api/v1/scans/{id}/files/{file_id}\n- \"How to authenticate?\" -> See Auth section\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- List endpoints may support pagination; check for limit, offset, or cursor params\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get api-v1 -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search api-v1\n```\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 API V1\n@base https://www.versioneye.com\n@version v1\n@auth ApiKey apiKey in header\n@endpoints 3\n@toc api(3)\n\n@endpoint GET /api/v1/scans\n@desc Retrieves all scans\n@optional {name: str, per_page: str}\n@returns(200) scans found\n@errors {404: scans not found}\n\n@endpoint GET /api/v1/scans/{id}\n@desc Retrieves a project scan result\n@required {id: str}\n@returns(200) scan found\n@errors {404: scan not found}\n\n@endpoint GET /api/v1/scans/{id}/files/{file_id}\n@desc Retrieves a file object, containing information about dependencies in the file\n@required {id: str, file_id: str}\n@optional {per_page: str}\n@returns(200) file found\n@errors {404: file not found}\n\n@end\n"}}