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

agentskin

v1.0.0

Published

AgentSkin: The official reference implementation of the Semantic Shorthand Standard (SSS) for Agentic Perception.

Readme

AgentSkin: Semantic Shorthand Standard (SSS)

npm version License: MIT

AgentSkin is an open-source protocol and reference Model Context Protocol (MCP) server that establishes the Semantic Shorthand Standard (SSS) for Agentic Perception.

The protocol defines a standardized method for recursively pruning high-entropy, human-readable data (HTML, bloated JSON, complex APIs) into low-entropy, deterministic Markdown "Skins." This significantly reduces LLM token consumption (the "Token Tax") and eliminates perceptual drag in autonomous reasoning loops.

The Protocol

The core of AgentSkin is the recursive pruning engine. It operates on a simple, declarative standard:

  1. Audit: Intercept raw data payloads.
  2. Signal Mapping: Define an array of required, high-density keys.
  3. Semantic Pivot: Apply an alias map to standardize inconsistent API schemas into a unified namespace.
  4. Flatten: Output a deterministic, hierarchical Markdown string.

Reference Implementation

This repository provides the official Node.js reference implementation of the SSS protocol, exposed as a standard MCP server.

Quickstart (MCP Server)

You can run the AgentSkin reference server directly via npx to provide your local AI assistants (Claude Desktop, Cursor, etc.) with the fetch_optimized_data tool.

npx -y agentskin@latest

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "agentskin": {
      "command": "npx",
      "args": ["-y", "agentskin@latest"]
    }
  }
}

Tools

The reference implementation exposes the following tools to AI agents:

1. fetch_optimized_data

Fetches any API or Web URL and returns a 90% token-optimized "Skin."

  • Arguments:
    • url (string, required): The target data source.
    • signals (string[], optional): An array of semantic keys to preserve.
    • aliases (object, optional): A map to rename original keys to standardized signals.

2. skin_reasoning

Optimizes natural language text by removing linguistic noise (hedging, filler).

  • Arguments:
    • text (string, required): The natural language string to distill.

Creating a Skin

AgentSkin is a factory for intelligent perception. You provide the mapping; the protocol provides the engine.

When using the fetch_optimized_data tool, provide the signals and aliases parameters to build your own skin.

Example: Weather API Skin

{
  "url": "https://api.weather.gov/gridpoints/TOP/31,80/forecast",
  "signals": ["temperature", "windspeed", "shortforecast"],
  "aliases": {
    "temperature": "temp",
    "shortforecast": "forecast"
  }
}

Architecture

This package is designed as a Local-First, Open Studio.

  • All data fetching and pruning happens locally on the host machine.
  • User session state, cookies, and network access remain strictly local and private.
  • The core engine (skin-engine.js) operates without external dependencies for transformation.

Documentation & Whitepaper

Read the full protocol specification and academic whitepaper at agentskin.dev.


Maintained by Nichols Transco LLC. Built for the machine economy.