run-lint
Auto-detect project linter and run it. Internal utility skill used by feature-flow commands for the lint phase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Auto-detect project linter and run it. Internal utility skill used by feature-flow commands for the lint phase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Push current branch, create MR/PR on GitHub, GitLab, or Forgejo, wait for CI pipeline, merge, and clean up branch using auto-mr CLI
Detect repository hosting service (GitHub/GitLab/Forgejo) from git remote and extract owner/repo/project_path. Internal utility skill used by commands that need platform-aware routing.
Scaffold the Bulma CSS framework into a Go web app with embedded assets for zero-dependency binaries. Internal skill used by golang-pro agent when building HTML UIs with a classes-based CSS framework and no Node toolchain.
Manage Go tool dependencies using the tool directive (Go 1.24+). Use when a Go project needs code generation tools like sqlc, moq, templ, swag, or stringer managed as reproducible Go tool dependencies.
Integrate Charmbracelet gum for beautiful, TTY-safe terminal output in bash scripts. Internal skill used by bash-pro agent for interactive prompts, styled output, and structured logging.
Detect white box Go tests and propose conversion to black box tests (package foo_test). Internal skill used by golang-pro agent to enforce black box testing conventions.
| name | run-lint |
| description | Auto-detect project linter and run it. Internal utility skill used by feature-flow commands for the lint phase. |
| user-invocable | false |
| allowed-tools | Bash(task:*), Bash(make:*), Bash(golangci-lint:*), Bash(go:*), Bash(npm:*), Bash(npx:*), Bash(eslint:*), Bash(ruff:*), Bash(python:*), Bash(cargo:*), Glob |
Auto-detect the project's linter from build files and run it. Returns pass/fail status with output.
Probe for build/config files using first match wins:
| Trigger | Command | Fallback |
|---|---|---|
Taskfile.yml (lint task) | task lint | -- |
Makefile (lint target) | make lint | -- |
| go.mod | golangci-lint run ./... | go vet ./... |
package.json (lint script) | npm run lint | npx eslint . |
| pyproject.toml / setup.py | ruff check . | python -m flake8 . |
| Cargo.toml | cargo clippy -- -D warnings | -- |
| None detected | Warn: "No linter detected" and skip | -- |
--fix flag for the tool), re-run onceIf a working_directory context is provided (e.g., a worktree path), run all commands prefixed with cd <working_directory> &&. Otherwise, use the current directory.