con un clic
con un clic
Run a Coder PR dogfood instance: inspect PR context, check out the right branch or stack, start Coder with scripts/develop.sh using agent-safe dev-instance practices, validate the changed functionality with UI evidence when needed, and report findings.
Guide for creating, updating, and following up on pull requests in the Coder repository. Use when asked to open a PR, update a PR, rewrite a PR description, or follow up on CI/check failures.
Use this skill when a repository already has an open pull request and you need to run the Coder Agents Review loop: request review with `/coder-agents-review` when needed, wait for feedback from the `coder-agents-review` GitHub app, fix issues, and repeat until the app comments `approved`.
Multi-reviewer code review. Spawns domain-specific reviewers in parallel, cross-checks findings, posts a single structured GitHub review.
Iteratively refine development plans using TDD methodology. Ensures plans are clear, actionable, and include red-green-refactor cycles with proper test coverage.
Reviews code changes for bugs, security issues, and quality problems
| name | doc-check |
| description | Checks if code changes require documentation updates |
Review code changes and determine if documentation updates or new documentation is needed.
Get the code changes - Use the method provided in the prompt, or if none specified:
gh pr diff <PR_NUMBER> --repo coder/codergit diff main or git diff --stagedgit diff main...<branch>Understand the scope - Consider what changed:
Search the docs for related content in docs/
Decide what's needed:
Report findings - Use the method provided in the prompt, or if none specified, summarize findings directly
(Premium) in the title?docs/manifest.json - Navigation structure; new pages MUST be added heredocs/reference/cli/*.md - Auto-generated from Go code, don't edit directly(Premium) suffixUse GitHub-Flavored Markdown alerts:
> [!NOTE]
> Additional helpful information.
> [!WARNING]
> Important warning about potential issues.
> [!TIP]
> Helpful tip for users.
CLI docs in docs/reference/cli/ are auto-generated. Don't suggest editing them
directly. Instead, changes should be made in the Go code that defines the CLI
commands (typically in cli/ directory).
Use sh for shell commands:
coder server --flag-name value