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

@soda_game/orbit-agent-core

v0.6.0

Published

Portable, platform-neutral agent state and execution policy shared by Orbit hosts

Readme

@soda_game/orbit-agent-core

Portable, dependency-free Agent state and execution policy shared by Orbit hosts.

This package contains only generic agentic behavior: execution budgets, plan and finish gates, conversation lifecycle, context compaction, checkpoint schemas, secret redaction, and target-neutral render-surface coordinate/evidence contracts. Product integrations, credentials, billing, deployment, target-specific prompts, and private skills remain outside this package.

The package also owns two portable Arcade delivery contracts:

  • the structured Orbit Arcade SDK baseline consumed by Web, CLI, and desktop validators;
  • logical listing_cover and app_icon roles plus their non-blocking state model.

It deliberately does not own R2 keys, local filesystem paths, image providers, billing, or private target standards. Those remain host adapters.

Version 0.5 adds storage-neutral Project, Thread/Session, Turn, and typed input item schemas. Canonical turn inputs are text, image, localImage, attachment, and ref; legacy local_image/local-image inputs normalize to localImage. Hosts may persist media observations and provider-ready cache references, but the core performs no filesystem or network access.

Use projectAgentTurnForProvider (or the item-level primitive) before a model request. It preserves every source identity while projecting supported visual inputs individually and projecting text-only attachments as separate bounded structured observations. Check blocked, or call assertAgentInputProjectionReady, before sending. Local paths and host sidecars are never provider fields. In canonical Turn input, image accepts only a bounded base64 raster data URL and localImage keeps a local path. Remote Web media is an attachment; a host may validate it into a safe public HTTPS/data URL or provider file in MediaCache for transport.

Hosts that need a standalone ESM policy module, including isolated cloud runners, must use buildOrbitAgentCoreModuleSource(). The generated module is self-contained even when the host package was transformed with function-name preservation by a production bundler.