UNPKG

@medicine-wheel/community-review

Version:

Community-based ceremonial review protocol for Medicine Wheel — implements Wilson's validation through Elder review circles, consensus, and relational accountability

27 lines 1.05 kB
/** * @medicine-wheel/community-review — Outcomes * * Functions for producing review outcomes — the final decisions * of the community review circle. */ import type { ReviewCircle, ReviewOutcome } from './types.js'; /** * Approve the artifact with blessings. * Requires Elder blessing and Wilson alignment. */ export declare function approveWithBlessings(circle: ReviewCircle, blessing: string): ReviewOutcome; /** * Request deepening — the artifact needs more work in specific areas. */ export declare function requestDeepening(circle: ReviewCircle, areas: string[]): ReviewOutcome; /** * Return the artifact to the circle for revision. * The artifact needs significant rework. */ export declare function returnToCircle(circle: ReviewCircle, reason: string): ReviewOutcome; /** * Place the artifact on ceremonial hold. * Further ceremonial attention is needed before the review can proceed. */ export declare function ceremonialHold(circle: ReviewCircle, reason: string): ReviewOutcome; //# sourceMappingURL=outcomes.d.ts.map