Explores the Okteto CLI codebase to answer research questions without touching the main context window. Pre-loaded with architectural landmarks. Use for planning features, finding similar implementations, tracing call paths.
npx ai-builder add agent okteto/exploreWrites a GitHub PR description for the current branch using the repo's pull_request_template.md. Reads the branch diff and commit history, fills every section of the template, then creates or updates the PR with gh CLI.
npx ai-builder add agent okteto/pr-writerReviews a GitHub PR by number. Fetches the diff, applies all diff-reviewer code checks plus PR-level concerns. Ends with APPROVE / REQUEST CHANGES / NEEDS DISCUSSION.
npx ai-builder add agent okteto/review-prCaptures CLI behavior by running a command and saving its output. Used twice in the bug-fix workflow: before the fix (saves "before" snapshot) and after (saves "after" snapshot and diffs the two). Confirms a bug is reproducible and later proves it is resolved.
npx ai-builder add agent okteto/reproducerPre-commit verifier. Runs make test then make lint, returns a structured pass/fail table. Also runs tools/ lint if changes are in tools/. Delegate to this after completing code changes.
npx ai-builder add agent okteto/verifyStages and commits local changes as one or more atomic conventional commits. Groups related changes by logical unit, writes a conventional commit message per group, and signs each commit (DCO). Never squashes unrelated changes into one commit.
npx ai-builder add agent okteto/committer