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

@athenode/cli

v0.1.6

Published

Command-line interface for athenode: project scaffold, local config, and token storage.

Readme

@athenode/cli

The official command-line interface for Athenode — manage your project's specifications, track their status, and record implementation results, all without leaving your terminal.

Install

npm install -g @athenode/cli

Getting started

Run the interactive setup once in your project:

athenode init

This walks you through connecting the CLI to your Athenode project and stores a local, private config file so you don't have to re-authenticate every time.

Already have a project token? Add it directly:

athenode auth add-token <token>

What you can do

  • Browse and search specifications — list, filter, and full-text search the specifications in your project.
  • Create and edit specifications — draft new specifications and update their title, summary, content, or status right from the command line.
  • Track implementation plans — attach or read back the implementation plan for any specification.
  • Record execution results — log what changed when a specification is implemented.
  • Manage clarifying questions — add and answer the questions attached to a specification during planning.

Run athenode --help or athenode <command> --help at any time to see everything available. Every data-returning command always prints raw JSON, so output is easy to pipe into another tool.

Environment field mapping

When you export agents/commands to a coding environment (Claude Code, Codex, or Cursor), each metadata field is mapped per-environment rather than copied verbatim: some rename to that environment's own field name, some only pass through under specific values, and some have no equivalent at all and are dropped. The tables below are the current, field-by-field source of truth for that mapping.

Unless noted otherwise, "dropped" for Cursor means the field isn't a native top-level frontmatter field there — it still survives, nested under a catch-all metadata: key, rather than being lost. "Dropped" for Claude Code/Codex means the field is genuinely omitted from the exported file.

Agent fields (.claude/agents/*.md / .codex/agents/*.toml / .cursor/agents/*.md)

| Field (our catalog) | Claude Code | Codex | Cursor | | ---------------------------- | ----------------- | -------------------------------------------------- | -------------------------------------------------------------- | | description | description | description | description | | tools | tools | dropped — no allow-list field in Codex's custom-agent schema | dropped — derives readonly: true when none of Write/Edit/Bash are granted | | model | model | model, only when the value is exactly inherit | model, only when the value is exactly inherit | | color | color | dropped — no such field in Codex | dropped — no such field in Cursor's subagent schema | | maxTurns | maxTurns | dropped — not a documented custom-agent field | dropped — no such field | | mcpServers | mcpServers | mcp_servers, per-entry shape transformed¹ | dropped — no per-agent MCP config in Cursor's schema | | hooks | hooks | dropped — schema compatibility with Codex's hooks unconfirmed | dropped — no such field | | disallowedTools | disallowedTools | dropped — no such field | dropped — no such field | | permissionMode | permissionMode | dropped — no per-agent equivalent (approval_policy is session-wide) | dropped — no such field | | skills | skills | dropped — Codex's skills.config is path/enabled pairs, not a name list | dropped — no such field | | memory | memory | dropped — Codex's memories is session-wide config, not this concept | dropped — no such field | | background | background | dropped — no such field | is_background (renamed) | | effort | effort | model_reasoning_effort (renamed; maxxhigh) | dropped — no such field | | isolation | isolation | dropped — no git-worktree concept in Codex custom agents | dropped — no such field | | initialPrompt | initialPrompt | dropped — no equivalent | dropped — no such field |

¹ mcpServers → Codex mcp_servers: bare-string "reference by name" entries are dropped (no such concept in Codex); stdio configs keep command/args/env as-is; http/sse/ws configs keep url, rename headershttp_headers, rename timeoutstartup_timeout_sec; headersHelper/alwaysLoad/oauth have no Codex equivalent and are dropped.

Two Codex-only fields have no backend catalog row yet (nothing in the UI sets them): sandbox_mode and, historically, model_reasoning_effort before effort was wired to it above.

Command/skill fields (.claude/commands/*.md / .codex/skills/<name>/SKILL.md / .cursor/skills/<name>/SKILL.md)

Cursor commands (.cursor/commands/*.md) support no frontmatter at all, so our command catalog is exported as a Cursor skill instead (.cursor/skills/<name>/SKILL.md), the same folder-per-skill shape Codex already uses.

| Field (our catalog) | Claude Code | Codex | Cursor (skill) | | ---------------------------- | ----------------- | -------------------------------------------------- | ------------------------------------------ | | description | description | description | description | | allowed-tools | allowed-tools | allowed-tools² | dropped — not one of Cursor's 5 skill fields | | argument-hint | argument-hint | argument-hint² | dropped | | model | model | model, only when the value is exactly inherit | dropped | | disable-model-invocation | disable-model-invocation | dropped — Codex's equivalent lives in a separate agents/openai.yaml file, not SKILL.md | disable-model-invocation | | when_to_use | when_to_use | when_to_use² | dropped | | arguments | arguments | arguments² | dropped | | user-invocable | user-invocable | dropped — no equivalent | dropped | | disallowed-tools | disallowed-tools | disallowed-tools² | dropped | | effort | effort | model_reasoning_effort (renamed; maxxhigh) | dropped | | context | context | dropped — no equivalent | dropped | | agent | agent | dropped — no equivalent (only meaningful with context: fork, itself dropped) | dropped | | hooks | hooks | dropped — schema compatibility unconfirmed | dropped | | paths | paths | paths² | paths — one of Cursor's 5 documented skill fields | | shell | shell | dropped — no equivalent | dropped |

² Codex's own docs only explicitly document name/description in SKILL.md itself. These fields are passed through best-effort on the (unconfirmed) assumption that Codex follows the same shared agentskills.io convention Claude Code does — an unrecognized field is simply ignored there, not an error.

Two Codex-only skill fields have no backend catalog row yet: license and compatibility.