Add debug, architect, and deep-research modes#844
Conversation
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: dbac8057bb
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| registry.registerBuiltinSkill(DEEP_RESEARCH_SKILL); | ||
| registry.registerBuiltinSkill(DEBUG_SKILL); | ||
| registry.registerBuiltinSkill(ARCHITECT_SKILL); |
There was a problem hiding this comment.
Add a changeset for the new built-in modes
These registrations expose /deep-research, /debug, and /architect as built-in skill slash commands through the existing skill command plumbing, so this is a user-visible CLI behavior change. The repo guide in /workspace/kimi-code/AGENTS.md requires a changeset for such changes, and without a .changeset/*.md entry the release PR will not bump or announce the affected publishable package.
Useful? React with 👍 / 👎.
Related Issue
Problem
The agent needs specialized modes to focus on specific tasks:
These modes guide the agent's behavior and help it stay focused on the intended objective.
What changed
Added three new built-in skills to enhance agent specialization:
Debug Mode (
debug.md,debug.ts)Architect Mode (
architect.md,architect.ts)Deep Research Mode (
deep-research.md,deep-research.ts)Registration (
index.ts)Checklist
gen-changesetsskill, or this PR needs no changesetgen-docsskill, or this PR needs no doc update