Awesome-omni-skill u0195-governance-community-feedback-harvester
Build and operate the "Governance Community Feedback Harvester" capability for Safety and Governance. Use only when production execution explicitly requires this exact capability and output contract.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/u0195-governance-community-feedback-harvester" ~/.claude/skills/diegosouzapw-awesome-omni-skill-u0195-governance-community-feedback-harvester && rm -rf "$T"
manifest:
skills/tools/u0195-governance-community-feedback-harvester/SKILL.mdsource content
Governance Community Feedback Harvester
Why This Skill Exists
We need this skill because high-speed autonomy needs enforceable guardrails to stay aligned. This specific skill integrates lived user feedback into planning cycles.
Production Trigger Criteria
- Trigger only when the requested outcome explicitly maps to Governance Community Feedback Harvester in the Safety and Governance capability family.
- Require a named production consumer and execution window before running (no exploratory/ad-hoc execution).
- Require complete upstream signals; if any required signal is absent, stop and return a remediation request (fail closed).
Step-by-Step Implementation Guide
- Define the scope and success metrics for
, including at least three measurable KPIs tied to unsafe actions and policy drift.Governance Community Feedback Harvester - Design and version the input/output contract for policies, violations, and mitigation actions, then add schema validation and failure-mode handling.
- Implement the core capability using feedback normalization and clustering, and produce theme-prioritized feedback digests with deterministic scoring.
- Integrate the skill into swarm orchestration: task routing, approval gates, retry strategy, and rollback controls.
- Add unit, integration, and simulation tests that explicitly cover unsafe actions and policy drift, then run regression baselines.
- Deploy behind a feature flag, monitor telemetry/alerts for two release cycles, and iterate thresholds based on observed outcomes.
Deterministic Workflow Constraints
- Core method: feedback normalization and clustering
- Archetype: normalization-engine
- Routing tag: safety-and-governance:normalization-engine
- Determinism tolerance: repeated runs on identical normalized inputs must keep score/output delta within <= 0.5%.
- Retry budget: max 4 attempts with exponential backoff; then rollback.
Input Contract
(signal, source=upstream, required=true)policies
(signal, source=upstream, required=true)violations
(signal, source=upstream, required=true)mitigation actions
(signal, source=upstream, required=true)claims
(signal, source=upstream, required=true)evidence
(signal, source=upstream, required=true)confidence traces
Output Contract
(structured-report, consumer=orchestrator, guaranteed=true)theme_prioritized_feedback_digests_report
(scorecard, consumer=operator, guaranteed=true)theme_prioritized_feedback_digests_scorecard
Validation Gates (Fail-Closed)
- schema-contract-check — Reject execution unless all required inputs are present and schema-valid (on fail: quarantine + remediation request).
- determinism-check — Re-run fixed test vector; block publish-level output if variance exceeds 0.5% (on fail: escalate + hold).
- policy-approval-check — Enforce policy gates before any publish-level artifact (on fail: block).
- high-risk-human-signoff — If risk >= critical threshold or policy marks high-impact, require explicit human approval before release (on fail: block).
Failure Handling
: Missing or malformed required signals → Reject payload, emit validation error, request corrected payloadE_INPUT_SCHEMA
: Determinism delta exceeds allowed threshold → Freeze output, escalate to human approval routerE_NON_DETERMINISM
: Downstream or external dependency timeout → Apply retry policy then rollback to last stable baselineE_DEPENDENCY_TIMEOUT- Rollback strategy: rollback-to-last-stable-baseline
Handoff Contract
- Produces: Governance Community Feedback Harvester normalized artifacts; execution scorecard; risk posture
- Consumes: policies; violations; mitigation actions; claims; evidence; confidence traces
- Downstream routing hint: Route next to safety-and-governance:normalization-engine consumers with approval-gate context
Immediate Hardening Additions (Required Before Promotion)
- Add/refresh fixture file:
with deterministic sample payload and expected checksum.fixtures/golden-input.json - Add/refresh regression case:
for highest-risk failure path and expected fail-closed behavior.tests/regression-case.md - Emit machine-readable run summary to
with fields:hardening-summary.json
,status
,risk_score
,confidence
,next_handoff
.human_signoff_required - Do not emit publish-level outputs when any validation gate fails.
Production Trigger Clarity
- Use only when this capability produces production-facing outcomes with measurable acceptance criteria.
- Do not invoke for exploratory brainstorming or unrelated domains; route those requests to the correct capability family.
Deterministic Tolerances
- Repeated runs on identical inputs must remain within <=1% output variance for scoring fields and preserve schema-identical artifact shape.
- Any variance beyond tolerance is a hard failure and must trigger escalation.
Fail-Closed Validation Gates
- Schema validity gate (required inputs present and valid).
- Determinism gate (variance within tolerance).
- Policy/approval gate (required approvals satisfied).
If any gate fails: block output publication and fail closed.
High-Risk Human Sign-Off
- Any high-risk change, policy-impacting output, or publish-level action requires explicit human sign-off before release.
- Missing sign-off is a blocking condition.
Explicit Handoff Contract
- Produces: normalized artifacts, decision scorecard, risk/confidence metadata.
- Consumes: validated upstream inputs for this capability.
- Next hop: route only to declared downstream consumers with gate/approval context attached.