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

phantomaton-projects

v2.1.3

Published

A plugin for the [Phantomaton](https://github.com/phantomaton-ai/phantomaton) framework that empowers AI assistants with commands to manage NPM-based project lifecycles and files.

Readme

Phantomaton Projects 🛠️

A plugin for the Phantomaton framework that empowers AI assistants with commands to manage NPM-based project lifecycles and files.

Overview 📖

phantomaton-projects provides a suite of commands enabling interaction with software projects stored on the local filesystem. It integrates with command execution systems like phantomaton-execution to allow assistants to:

  • List and initialize new project workspaces.
  • Read, write, move, and remove files within projects.
  • Automatically manage Git versioning for file operations.
  • Install NPM dependencies (npm install).
  • Run project tests (npm test).

Commands are invoked using a lightweight markup syntax like Smarkup, allowing seamless integration into conversational AI workflows.

Commands ✨

The following commands are exposed by this plugin:

  • /projects()

    • Description: Lists all available projects managed by Phantomaton.
    • Example: /projects()
  • /initialize(project:string)

    • Description: Creates a new project directory based on a template, initializes Git, installs base dependencies (npm i), and performs an initial commit.
    • Example: /initialize(project:my-spooky-app)
  • /list(project:string, directory:string)

    • Description: Lists files and directories within a specified path of a project. Use . for the root.
    • Example: /list(project:my-spooky-app, directory:src)
  • /read(project:string, file:string)

    • Description: Reads and returns the UTF-8 content of a specified file.
    • Example: /read(project:my-spooky-app, file:package.json)
  • /write(project:string, file:string)

    • Description: Writes the provided text content to a file, creating directories if needed. Stages and commits the change via Git automatically.
    • Example:
      /write(project:my-spooky-app, file:README.md) {
      # My Spooky App
      
      This app summons digital ghosts. 👻
      } write!
  • /move(project:string, file:string, to:string)

    • Description: Renames or moves a file using git mv and commits the change.
    • Example: /move(project:my-spooky-app, file:old_notes.txt, to:docs/notes.md)
  • /remove(project:string, file:string)

    • Description: Removes a file using git rm and commits the change.
    • Example: /remove(project:my-spooky-app, file:temp/scratch.js)
  • /test(project:string)

    • Description: Executes npm test within the project's directory and returns the output.
    • Example: /test(project:my-spooky-app)
  • /install(project:string, module:string, development:string)

    • Description: Installs an NPM module using npm install. Set development to "true" for a dev dependency (--save-dev), "false" otherwise. Commits changes to package.json and package-lock.json.
    • Example (Runtime): /install(project:my-spooky-app, module:express, development:false)
    • Example (Dev): /install(project:my-spooky-app, module:jest, development:true)

Configuration 🔧

This plugin can be configured via the standard Phantomaton configuration system (e.g., ~/.phantomaton/configuration.json or .phantomaton/configuration.json).

  • home (string): The root directory where all project workspaces are stored. If not specified, it defaults to 'data/projects'.

Example configuration:

{
  "phantomaton-projects": {
    "home": "/path/to/your/projects/directory"
  }
}

Refer to the main Phantomaton documentation for more details on the configuration system.

Contributing 🤝

Contributions are welcome! Please adhere to the project's code style and submit pull requests to the Phantomaton Projects GitHub repository.

License 📜

Licensed under the MIT License.