From kibana-dev-workflow-tools
Runs eslint --fix on changed files before committing or pushing to prevent CI auto-fix commits. Use before git commit, git push, or when the user asks to lint, format, or align code with eslint.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kibana-dev-workflow-tools:kibana-eslint-prepushThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run eslint on changed files before committing/pushing to avoid CI auto-fix commits that require re-triggering the pipeline.
Run eslint on changed files before committing/pushing to avoid CI auto-fix commits that require re-triggering the pipeline.
git commit or git pushnode scripts/eslint --fix $(git diff --name-only HEAD) $(git diff --cached --name-only)
node scripts/eslint_all_files --no-cache --fix and auto-pushes a commit if it finds issues. This commit does NOT re-trigger CI on draft PRs, requiring a manual /ci comment.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub patrykkopycinski/patryks-treadmill-claude-plugins --plugin kibana-dev-workflow-tools