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

@honcho-ai/paperclip-honcho

v0.1.1

Published

Honcho memory integration for Paperclip

Readme

@honcho-ai/paperclip-honcho

Add Honcho memory to Paperclip while keeping Paperclip as the system of record.

This package targets the current public/latest Paperclip host surface. It supports tools, sync, migration import, and manual prompt previews without depending on automatic prompt-context injection hooks, run transcript import, or legacy workspace file import.

Install the Plugin

  1. In Paperclip, open Instance Settings -> Plugins.
  2. Click Install Plugin.
  3. Enter @honcho-ai/paperclip-honcho.
  4. Complete the install from the Paperclip UI.

Quick Setup

Minimal Path

  1. Create a Paperclip secret containing the Honcho API key.
    • For normal cloud usage, this is required.
    • Local development does not require a Honcho API key, however, is currently discouraged because of the host repository not being able to reach localhost reliably. This can be fixed via a tunnel to the port Honcho runs on.
  2. Open the Honcho plugin settings page in Paperclip.
  3. If you are using a self-hosted or local Honcho instance, switch the deployment to Self-hosted / local and set the base URL.
  4. Select the API key secret.
  5. Click Save settings.
  6. Click Initialize Honcho memory.

Multi-Agent Hierarchy

Paperclip memory is organized around company, issue, and agent boundaries:

  • Company -> workspace: each Paperclip company maps to one Honcho workspace.
  • Issue -> session: each Paperclip issue maps to one Honcho session inside that workspace.
  • Humans and agents -> peers: human actors and Paperclip agents map to Honcho peers.

Agent Observation

The current plugin exposes explicit observation settings:

  • observe_me defaults to true
  • observe_others defaults to true

That means agent peers can both be observed by Honcho and form representations of other peers they interact with.

Hierarchy Context Availability

honcho_get_hierarchy_context is available, but delegated-work context depends on the Paperclip host providing lineage metadata. The tool degrades gracefully when that metadata is unavailable.

Prompt context is still conservative on the public-host-compatible path. The recommended starting configuration keeps enablePromptContext: false, and operators use manual prompt previews instead of relying on automatic injection hooks.

How It Works

The integration breaks down into four parts:

  • Identity and scope: Paperclip companies map to Honcho workspaces, issues map to sessions, and humans plus agents map to peers.
  • Sync behavior: issue comments and document revisions sync into Honcho, with document content sectioned and normalized message content capped before ingestion.
  • Operator controls: the plugin settings page provides setup, status, and initialization flows, plus an issue-level Memory tab.
  • Agent tools: Paperclip agents get Honcho retrieval and peer-chat tools.

Operator Actions

The current operator flow is intentionally narrow:

| Action | What it does | | --- | --- | | Save settings | Persists the current plugin configuration after validation. | | Initialize Honcho memory | Validates config, tests the Honcho connection, creates core mappings, imports baseline issue memory, and verifies the initialization path. | | Resync this issue | Replays sync for the current issue from the issue Memory tab. |

Configuration Defaults

| Setting | Default | Use when | | --- | --- | --- | | honchoApiKey | — | Required for cloud-based setups. Leave it unset for local development. | | honchoApiBaseUrl | https://api.honcho.dev | Override this for self-hosted or non-default Honcho deployments. | | workspacePrefix | paperclip | Change this if you want a different workspace namespace. | | syncIssueComments | true | Turn this off if you do not want comment history imported into Honcho. | | syncIssueDocuments | true | Turn this off if you do not want issue document revisions imported. | | enablePeerChat | true | Required for the peer chat tool surface. | | enablePromptContext | false | Keep this off on the public-host-compatible path and use manual prompt previews instead. | | observe_me | true | Controls whether agent peers are observed by Honcho. | | observe_others | true | Controls whether agent peers form representations of other peers they interact with. |

The plugin also accepts additional advanced fields in the settings page, including noise-pattern and metadata-strip controls. Most setups can ignore those and start with the defaults above.

Agent Tools

The plugin registers the following Honcho tools for Paperclip agents:

  • honcho_get_issue_context
  • honcho_search_memory
  • honcho_search_messages
  • honcho_search_conclusions
  • honcho_get_workspace_context
  • honcho_get_session
  • honcho_get_agent_context
  • honcho_get_hierarchy_context
  • honcho_ask_peer

Development

pnpm install
pnpm build
pnpm test
pnpm typecheck

This repo keeps dist/ checked in so local path installs and tarball validation work without extra publish-time build assumptions.