بنقرة واحدة
lint
Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes.
Scaffold a new custom SKILL.md file interactively. Use when asked to create a new skill or slash command.
Create or switch to a feature branch, typically tied to a GitHub issue. Use when asked to create a branch or start work on an issue.
Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues.
Create, review, or manage GitHub pull requests. Use when asked to open, check, or merge a PR.
Run the project test suite and surface failures. Use when asked to run tests or check test status.
| name | lint |
| description | Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors. |
| allowed-tools | Bash |
Lint this project.
Lint script detection: !{cat package.json 2>/dev/null | python3 -c "import sys,json; s=json.load(sys.stdin).get('scripts',{}); print('\n'.join(f'{k}: {v}' for k,v in s.items() if 'lint' in k or 'format' in k))" 2>/dev/null || echo "(no package.json lint script found)"}
Task: $ARGUMENTS
Steps:
npm run lint / npm run lint:fixruff check . / ruff check --fix .golangci-lint runDo not modify files without explicit instruction to fix.