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-importance-unit

v0.1.0

Published

ImportanceUnit — the relational unit of knowledge for the Medicine Wheel Developer Suite. Carries epistemic weight, source dimensions (Land/Dream/Code/Vision), circle depth tracking, and accountability links grounded in Wilson's relational epistemology

Readme

@medicine-wheel/importance-unit

The ImportanceUnit is the relational unit of knowledge in Wilson's epistemology — a relationally-accountable piece of meaning that carries epistemic weight, source dimensions, accountability links, and circle depth tracking.

Overview

In Wilson's framework, not all knowledge is equal. Dream-state and embodied knowledge may carry more epistemic authority than rational analysis. ImportanceUnits make this explicit.

What it provides

| Module | Description | |--------|-------------| | types | TypeScript types for ImportanceUnit, AccountabilityLink, CircleRefinement, and related structures | | schemas | Zod validation schemas for runtime data integrity | | unit | Core CRUD: createUnit(), updateUnit(), circleBack(), archive() | | epistemic-weight | Weight computation: computeWeight(), adjustForSource(), adjustForDepth() | | accountability | Link management: linkAccountability(), resolveLinks(), findGaps() | | circle-tracking | Spiral tracking: incrementCircle(), recordRefinement(), detectDeepening(), detectStagnation() |

Installation

npm install @medicine-wheel/importance-unit

Or link locally:

npm link ../medicine-wheel/src/importance-unit

Usage

import {
  // Types
  type ImportanceUnit, type EpistemicSource, type AccountabilityLink,

  // CRUD
  createUnit, circleBack, archive,

  // Weight
  computeWeight, BASE_WEIGHTS,

  // Accountability
  linkAccountability, findGaps,

  // Circle tracking
  incrementCircle, detectDeepening, detectStagnation,

  // Schemas
  ImportanceUnitSchema,
} from '@medicine-wheel/importance-unit';

// Create a new unit from dream-state knowing
const unit = createUnit({
  direction: 'east',
  source: 'dream',
  summary: 'The river teaches patience through its refusal to hurry',
  createdBy: 'firekeeper-agent',
  axiologicalPillar: 'epistemology',
});

// unit.epistemicWeight === 0.85 (dream-state base)
// unit.circleDepth === 1

// Circle back with a refinement
const deepened = circleBack(unit, 'Patience is not waiting — it is attending');
// deepened.circleDepth === 2
// deepened.epistemicWeight > 0.85 (depth bonus applied)

Epistemic Weight Model

| Source | Base Weight | Rationale | |--------|-------------|-----------| | dream | 0.85 | Liminal/spirit-state knowing has highest authority | | land | 0.75 | Place-grounded/embodied knowing | | vision | 0.65 | Intentional/architectural knowing | | code | 0.50 | Technical/implementation knowing |

Weight increases with circleDepth using diminishing returns (logarithmic scaling). The first return yields more insight than the tenth, though all returns matter. Weight never exceeds 1.0.

Key Concepts

Circle Depth

Repetition is ceremony and deepening, not redundancy. Each time a topic is revisited (circleBack()), the circle depth increments and a refinement is recorded capturing "the subtle difference between the 3rd and 4th circling."

Accountability Links

Every ImportanceUnit must be accountable to something. Links carry responsibility, not just reference. The findGaps() function identifies relationally isolated units.

Ceremony State

Tracks progression through the four directions. When all four quadrants have been visited, the circle is complete and the unit becomes eligible for archival.

Dependencies

  • medicine-wheel-ontology-core — Foundational types (DirectionName, etc.)
  • zod — Runtime validation

License

MIT — IAIP Collaborative, Shawinigan, QC