{"files":{"SKILL.md":"---\nname: va-forms\ndescription: \"VA Forms API skill. Use when working with VA Forms for forms. Covers 2 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# VA Forms\nAPI version: 0.0.0\n\n## Auth\nApiKey apikey in header\n\n## Base URL\nhttps://sandbox-api.va.gov/services/va_forms/v0\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /forms -- returns all va forms and their last revision date\n3. Explore available endpoints below\n\n## Endpoints\n2 endpoints across 1 group. See references/api-spec.lap for full details.\n\n### Forms\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /forms | Returns all VA Forms and their last revision date |\n| GET | /forms/{form_name} | Find form by form name |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"Search forms?\" -> GET /forms\n- \"Get form details?\" -> GET /forms/{form_name}\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- 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 VA Forms\n@base https://sandbox-api.va.gov/services/va_forms/v0\n@version 0.0.0\n@auth ApiKey apikey in header\n@endpoints 2\n@toc forms(2)\n\n@endpoint GET /forms\n@desc Returns all VA Forms and their last revision date\n@optional {query: any # Returns form data based on entered form name.}\n@returns(200) {data: [any]} # VA Forms index response\n@errors {401: Unauthorized, 429: Too many requests}\n\n@endpoint GET /forms/{form_name}\n@desc Find form by form name\n@required {form_name: str # The VA form_name of the form being requested. The exact form name must be passed, including proper placement of prefixes and/or hyphens.}\n@returns(200) {data: any} # VA Form Show response\n@errors {401: Unauthorized, 404: Not Found, 429: Too many requests}\n\n@end\n"}}