بنقرة واحدة
model-selection
Get the LLM models for evolutions from the workspace agent subscription tier config
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Get the LLM models for evolutions from the workspace agent subscription tier config
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Inspect and analyze codebases using pygount for LOC counting, language breakdown, and code-vs-comment ratios. Use when asked to check lines of code, repo size, language composition, or codebase stats.
Set up GitHub authentication for the agent using git (universally available) or the gh CLI. Covers HTTPS tokens, SSH keys, credential helpers, and gh auth — with a detection flow to pick the right method automatically.
Production-grade PR review with execution-verified suggestions. Reads repository conventions, history, and security surfaces before reviewing. For every suggested fix, attempts to compile and test it in the sandbox — the comment includes proof. Modelled on GitHub Copilot's agentic architecture with one critical advantage: the sandbox is already running.
Create, manage, triage, and close GitHub issues. Search existing issues, add labels, assign people, and link to PRs. Works with gh CLI or falls back to git + GitHub REST API via curl.
Open and manage GitHub pull requests through Kai MCP tools — propose changes, monitor CI, iterate on failures, and merge. No git tokens are shared to the sandbox; every GitHub operation goes through the backend via the workspace's GitHub App installation.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
| name | model-selection |
| description | Get the LLM models for evolutions from the workspace agent subscription tier config |
| version | 2.0.0 |
| author | kai-agent |
| metadata | {"kai":{"tags":["kai","evolve","models","subscription","tier"]}} |
Evolution models are defined by the workspace's agent subscription tier config. Do NOT pick models yourself — the server enforces the tier's model list regardless of what you pass.
Call check_agent_subscription (in the budget category) to see the tier config:
activate_category("budget")
check_agent_subscription(workspaceId)
The response includes a models field:
{
"models": {
"evolve": ["anthropic/claude-sonnet-4.6", "openai/gpt-4.1"],
"security": { "root": "...", "analyzer": "...", "verifier": "..." },
"agent": "anthropic/claude-opus-4.6"
}
}
Use the models.evolve array in your config.llm.models when calling start_code_optimization. The server will override your choices with these models anyway, but passing them avoids confusion in logs.