con un clic
linter
Linter Guidelines
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Linter Guidelines
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Manages AI agent context window usage - truncation rules, clear truncation markers, and tools for chunked reading or search. Use when building or modifying agent context, system prompts, user messages, or tools that inject large content into the LLM.
Code Quality Best Practices
Caido Backend SDK Rules and Patterns
Caido Frontend SDK Rules and Patterns
Caido HTTP Proxy Overview
Vue component structure, PrimeVue, and script setup conventions
| name | linter |
| description | Linter Guidelines |
We have a built-in ESLint linter configured at the root folder.
After making any significant change, always run the validation tests with mise run validate and fix all potential issues.
To prevent this, when comparing strings, instead of writing:
if (!str) {}
do this:
if (str !== undefined) {}