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

@aithos/agent-tools

v0.5.1

Published

Aithos agent tools — the canonical, shared catalogue of tool names, normative descriptions, JSON Schemas, scope rules, and legacy aliases consumed by every Aithos tool host (@aithos/mcp server, aithos-sdk, platform compute proxy).

Readme

@aithos/agent-tools

The canonical catalogue of Aithos agent tools: names, normative descriptions, input JSON Schemas, scope-exposure rules, and legacy aliases.

Every Aithos tool host consumes this package instead of maintaining its own copy:

  • @aithos/mcp — the standalone MCP server (stdio / Streamable HTTP)
  • aithos-sdk — the in-app agent loop (browser, in-process MCP host)
  • the platform compute-proxy tool registry (server-side converse loop)

A parity test in each host asserts that its registered tools are a subset of — and structurally identical to — these specs. The catalogue is therefore the single place where a tool can be added, renamed, or re-described.

Contents

  • AGENT_TOOL_CATALOG — every canonical AgentToolSpec (name, title, normative description, input_schema, scope rule, write flag).
  • toolsForScopes(scopes, opts?) — the exposure rule: which tools a caller bearing a mandate's scopes may see (undefined = owner = everything). Exposure is the coarse gate for tools/list; hosts keep fine-grained per-zone enforcement at dispatch time (defense in depth).
  • LEGACY_TOOL_ALIASES / resolveLegacyToolCall(name, args) — pre-0.9 aithos_* names accepted at tools/call for one minor version (never listed). Removal scheduled for @aithos/mcp 1.0.
  • isWriteTool(name), scopeAllowsTool(spec, scopes), shared types (AgentToolSpec, DispatchOutcome).

Discipline

Tool names, argument schemas, and descriptions are part of the contract — descriptions are shipped verbatim to calling models and shape their behavior. Any change to them is a breaking change of this package: bump accordingly and document it in the CHANGELOG (spec §10.10 transposed).

Zero runtime dependencies. Isomorphic by construction (no node builtins).

License

Apache-2.0