ワンクリックで
code-linting
Run linters according to repository guidelines. Use immediately after creating or modifying code, or before committing changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run linters according to repository guidelines. Use immediately after creating or modifying code, or before committing changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | code-linting |
| description | Run linters according to repository guidelines. Use immediately after creating or modifying code, or before committing changes. |
Run all appropriate linters according to repository guidelines.
Use this skill:
Don't use:
First look for linting commands in the following order:
CLAUDE.md, .cursorrules, .ai-rules,
AGENTS.md, AGENT.md, GEMINI.md, and similar)README.md, docs/, etc.)package.json, Makefile, pyproject.toml, etc.)If no linting guidelines are found or they are unclear, ask the user for clarification.
# JavaScript/TypeScript
npm run lint
yarn run lint
pnpm run lint
npx eslint .
# Python
ruff check .
pylint .
flake8 .
black --check .
make lint
# Shell
shellcheck .
# Multiple/Generic
npm run format
yarn run format
pnpm run format
For each linter found:
prettier, eslint --fix, black, ruff check --fix), run that firstCRITICAL: Do NOT ignore unfixed issues!
Report results organized by:
If all linting passes, simply confirm: "All linters passed."
Review all unreviewed documents in Hubdoc. Use when reviewing, processing or publishing Hubdoc receipts and bills.
Use the Xero MCP server — obtain/refresh OAuth2 bearer tokens, troubleshoot authentication, and pick up other operational notes for working with Xero MCP tools. Use when Xero MCP tools fail with authentication errors, when the bearer token has expired (tokens last ~30 min), before starting any Xero workflow, or for general guidance on Xero MCP usage.
Size the agent-browser Chromium window to fill its current screen, leaving a configurable bottom margin for the desktop panel. Use before any agent-browser automation that needs the full screen visible without elements overlapping or scrolling off (e.g. Xero, dense web apps).
General Xero browser automation notes. Use when automating any Xero page with agent-browser — covers non-standard UI patterns, waiting, and dropdown menus.
Convert XLSX spreadsheets (single or multi-sheet) to CSV files you can read and grep. Use whenever you need to process an .xlsx report from Xero, Cryptio, bank exports, or any tool that delivers spreadsheet output.
Create Claude Code slash commands, OpenCode command files, and Pi prompt templates that delegate to the right subagent or skill. Use when creating new commands or refactoring existing ones to follow platform conventions.