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

@lifeascode/mcp

v2.0.0

Published

MCP server for Life-as-Code v2 — Claude-native node lifecycle tools

Readme

@lifeascode/mcp

MCP server for Life-as-Code v2. Gives Claude Code full node lifecycle awareness — create, fill, advance, search, and graph-build without leaving the conversation.

Setup

Claude Code (claude_desktop_config.json or .claude/mcp.json)

{
  "mcpServers": {
    "lac": {
      "command": "npx",
      "args": ["@lifeascode/mcp", "/absolute/path/to/your/project"]
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "lac": {
      "command": "lac-mcp",
      "args": ["/absolute/path/to/your/project"]
    }
  }
}

The first argument is the workspace root — where lac.config.json lives.

Tools

Orientation

  • get_node_status(id) — completeness, missing fields, suggested next action. Call this first.
  • summarize_workspace() — counts, active work, blocked nodes, avg completeness
  • roadmap_view() — all nodes sorted by priority, filterable by status/type/domain

Node lifecycle

  • create_node(type, title, domain) — scaffold a new node in the right folder
  • read_node_context(id) — full node + all linked nodes
  • write_node_fields(id, fields) — write dot-path field updates, respects locks
  • advance_node(id, status) — validate requirements + transition status
  • fill_node(id) — identify gaps and build a fill prompt for Claude

Graph

  • build_graph() — regenerate .lac/graph.json, index.json, DOMAINS.md
  • search_nodes(query) — full-text search across configured fields
  • get_lineage(id) — parent, children, blockedBy, enables, supersedes

Analysis

  • audit_decisions() — all decision nodes with choices
  • blame_file(file) — which node owns a file via views.dev.componentFile
  • cross_node_impact(file) — all nodes that reference a file
  • node_similarity(title) — check for duplicate nodes before creating
  • suggest_split(id) — detect over-scoped nodes
  • node_changelog(id) — statusHistory as a readable timeline

Management

  • spawn_child_node(parent_id, type, title) — create a child + update parent
  • lock_node_fields(id, fields) — protect fields from AI overwrite
  • node_summary_for_pr(id) — generate a PR description from a node

Typical Claude session flow

1. summarize_workspace()          → understand the project state
2. get_node_status("feat-001")    → orient on a specific node
3. fill_node("feat-001")          → see what's missing
4. write_node_fields(...)         → fill the gaps
5. advance_node("feat-001", "active")  → transition when ready
6. build_graph()                  → regenerate artifacts