Claudecode-Codex-Gemini: Command for Claude Code

.claude/commands/kim-team.md

kim-team is a command for Claude Code from KimYx0207/Claudecode-Codex-Gemini. It costs 30 tokens per session (2,308 once invoked), scanned A, original, MIT.

A command that coordinates Claude and Codex to analyze a software request and generate code, while skipping the separate review stage. It is a shorter version of a multi-AI development workflow.

In plain words
What is it for?
Use it for rapid feature development and prototype work, such as login flows, token refresh, or permission systems.
Why use it?
It provides a quicker path from a development request to generated code when a review pass is not needed. The work is still organized into a requirements stage and a code-generation stage.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

This is KimYx0207/Claudecode-Codex-Gemini's own configuration. It tells Claude Code how to work on Claudecode-Codex-Gemini itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Claudecode-Codex-Gemini configures →

Reuse

Borrowing it

Nothing to install: this file belongs to KimYx0207/Claudecode-Codex-Gemini. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/KimYx0207/Claudecode-Codex-Gemini/main/.claude/commands/kim-team.md
Clone the repo
git clone --depth 1 https://github.com/KimYx0207/Claudecode-Codex-Gemini

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kim-team

README.md
[![agentmods](https://agentmods.dev/badge/commands/kimyx0207/claudecode-codex-gemini/kim-team/github.svg)](https://agentmods.dev/commands/kimyx0207/claudecode-codex-gemini/kim-team)
Your own site
<a href="https://agentmods.dev/commands/kimyx0207/claudecode-codex-gemini/kim-team"><img src="https://agentmods.dev/badge/commands/kimyx0207/claudecode-codex-gemini/kim-team/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kim-team

Your own site · 80×15
<a href="https://agentmods.dev/commands/kimyx0207/claudecode-codex-gemini/kim-team"><img src="https://agentmods.dev/badge/commands/kimyx0207/claudecode-codex-gemini/kim-team.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,308 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.02308
Opus 5 $0.00015 $0.01154
Sonnet 5 $0.00006 $0.00462
Haiku 4.5 $0.00003 $0.00231

Measured 9d ago against content hash 5d02bf0643a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

kim-team scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/kim-team.md · 274 lines

How it starts

The opening of the file, as written. The whole thing — 274 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kim团队协作命令(基于MCP)

公众号:老金带你玩AI | 微信:xun900207 | 备注AI加入AI交流群

你现在要协调3个AI工具完成任务:$ARGUMENTS

重要:本命令使用MCP Server封装的Codex和Gemini工具,而不是直接调用bash命令。

⚠️ 文件写入规则(必须遵守)

Claude Code的Write工具要求:写入文件前必须先读取它。对于新文件,使用以下3步模式:

# 创建新文件的标准流程:
1. 用 Bash 创建目录和空文件:mkdir -p 目录 && echo "" > 文件路径
2. 用 Read 读取该文件
3. 用 Write 写入实际内容

示例

# 步骤1:创建目录和空文件
mkdir -p .kim-orchestrator && echo "" > .kim-orchestrator/phase1_requirements.json

# 步骤2:Read 读取文件(必须)
# 步骤3:Write 写入JSON内容

执行流程

阶段0.1:健康检查

参考 .claude/skills/kim-orchestrator/prompts/health-check.md 执行MCP健康检查。

在开始前检测MCP工具是否可用:

  1. 检测 mcp__codex__codex (代码生成必需)
  2. 检测 mcp__gemini__gemini (代码审查必需)

根据检测结果:

  • ✅ 全部可用 → 继续执行完整流程
  • ⚠️ Codex不可用 → 询问是否用Claude降级生成
  • ⚠️ Gemini不可用 → 询问是否跳过审查(等同/kim-code)
  • ❌ 全部不可用 → 显示修复指南,运行 /kim-setup

阶段0.2:初始化工作目录

在开始任何阶段前,先创建工作目录和所有需要的空文件:

mkdir -p .kim-orchestrator && echo "" > .kim-orchestrator/phase1_requirements.json && echo "" > .kim-orchestrator/phase2_code.md && echo "" > .kim-orchestrator/phase3_review.md && echo "" > .kim-orchestrator/result.md

然后依次读取这些文件(可并行):

  • Read .kim-orchestrator/phase1_requirements.json
  • Read .kim-orchestrator/phase2_code.md
  • Read .kim-orchestrator/phase3_review.md
  • Read .kim-orchestrator/result.md

阶段1:需求分析(你自己完成)

请详细分析用户的需求,输出JSON格式的技术方案,包含:

{
  "task_description": "任务描述",
  "features": ["功能1", "功能2", "..."],
  "tech_stack": {
    "language": "编程语言",
    "framework": "框架",
    "libraries": ["依赖库1", "依赖库2"]
  },
  "file_structure": {
    "files": [
      {"path": "文件路径", "purpose": "用途"}
    ]
  },
  "key_points": [
    "关键实现要点1",
    "关键实现要点2"
  ],
  "risks": [
    "潜在风险1",
    "潜在风险2"
  ]
}

将这个JSON保存到临时文件 .kim-orchestrator/phase1_requirements.json

阶段2:代码生成(调用Codex MCP Server)

使用MCP工具调用Codex生成代码。

重要:检查是否有 mcp__codex__codex 工具可用。如果没有,告诉用户:

⚠️ Codex MCP Server未配置!

请按照以下步骤配置:
1. 查看 mcp-servers/INSTALLATION.md 获取完整配置指南
2. 配置Claude Desktop的claude_desktop_config.json
3. 重启Claude Desktop

快速配置:参考 .kim-orchestrator/claude_desktop_config_complete.json

Read the full file on GitHub · 274 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 274 lines · 30 tokens per session scan A 5d02bf0643a3

Subscribe to this mod's changes

kim-team is a command published in the GitHub repository KimYx0207/Claudecode-Codex-Gemini (119 stars, last pushed 27d ago), licensed MIT. It adds 30 tokens to every session and 2,308 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.