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

@apnex/missioncraft

v1.0.7

Published

Sovereign mission-orchestration substrate — declarative mission resources spanning 1+ git repos

Downloads

994

Readme

missioncraft

Sovereign git+workspace orchestration for multi-agent code coordination.

Engineer-git-less hypervisor framing (per Design v4.8 §2.3.2 v3.0 Refinement #1): operators interact with missions via the msn CLI; the engine handles all git operations (commits, branches, pushes, PRs, cleanup) invisibly via GitEngine + RemoteProvider pluggables. Engineers edit code via filesystem tools only.

Install

npm install @apnex/missioncraft

CLI quick start (k8s-resource-shape per v3.0 Refinements)

# Create + configure a mission (flag-driven; declarative-config primitive)
msn create --name storage-extract
msn update storage-extract repo-add https://github.com/example/repo.git

# Start the mission (engine clones; allocates workspace; spawns daemon-watcher; acquires locks)
msn start storage-extract

# Engineer edits files inside the workspace via filesystem tools (no git CLI needed)
cd $(msn workspace storage-extract storage-provider)
# ... edit files ...

# Complete the mission (atomic PR-set publish-flow: per-repo squash + push + openPullRequest;
# release locks; destroy workspace; preserve config)
msn complete storage-extract "Refactor storage adapter for v2.0"

Declarative quick start (single-call from manifest)

msn start -f mission-77.yaml      # full manifest: declares + starts in one call

Library quick start (SDK-primary per v1.1 Refinement #4; v3.0 generic-verb shape per Refinement #7)

import { Missioncraft } from '@apnex/missioncraft';

const mc = new Missioncraft({ /* defaults */ });

const handle = await mc.create('mission', { name: 'storage-extract' });
await mc.update('mission', handle.id, {
  kind: 'add-repo',
  repo: { url: 'https://github.com/example/repo.git' },
});
await mc.start(handle.id);
// ... edit files in the workspace ...
await mc.complete(handle.id, 'Refactor storage adapter for v2.0');

License

Apache 2.0