← ClaudeAtlas

crossfirelisted

Get multi-model perspectives (Codex + Gemini) on any work product. Use at any development stage — planning, design, implementation, testing — to catch blind spots the primary agent might miss.
wpfleger96/ai-agent-rules · ★ 2 · AI & Automation · score 74
Install: claude install-skill wpfleger96/ai-agent-rules
## Context - Arguments: `${ARGS}` (optional: artifact type, file path, or review focus question) - Main repo root: !`sh -c 'COMMON=$(git rev-parse --path-format=absolute --git-common-dir 2>/dev/null) && dirname "$COMMON" || echo "NOT_IN_GIT_REPO"'` - Current branch: !`git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "NO_BRANCH"` - Uncommitted changes: !`git status --porcelain 2>/dev/null | wc -l | xargs` - PLAN files: !`sh -c 'COMMON=$(git rev-parse --path-format=absolute --git-common-dir 2>/dev/null); if [ -z "$COMMON" ]; then exit 0; fi; PROJECT_ROOT=$(dirname "$COMMON"); cd "$PROJECT_ROOT" && for f in PLAN__*.md; do [ -f "$f" ] && echo "$f"; done' 2>/dev/null | head -5` # Run Crossfire Review Detect what to review from `${ARGS}` using the Artifact Detection rules below, then proceed immediately to Orchestration. ## Artifact Detection Parse `${ARGS}` to determine what to review. Check in this order: ### 1. Explicit Artifact Type If args contain a recognized keyword, use that: | Keyword | Artifact | How to gather | |---------|----------|---------------| | `plan` | Most recent PLAN file | Read the newest `PLAN__*.md` file from the main repo root | | `diff` | Current code changes | `git diff` (unstaged), then `git diff --cached` (staged), then `git diff origin/$(git symbolic-ref --short HEAD)..HEAD` (unpushed) — use first non-empty | | `tests` | Test files | Identify recently modified test files via `git diff --name-only` filtered to test patterns | ### 2. Explicit