agentic-loop
01Cursor rule Cursor
Vault agentic develop→validate loop — follow on every coding task.
10 tagged fuzzy search, measured the same way as everything else here.
Browse within: desktop-app 7file-explorer 7file-manager 7go 7golang 7
Cursor rule Cursor
Vault agentic develop→validate loop — follow on every coding task.
Cursor rule Cursor
Core file-system logic stays UI-agnostic; platform-specific quirks stay behind an adapter per OS.
Cursor rule Cursor
Git commit safety — commits are human-only; AI suggests, never executes.
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; } }.