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

@atlante/opencode-plugin

v0.1.6

Published

Atlante OpenCode host adapter plugin

Readme

@atlante/opencode-plugin

OpenCode host adapter for Atlante. It reads and verifies the host-neutral artifact tree built by Atlante, atomically stages the resulting agent prompts and descriptions in the in-memory host config, and exposes skills through the atlante_skill tool. Requires Node.js 22 or later.

Published package

The plugin is published to npm as @atlante/opencode-plugin. It ships as a Bun-bundled artifact (the dist/ output of bun run build at the repository root) that inlines the internal Atlante workspaces it uses. @opencode-ai/plugin is a peer dependency: the host OpenCode installation provides it, so the plugin has no runtime dependency on it.

The package exposes two entries:

  • @atlante/opencode-plugin — the default export (AtlantePlugin) registered in opencode.jsonc
  • @atlante/opencode-plugin/api — the explicit programmatic entry, exporting injectAgents, createAtlantePlugin, AtlantePlugin, createSkillTool, and the plugin's artifact and host-config types

Import from the ./api entry with import { injectAgents } from "@atlante/opencode-plugin/api".

Usage

Register the plugin in opencode.jsonc:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["@atlante/opencode-plugin"],
}

Running npx @atlante/cli init creates this registration and builds artifacts automatically while preserving existing OpenCode settings. Run npx @atlante/cli build after changing the source configuration.

atlante_skill accepts exactly { "name": "skill-id" } and looks up the resolved root skills map by that name. A successful lookup returns the skill's rendered Markdown content only; its description is not returned by the tool. Invalid input, an unknown name, and an inactive, unavailable, or failed tool return an error rather than partial content. Skill content is informational Markdown: the adapter does not execute it.

During initialization, the plugin reads .atlante/artifacts/manifest.json and verifies every declared path, payload encoding, and SHA-256 digest before materialization. If artifacts are absent, malformed, unsupported, or changed, the atlante_skill tool is omitted and the host config is unchanged. After the staged result is materialized, the tool is active; a failure after materialization, including a runtime failure, moves it to the failed lifecycle state. Verification and injection are fail-closed: the host config is updated only from a complete verified artifact set, so a failure cannot partially mutate the host. The plugin never loads or renders source configuration. The native skill tool can coexist with atlante_skill without either replacing the other.