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

@eddacraft/kindling-core

v0.1.2

Published

Core domain model and orchestration for Kindling - local memory engine for AI-assisted development

Readme

@eddacraft/kindling-core

Core domain model and orchestration for Kindling - local memory engine for AI-assisted development.

npm version License

Installation

npm install @eddacraft/kindling-core

Overview

@eddacraft/kindling-core provides the domain types, capsule lifecycle management, and retrieval orchestration for Kindling. It defines the core abstractions that other packages implement:

  • Observations - Atomic records of captured events
  • Capsules - Bounded units of meaning that group observations
  • Summaries - High-level descriptions of capsule content
  • Pins - User-marked important items
  • Retrieval - Deterministic, scoped search across all entities

Usage

import {
  // Types
  Observation,
  ObservationKind,
  Capsule,
  CapsuleType,
  CapsuleStatus,
  Summary,
  Pin,
  ScopeIds,

  // Capsule lifecycle
  CapsuleManager,
  openCapsule,
  closeCapsule,

  // Retrieval
  RetrieveOptions,
  RetrieveResult,
  RetrievalProvider,

  // Utilities
  ok,
  err,
} from '@eddacraft/kindling-core';

Core Types

Observation

An atomic, immutable record of an event:

interface Observation {
  id: string;
  kind: ObservationKind;
  content: string;
  provenance: Record<string, unknown>;
  ts: number;
  scopeIds: ScopeIds;
  redacted: boolean;
}

type ObservationKind =
  | 'tool_call'
  | 'command'
  | 'file_diff'
  | 'error'
  | 'message'
  | 'node_start'
  | 'node_end'
  | 'node_output'
  | 'node_error';

Capsule

A bounded unit that groups related observations:

interface Capsule {
  id: string;
  type: CapsuleType;
  intent: string;
  status: CapsuleStatus;
  openedAt: number;
  closedAt?: number;
  scopeIds: ScopeIds;
  observationIds: string[];
  summaryId?: string;
}

type CapsuleType = 'session' | 'pocketflow_node';
type CapsuleStatus = 'open' | 'closed';

ScopeIds

Multi-dimensional isolation for queries:

interface ScopeIds {
  sessionId?: string;
  repoId?: string;
  agentId?: string;
  userId?: string;
}

Capsule Lifecycle

import { CapsuleManager } from '@eddacraft/kindling-core';
import { SqliteKindlingStore } from '@eddacraft/kindling-store-sqlite';

const manager = new CapsuleManager(store);

// Open a capsule
const capsule = manager.open({
  type: 'session',
  intent: 'Fix authentication bug',
  scopeIds: { sessionId: 's1', repoId: '/repo' },
});

// Attach observations
manager.attach(capsule.id, observation);

// Close with summary
manager.close(capsule.id, {
  content: 'Fixed JWT validation',
  confidence: 0.9,
});

Retrieval

import { RetrieveOptions, RetrieveResult } from '@eddacraft/kindling-core';

const options: RetrieveOptions = {
  query: 'authentication',
  scopeIds: { repoId: '/repo' },
  tokenBudget: 8000,
  maxCandidates: 50,
};

// Results are tiered: pins -> summary -> candidates
const result: RetrieveResult = {
  pins: [...],           // Non-evictable, user-pinned
  currentSummary: {...}, // Active capsule summary
  candidates: [...],     // FTS-ranked results
  provenance: {...},     // Explains how results were generated
};

Result Type

Kindling uses a Result type for validation:

import { Result, ok, err } from '@eddacraft/kindling-core';

function validate(input: unknown): Result<Observation> {
  if (!isValid(input)) {
    return err({ field: 'content', message: 'Content is required' });
  }
  return ok(input as Observation);
}

Related Packages

License

Apache-2.0