architecture
01Cursor rule Cursor
Architecture of openapi-to-cli (ocli).
12 tagged swagger, measured the same way as everything else here.
Browse within: openapi 11rest-api 6typescript 6api-proxy 5nodejs 5
Cursor rule Cursor
Architecture of openapi-to-cli (ocli).
Cursor rule Cursor
Code style for openapi-to-cli (TypeScript).
Cursor rule Cursor
Test conventions for openapi-to-cli (Jest).
ruaan-deysel/unraid-management-agent
Cursor rule Cursor
Read AGENTS.md in the project root for comprehensive instructions.
Cursor rule Cursor
You MUST import @std dependencies from jsr You MUST use latest versions of libraries when adding imports You must use type keyword when importing types.
sotayamashita/openapi-mcp-server
Cursor rule Cursor
When asked, to create a commit.
sotayamashita/openapi-mcp-server
Cursor rule Cursor
It allows a subset of JSDoc tags. Most tags must occupy their own line, with the tag at the beginning of the line.
aaydin-tr/swagger-navigator-mcp
Cursor rule Cursor
The Swagger Navigator MCP is a Model Context Protocol server for intelligent discovery and search of Swagger/OpenAPI endpoints.
aaydin-tr/swagger-navigator-mcp
Cursor rule Cursor
Cursor rule "testing-standards" from aaydin-tr/swagger-navigator-mcp, covering testing standards, test structure, coverage requirements, test organization and mocking guidelines.
aaydin-tr/swagger-navigator-mcp
Cursor rule Cursor
// Good: Typed error handling function loadConfig(): Config { try { // ... loading logic } catch (error) { if (error instanceof yaml.YAMLException) { throw new Error(Invalid YAML in configuration file: ${error.message}); } throw error; } }.