con un clic
lint-and-fix
// Run make format and make lint, then fix linter violations. Use when formatting code or fixing trunk/lint issues.
// Run make format and make lint, then fix linter violations. Use when formatting code or fixing trunk/lint issues.
Technical project manager agent. Use proactively to synchronize repository work with GitHub Project boards.
Expert triage agent. Use proactively to categorize, label, and assign new issues.
Sets the active GitHub project and repository context by writing a repo-level config file at .github/project-config.json. Run once per repository to eliminate repeated context verification prompts and share the context with all team members via git. All subsequent agent sessions will auto-verify silently against this config.
Verifies the current GitHub authentication status and git remote against the repo-level config at .github/project-config.json. Proceeds silently when the environment matches the config. Alerts only when a mismatch is detected or no config exists. Use at the start of every session.
Comprehensive management of GitHub issues, including sub-issue hierarchies. Use to create, update, close, list, search, view, comment on, and manage parent-child relationships between issues in a single skill.
Implements new Agent Skills for the project. Identifies the AI coding tool (Cursor, Claude Code, Gemini CLI), ensures specification compliance, and provides specialized templates. Use when creating, authoring, or adding a new skill, or when the user asks about Agent Skills format or SKILL.md.
| name | lint-and-fix |
| description | Run make format and make lint, then fix linter violations. Use when formatting code or fixing trunk/lint issues. |
| compatibility | Requires trunk (make format, make lint). |
| metadata | {"pattern":"pipeline"} |
An autonomous loop to format the codebase, run linters, and fix any remaining violations until the project passes format and lint checks.
make format (trunk fmt).make lint to list current failures.make format and make lint.
make lint after fixes.Format and lint commands are defined in the project Makefile: make format runs trunk fmt -a; make lint runs trunk check -a -y.