ワンクリックで
linter
Linter Guidelines
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Linter Guidelines
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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) {}