agentsclimarketplace

Cross family review

Skill chf3198/megingjord-harness/skills/cross-family-review

AI agent governance harness: baton workflow, fleet LLM routing (Ollama/Claude/OpenRouter), and CI gates for Copilot, Claude Code, and Codex.

Install
npx -y skills add chf3198/megingjord-harness --skill cross-family-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Dispatch an adversarial cross-family review to a non-Anthropic fleet model. Enforces the cross-family independence contract (Epic #2511) at L1-L5 lifecycle points. Returns ACCEPT/PARTIAL/REJECT verdict + rationale.

SKILL.md

3.0 KB, as published. Nobody here has run it

Cross-Family Review Skill

Purpose

Dispatches to a non-Anthropic fleet model (Qwen via Ollama) and returns a structured verdict. Implements the cross-family independence contract: the reviewing model's AI family MUST differ from the implementing role's family.

Lifecycle Points

PointWhoWhenRequired?
L1ManagerPre-implementation orientationAdvisory
L2CollaboratorPre-COLLABORATOR_HANDOFFREQUIRED
L3AdminReceipt of COLLABORATOR_HANDOFFREQUIRED
L4ConsultantPre-CONSULTANT_CLOSEOUTREQUIRED
L5ManagerTier-2 anneal on repeated same-familyAdvisory

Use L2 before every COLLABORATOR_HANDOFF. L3 and L4 are CI-gated.

Invocation

# L2 — standard (7B fast, ~30-60s)
node scripts/global/fleet-red-team-dispatch.js \
  --artifact-type collaborator-handoff \
  --ticket <N> \
  --model qwen2.5-coder:7b

# L2 — high-stakes (32B, ~3-5 min)
node scripts/global/fleet-red-team-dispatch.js \
  --artifact-type collaborator-handoff \
  --ticket <N> \
  --model qwen2.5-coder:32b

# Direct curl (fallback when dispatcher unavailable)
curl -s -X POST http://100.91.113.16:11434/api/generate \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen2.5-coder:7b","prompt":"<review prompt>","stream":false}'

Model Routing (G3 fleet-first)

Dispatch order: 36gbwinresource (100.91.113.16)OpenClaw (100.78.22.13) → paid.

If all fleet nodes unavailable: record fleet_unavailable: true in handoff. Do NOT substitute a same-family model. Defer if needed (G6 degradation).

Required Output Fields

COLLABORATOR_HANDOFF (L2)

cross_family_reviewer: qwen2.5-coder:[email protected]
cross_family_rating: <N>/100
reviewer_family: qwen
cross_family_findings: <findings>

CONSULTANT_CLOSEOUT (L4)

cross_family_verdict: ACCEPT|PARTIAL|REJECT — <model@host> — <rationale>

Advisory vs. Blocking

  • L1, L5: advisory only (no CI gate).
  • L2: advisory in current soak; CI hard-gate after Epic #2511 C3 promotion.
  • L3: hard-gate via admin-gate in baton-gates.yml (reviewer_family_verified).
  • L4: advisory in current soak via GATE_ADVISORY_MODE=1; promote to blocking by unsetting GATE_ADVISORY_MODE in baton-gates.yml consultant-gate job.

Related

  • instructions/cross-family-review.instructions.md — canonical contract
  • scripts/global/megalint/signer-fidelity.jsextractAIFamily() (#2511 C1)
  • scripts/global/megalint/consultant-closeout.jscheckCrossFamilyVerdict()
  • .github/workflows/baton-gates.yml — consultant-gate advisory bridge (#2511 C3)

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.