用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jdeweedata/circletel --skill cross-model-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generate and edit images using OpenAI's gpt-image models (gpt-image-1 / gpt-image-2). Use as an alternative to the Gemini (Nano Banana) image path when the user asks for OpenAI image generation, or when comparing providers for a hero/product/social asset. Covers text-to-image, image editing, transparent backgrounds, and CircleTel brand context.
Generate images cost-effectively via OpenRouter (Seedream 4.5, FLUX.2, Recraft V4, etc.) as a cheaper alternative to OpenAI gpt-image. Use when the user wants low-cost image generation, a specific OpenRouter image model, or quality comparable to gpt-image-2 at a fraction of the price. Requires OPENROUTER_API_KEY in .env.local.
Filter and browse supplier catalogues (Scoop, Miro, Nology) to identify product candidates for CircleTel portfolio
正在显示 SKILL.md
基于 SOC 职业分类
| name | cross-model-review |
| description | Use another LLM (Codex, Gemini) to QA plans and implementations before committing |
| trigger | When starting multi-phase feature work or before merging significant PRs |
Use a second LLM (Codex CLI or Gemini) to review plans and implementations. This catches blind spots that a single model might miss.
┌─────────────────────────────────────────────────────────────┐
│ STEP 1: PLAN Claude Code │
│ ───────────── Plan Mode │
│ Open Claude Code in plan mode (Terminal 1). │
│ Claude interviews you via AskUserQuestion. │
│ Produces a phased plan with test gates. │
│ │
│ Output: .claude/plans/{feature-name}.md │
│ │
│ ▼ │
│ │
│ STEP 2: QA REVIEW Codex/Gemini │
│ ────────────────── Terminal 2 │
│ Open Codex CLI or Gemini in another terminal. │
│ Prompt: "Review this plan against the actual codebase. │
│ Insert 'Phase 2.5' if steps are missing. │
│ Add findings but never rewrite original phases." │
│ │
│ Output: .claude/plans/{feature-name}.md (with findings) │
│ │
│ ▼ │
│ │
│ STEP 3: IMPLEMENT Claude Code │
│ ────────────────── New Session │
│ Start fresh Claude Code session (Terminal 1). │
│ Implement phase-by-phase with test gates at each phase. │
│ │
│ ▼ │
│ │
│ STEP 4: VERIFY Codex/Gemini │
│ ──────────────── Terminal 2 │
│ Prompt: "Verify implementation against the plan. │
│ Flag any deviations or missing requirements." │
│ │
└─────────────────────────────────────────────────────────────┘
Review this implementation plan against the actual codebase:
[paste plan content]
Instructions:
1. Check if referenced files/functions exist
2. Check if the proposed approach matches existing patterns
3. Insert intermediate phases ("Phase 2.5") where steps are missing
4. Add "Codex Finding:" or "Gemini Finding:" headings for issues
5. DO NOT rewrite the original phases - only add to them
Verify this implementation against the original plan:
PLAN: [paste plan]
IMPLEMENTATION: [paste git diff or file changes]
Check for:
1. Missing requirements from the plan
2. Deviations from the agreed approach
3. Edge cases not handled
4. Tests that should exist but don't
Pattern extracted from shanraisshan/claude-code-best-practice