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

octoflow-plugins

v1.0.1

Published

Scheduler, skill curator, and TUI plugins for OctoFlow.

Readme

octoflow-plugins

Optional plugins for OctoFlow runtimes: scheduler, skill curator, and TUI. Import the subpath you need when you want time-based jobs, skill distillation, or an interactive terminal loop without pulling every plugin into your app.

Plugins are runtime extension bundles. They can register tools/actions, MCP servers, skills, context, hooks, and lifecycle cleanup, but those concepts are distinct. See ../../docs/tools.md#plugins-hooks-and-events.

Install

npm install octoflow-core octoflow-plugins

Node.js >=20 is required.

Use It When

  • You need cron, interval, or one-off agent jobs with persistent checkpoints.
  • You want to capture task trajectories and promote reusable behavior into SKILL.md drafts.
  • You want a readline TUI with slash commands for local operations.
  • You prefer optional plugin composition over baking these concerns into your core runtime.

Subpaths

| Import | Use for | | ---------------------------- | -------------------------------------------------------------------------------------- | | octoflow-plugins/scheduler | Persistent cron, interval, one-off jobs, tick loop, platform delivery, schedule tools. | | octoflow-plugins/curator | Trajectory capture, skill distillation, idle gate, approval facade, skill write-back. | | octoflow-plugins/tui | Readline slash-command loop with /help, /scheduler, /curator, /env, /model. | | octoflow-plugins | Root export when you intentionally want all plugin surfaces. |

Scheduler Start

import { createAgent } from 'octoflow-core';
import {
  createInMemoryCheckpointStore,
  createSchedulerPlugin,
} from 'octoflow-plugins/scheduler';

const store = createInMemoryCheckpointStore();

const agent = await createAgent({
  priority: ['anthropic-api'],
  plugins: [createSchedulerPlugin({ store })],
});

The agent now has scheduler APIs and schedule tools.

Curator Start

import { createAgent } from 'octoflow-core';
import {
  createCuratorPlugin,
  defaultDistiller,
} from 'octoflow-plugins/curator';

const agent = await createAgent({
  priority: ['anthropic-api'],
  plugins: [
    createCuratorPlugin({
      distiller: defaultDistiller(),
      skillsDir: './skills',
    }),
  ],
});

The default curator captures completed task summaries, tool calls, and tool results before distilling. It skips trivial successes unless the trajectory has tool usage, multiple steps, or a substantial summary.

TUI Start

import { createAgent } from 'octoflow-core';
import { builtinSlashCommands, runTui } from 'octoflow-plugins/tui';

const agent = await createAgent({ priority: ['anthropic-api'] });
const tui = runTui({
  bridge: agent.bridge,
  commands: builtinSlashCommands(),
});
await tui.done();

Learn More

Validate

npm run -w octoflow-plugins lint
npm run -w octoflow-plugins typecheck
npm run -w octoflow-plugins test

Status

Preview. Pin versions and read ../../CHANGELOG.md before depending on it in production.