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

maple-agent-cli

v0.1.2

Published

OpenMaple managed agent platform CLI.

Readme

Maple CLI

Maple managed agent platform CLI.

Install

npm install -g maple-agent-cli

The package builds the Go CLI on first run and caches the binary under the system temp directory. Go 1.23+ must be installed on the machine running Maple CLI.

Quick Test

maple version --json
maple skills list
maple init --name smoke-agent --loop codex_open_source --runtime local_docker --directory ./smoke-agent --yes
maple build --project ./smoke-agent

Configure

maple config set api.baseUrl https://sd8ihq8v316pc5mf9c1j0.apigateway-cn-beijing.volceapi.com
maple config login --api-key <maple_ws_...>
maple status --json

Platform API

High-frequency Maple resources have first-class commands:

maple agent list --workspace <ws_id> --json
maple agent create --data @agent.json --json
maple environment create --name e2b --runtime e2b --workspace <ws_id> --json
maple session create --workspace <ws_id> --agent <agent_id> --environment <env_id> --title smoke --json
maple session message <session_id> "Continue" --json
maple vault create --display-name "GitHub credentials" --workspace <ws_id> --json
maple vault credential create <vault_id> --name github --provider github --auth-type oauth --json
maple workspace api-key create <ws_id> --display-name "CI" --scopes control_plane,data_plane --json
maple mcp catalog --json
maple model-config list --json

Every Maple OpenAPI route is also reachable through raw api:

maple api GET /v1/agents --query workspace_id=<ws_id> --json
maple api POST /v1/agents --data @agent.json --json
maple api GET /v1/sessions/<session_id>/events/stream --stream