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

@capsuleer/fs

v1.0.20

Published

Filesystem operations module for capsuleer — read, write, find, grep and more

Downloads

1,388

Readme

@capsuleer/fs

Filesystem module for Capsuleer agents. Gives agents the ability to read, write, search, and navigate the local filesystem — with every operation emitting a structured trace event so Axon has a full audit trail of what was touched.

capsuleer install fs

Built-in — ships with every Capsuleer environment. No configuration required.


API

Reading

// Read an entire file
const content = await fs.read("/project/src/app.ts")

// Check file metadata
const info = await fs.stat("/project/src/app.ts")
// → { size: 4096, mtime: 1710892800000, isFile: true, isDirectory: false }

// Check if a path exists
const exists = await fs.exists("/project/.env")

Writing

// Write a file (creates or overwrites)
await fs.write("/project/out/result.json", JSON.stringify(data, null, 2))

// Create a directory
await fs.mkdir("/project/dist", { recursive: true })

// Move a file
await fs.move("/tmp/draft.ts", "/project/src/final.ts")

// Delete a file or directory (recursive)
await fs.delete("/tmp/scratch")

Searching

// Glob pattern search — returns absolute paths
const files = await fs.find("**/*.ts", { cwd: "/project" })
// → ["/project/src/app.ts", "/project/src/index.ts", ...]

// Regex search across files
const matches = await fs.grep("TODO", "/project/src", { recursive: true })
// → [{ file: "/project/src/app.ts", line: 42, text: "// TODO: fix this", match: "TODO" }]

Directory listing

const entries = await fs.list("/project")
// → [{ name: "src", type: "directory" }, { name: "README.md", type: "file" }]

Observability

Every operation emits a structured JSON event to stdout:

{ "ok": true, "op": "fs.read", "data": { "path": "/project/src/app.ts", "bytes": 4096, "lines": 120 } }
{ "ok": true, "op": "fs.write", "data": { "path": "/project/out/result.json", "bytes": 512, "lines": 18 } }
{ "ok": true, "op": "fs.find", "data": { "pattern": "**/*.ts", "cwd": "/project", "count": 42, "files": [...] } }

Axon collects these as trace events — giving you a complete record of every file the agent read or modified during a session.

Errors emit ok: false with the error message, then re-throw so the agent can handle them.


Policy

Filesystem operations are subject to Capsuleer's policy engine. Control each operation independently:

const capsule = await Capsule({
  policy: {
    fs: {
      read: true,
      write: { deny: ["/etc/**", "~/.ssh/**"] },
      delete: "escalate",   // pause and ask before deleting
      find: true,
      grep: true,
    }
  }
})

See the policy docs for the full rule syntax.