Source Document
consensus-persona-generator SKILL.md
--- name: consensus-persona-generator description: Generate and persist reusable persona panels (persona_set artifacts) for consensus decision workflows. This skill initializes lightweight multi-agent disagreement with weighted reputations so downstream guards can make auditable, policy-governed decisions. homepage: https://github.com/kaicianflone/consensus-persona-generator source: https://github.com/kaicianflone/consensus-persona-generator --- # consensus-persona-generator `consensus-persona-generator` is the entrypoint for evaluator diversity in the Consensus.Tools ecosystem. ## What this skill does - creates N distinct decision personas (role, bias, risk posture, voting style) - assigns initial reputation spread for weighted arbitration - persists a versioned `persona_set` artifact to board state - reuses compatible persona sets when possible to reduce churn ## Why this matters Most agent pipelines fail because one model self-approves its own output. This skill injects structured disagreement first, so later guards operate over explicit multi-perspective review. ## Ecosystem role Stack position: `consensus-tools -> consensus-interact pattern -> consensus-persona-generator -> domain guards` - **consensus-tools**: board/job/submission ledger substrate - **consensus-interact**: board-native orchestration contract - **persona-generator**: lightweight multi-agent initialization layer ## Inputs / outputs (automation-friendly) - strict JSON input contract (`board_id`, `task_context`, `n_personas`, etc.) - strict JSON output with `persona_set_id`, `personas[]`, and board write refs - deterministic/replayable behavior where feasible ## Typical use cases - bootstrap evaluators for email/publish/support/merge/action guards - regenerate persona cohorts by domain or risk profile - establish reusable governance personas for long-running automation ## Quick start ```bash node --import tsx run.js --input ./examples/persona-input.json ```