npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

medicine-wheel-community-review

v0.1.0

Published

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

Readme

medicine-wheel-community-review

Community-based ceremonial review protocol — implements Wilson's validation through Elder review circles, consensus-seeking, and relational accountability assessment.

Part of the Medicine Wheel Developer Suite.

Overview

Wilson describes research validation not through peer review but through community review — Elders, knowledge keepers, and community members validate whether research honors relational accountability. This package implements that vision.

Core Concepts

Review Circle

A community body that evaluates an artifact through talking circle, Elder validation, and consensus. Circles progress through: gathering → reviewing → deliberating → decided.

Talking Circle

Each participant shares their voice in turn, honoring all directions. Voices are recorded with directional and role context.

Elder Validation

Elders provide final validation and blessing, ensuring artifacts honor relational accountability.

Wilson's Three R's Check

Every review outcome includes a check against Wilson's three R's:

  • Respect — Are all perspectives honored?
  • Reciprocity — Does the artifact give back?
  • Responsibility — Is accountability explicit?

Usage

import {
  createReviewCircle,
  addReviewer,
  submitForReview,
  talkingCircle,
  requestElderValidation,
  seekConsensus,
  approveWithBlessings,
  closeCircle,
} from 'medicine-wheel-community-review';

// Create a circle
let circle = createReviewCircle('research-001', 'research');

// Add reviewers
circle = addReviewer(circle, {
  id: 'reviewer-1',
  role: 'steward',
  direction: 'east',
  accountableTo: ['community', 'future-generations'],
});

// Submit for review
circle = submitForReview(circle);

// Add voices in the talking circle
circle = talkingCircle(circle, {
  speakerId: 'reviewer-1',
  role: 'steward',
  direction: 'east',
  voice: 'This research honors the land and our relations.',
  timestamp: new Date().toISOString(),
});

// Request Elder validation
circle = requestElderValidation(circle, 'elder-1');

// Seek consensus
const consensus = seekConsensus(circle);

// Produce outcome
const outcome = approveWithBlessings(circle, 'This work carries our blessing.');
circle = closeCircle(circle, outcome);

API

Circle Management

  • createReviewCircle(artifactId, artifactType) — Create a new circle
  • addReviewer(circle, reviewer) — Add a participant
  • submitForReview(circle) — Transition to reviewing
  • closeCircle(circle, outcome) — Finalize with outcome
  • circleStatus(circle) — Current state summary

Elder Validation

  • requestElderValidation(circle, elderId) — Request Elder review
  • elderGuidance(circle) — Get Elder's guidance
  • elderBlessing(circle, elderId, blessing) — Record blessing

Consensus

  • seekConsensus(circle) — Attempt consensus
  • talkingCircle(circle, entry) — Add a talking circle entry
  • recordVoices(circle) — Summarize all voices
  • resolveDisagreement(circle, process) — Handle disagreement

Accountability

  • reviewerAccountability(reviewer) — Accountability chain
  • reviewAgainstWilson(circle) — Check against Wilson's 3 R's
  • reviewAgainstOcap(circle) — Check against OCAP®
  • relationalHealthReview(circle) — Assess relational health

Outcomes

  • approveWithBlessings(circle, blessing) — Approve
  • requestDeepening(circle, areas) — Needs more work
  • returnToCircle(circle, reason) — Send back
  • ceremonialHold(circle, reason) — Pause for ceremony

Dependencies

  • medicine-wheel-ontology-core ^0.1.1
  • medicine-wheel-ceremony-protocol ^0.1.0
  • zod ^3.23.0

License

MIT