Back to list
amiable-dev

council-verify

by amiable-dev

The LLM Council works together to answer your hardest questions

6🍴 3📅 Jan 24, 2026

SKILL.md


name: council-verify description: | Verify code, documents, or implementation against requirements using LLM Council multi-model deliberation. Use when you need multi-model consensus on correctness, completeness, or quality. Keywords: verify, check, validate, review, approve, pass/fail, consensus, multi-model

license: Apache-2.0 compatibility: "llm-council >= 2.0, mcp >= 1.0" metadata: category: verification domain: ai-governance council-version: "2.0" author: amiable-dev repository: https://github.com/amiable-dev/llm-council

allowed-tools: "Read Grep Glob mcp:llm-council/verify mcp:llm-council/audit"

Council Verification Skill

Use LLM Council's multi-model deliberation to verify work with structured, machine-actionable verdicts.

When to Use

  • Verify code changes before committing
  • Validate implementation against requirements
  • Check documents for accuracy and completeness
  • Get multi-model consensus on quality

Workflow

  1. Capture Snapshot: Capture current git diff or file state (snapshot pinning for reproducibility)
  2. Invoke Verification: Call mcp:llm-council/verify with isolated context
  3. Receive Verdict: Get structured JSON with verdict, confidence, and blocking issues
  4. Audit Trail: Persist transcript via mcp:llm-council/audit

Parameters

ParameterTypeDefaultDescription
rubric_focusstringnullFocus area: "Security", "Performance", "Accessibility"
confidence_thresholdfloat0.7Minimum confidence for PASS verdict
snapshot_idstringrequiredGit commit SHA for reproducibility

Output Schema

{
  "verdict": "pass|fail|unclear",
  "confidence": 0.85,
  "rubric_scores": {
    "accuracy": 8.5,
    "completeness": 7.0,
    "clarity": 9.0,
    "conciseness": 8.0
  },
  "blocking_issues": [...],
  "rationale": "Chairman synthesis...",
  "transcript_location": ".council/logs/..."
}

Exit Codes (for CI/CD)

  • 0: PASS - Approved with confidence >= threshold
  • 1: FAIL - Rejected
  • 2: UNCLEAR - Confidence below threshold, requires human review

Example Usage

# Verify current changes
council-verify --snapshot $(git rev-parse HEAD) --rubric-focus Security

# Verify specific files
council-verify --target-paths "src/auth.py,src/api.py" --snapshot abc123

Progressive Disclosure

  • Level 1: This metadata (~200 tokens)
  • Level 2: Full instructions above (~600 tokens)
  • Level 3: See references/rubrics.md for detailed rubric definitions
  • council-review: Code review with structured feedback
  • council-gate: CI/CD quality gate

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon