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

@cleocode/core

v2026.5.61

Published

CLEO core business logic kernel — tasks, sessions, memory, orchestration, lifecycle, with bundled SQLite store

Readme

@cleocode/core — CLEO SDK

CLEO core business logic kernel and canonical SDK surface — tasks, sessions, memory, orchestration, lifecycle, with bundled SQLite store.

@cleocode/core IS the CLEO SDK. There is no separate @cleocode/cleo-sdk package. The Cleo facade, domain namespaces, and flat free functions are all exposed through per-subpath exports that follow a CalVer stability contract. See STABILITY.md for the full contract and .dts-snapshots/ for the enforced baseline.

Quickstart

import { startSession } from '@cleocode/core/sessions';
import { addTask } from '@cleocode/core/tasks';

const projectRoot = process.cwd();

// Open a session before performing mutations
const session = await startSession(projectRoot, { scope: 'global', name: 'my-session' });

// Add a task
const task = await addTask(
  { title: 'My task', type: 'task', priority: 'medium' },
  projectRoot,
);

Or use the Cleo facade for a project-bound, domain-grouped interface:

import { Cleo } from '@cleocode/core/sdk';

const cleo = await Cleo.init(process.cwd());

const session = await cleo.sessions.start({ scope: 'global', name: 'my-session' });
const task    = await cleo.tasks.add({ title: 'My task', type: 'task', priority: 'medium' });

await cleo.destroy();

Installation

# npm
npm install @cleocode/core

# pnpm (recommended)
pnpm add @cleocode/core

# yarn
yarn add @cleocode/core

Node.js requirement: >=24.0.0

Available namespaces

Primary dispatch domains (9)

These domains map 1:1 to the CLEO CLI dispatch surface and follow the uniform (projectRoot: string, params: <Op>Params) => Promise<<Op>Result> signature mandated by ADR-057.

| Domain | Subpath | Purpose | |--------|---------|---------| | admin | @cleocode/core/admin | Import/export, project health checks, backup | | check | @cleocode/core (via internal) | Protocol compliance, canon validation | | conduit | @cleocode/core/conduit | Inter-agent messaging, local transport | | nexus | @cleocode/core/nexus | Code-intelligence graph, cross-project linking | | pipeline | @cleocode/core/pipeline | RCASD/IVTR pipeline stage management | | playbook | @cleocode/core (via internal) | .cantbook playbook runtime | | sentient | @cleocode/core/sentient | Tier-2 autonomous proposals, sentient daemon | | sessions | @cleocode/core/sessions | Session lifecycle, briefing, handoff | | tasks | @cleocode/core/tasks | Task CRUD, dependencies, lifecycle, archival |

Supporting domains

| Domain | Subpath | Purpose | |--------|---------|---------| | gc | @cleocode/core/gc | Garbage-collection daemon, transcript pruning | | llm | @cleocode/core | LLM-extraction, transcript ingestion, brain backfill | | memory | @cleocode/core/memory | BRAIN storage, search, STDP, observation | | lifecycle | @cleocode/core/lifecycle | Gate verification, evidence, pipeline stages | | harness | @cleocode/core/harness | CleoOS adapter surface, Pi harness integration |

Subpath exports

Prefer the narrowest subpath that satisfies your need — it reduces import cost and is covered by snapshot-enforced stability gates.

| Subpath | Tier | Use when | |---------|------|----------| | @cleocode/core/sdk | stable | External agents, Studio panels — Cleo facade only | | @cleocode/core/tasks | stable | Task CRUD, hierarchy, graph ops | | @cleocode/core/sessions | stable | Session lifecycle, briefing, handoff | | @cleocode/core/memory | stable | Brain observe/search/timeline | | @cleocode/core/nexus | stable | Code-intelligence graph queries | | @cleocode/core/lifecycle | stable | Gate verification, pipeline stages | | @cleocode/core/conduit | stable | Conduit messaging | | @cleocode/core/sentient | stable | Sentient daemon, proposals | | @cleocode/core/gc | stable | Garbage-collection daemon | | @cleocode/core/contracts | stable | Pure @cleocode/contracts re-export (types only) | | @cleocode/core | stable | All namespaces + flat free functions | | @cleocode/core/internal | internal | CLI dispatch only — do NOT import from third-party code |

See STABILITY.md for the full tier definitions and breaking-change policy.

Type definitions

All param/result types live in @cleocode/contracts and are re-exported from @cleocode/core/contracts:

import type { TasksAddParams, SessionStartParams } from '@cleocode/core/contracts';
// or directly:
import type { TasksAddParams } from '@cleocode/contracts';

Do not inline or mock types — always import from @cleocode/contracts.

Usage examples

Task operations

import { tasksAddOp, tasksShowOp, tasksListOp, tasksCompleteOp } from '@cleocode/core/tasks';

const root = process.cwd();

const task = await tasksAddOp(root, {
  title: 'Implement login endpoint',
  type: 'task',
  priority: 'high',
  size: 'medium',
  parent: 'T1000',            // optional parent task/epic ID
  depends: ['T1001'],         // optional dependency list
});

const detail  = await tasksShowOp(root,     { taskId: task.data.id });
const list    = await tasksListOp(root,     { status: ['pending', 'in_progress'] });
await tasksCompleteOp(root, { taskId: task.data.id });

Session operations

import { startSession, endSession, sessionStatus } from '@cleocode/core/sessions';

const root    = process.cwd();
const session = await startSession(root, { scope: 'feature/auth', name: 'auth-session' });

const status  = await sessionStatus(root, { id: session.id });

await endSession(root, { id: session.id, note: 'Completed login endpoint' });

Memory (BRAIN) operations

import { observeBrain, searchBrain, timelineBrain } from '@cleocode/core/memory';

const root = process.cwd();

await observeBrain(root, {
  text: 'Using bcrypt with cost factor 12 for password hashing',
  title: 'auth-password-hashing',
});

const results  = await searchBrain(root, { query: 'auth', limit: 5 });
const timeline = await timelineBrain(root, { limit: 20 });

Facade (all-in-one)

import { Cleo } from '@cleocode/core/sdk';

async function main() {
  const cleo = await Cleo.init(process.cwd());

  try {
    const epic = await cleo.tasks.add({ title: 'Auth System', type: 'epic', priority: 'high' });

    const task = await cleo.tasks.add({
      title: 'Implement JWT validation',
      type: 'task',
      priority: 'high',
      parent: epic.data.id,
    });

    await cleo.sessions.start({ scope: 'epic:T1234', name: 'auth-sprint' });

    await cleo.memory.observe({
      text: 'JWT validated via RS256 — symmetric HMAC rejected',
      title: 'jwt-algo-decision',
    });

    await cleo.tasks.complete({ taskId: task.data.id });
  } finally {
    await cleo.destroy();
  }
}

main().catch(console.error);

Error handling

All functions return LAFS-compliant envelopes { success: boolean; data?: T; error?: E; meta: M }. Errors extend CleoError and carry a typed code from the ERROR_CATALOG:

import { CleoError } from '@cleocode/core';

try {
  await tasksShowOp(root, { taskId: 'T9999' });
} catch (err) {
  if (err instanceof CleoError) {
    console.error(err.code);    // e.g. 'E_NOT_FOUND'
    console.error(err.message); // human-readable description
  }
}

See @cleocode/contracts for the full error catalog and ExitCode enum.

Versioning policy

@cleocode/core uses CalVer (YYYY.M.PATCH) to express calendar-position compatibility with the CLEO CLI:

| Change class | Version impact | |---|---| | Non-breaking addition to a stable subpath | PATCH bump only | | Breaking change to a stable subpath | CalVer month bump (2026.5.x) | | Breaking change to an internal subpath | PATCH bump; documented in CHANGELOG | | Removal of a deprecated symbol | Requires one-release-cycle advance notice in STABILITY.md |

If this package is ever forked as a standalone SDK (decoupled from the CLEO CLI release train), SemVer (MAJOR.MINOR.PATCH) will be adopted at that fork point with a major version bump. Until then, CalVer is canonical and the PATCH component carries no SemVer semantics.

Architecture references

Package boundary

@cleocode/core is the SDK — runtime primitives, domain logic, store, memory, sentient, and GC.

| Do | Do not | |---|---| | Import from @cleocode/core/sdk or narrow subpaths | Import from @cleocode/core/internal in third-party code | | Use @cleocode/contracts types | Inline or mock types | | Call Cleo.init() / domain ops | Access the SQLite store directly |

See the monorepo AGENTS.md for the full package-boundary contract.

License

MIT — see LICENSE for details.