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

paperclip-plugin-file-manager

v1.0.0

Published

Track and manage files created by Paperclip agents

Readme

File Manager Plugin for Paperclip

Track, categorize, and manage files created by Paperclip agents.

Features

  • 📁 Track files created by agents with metadata
  • 🏷️ Categorize files (Documentation, Code, Assets, Reports, Logs)
  • 🔍 Search files by category, agent, tags, date range
  • 📊 Statistics view with file counts and sizes
  • 🗂️ Auto-tagging by agent name
  • Retention policies for automatic cleanup
  • 🎨 Dashboard UI with recent files widget

Installation

pnpm paperclipai plugin install @paperclip/plugin-file-manager
pnpm paperclipai plugin enable @paperclip/plugin-file-manager

Configuration

Configure the plugin in the Paperclip dashboard under Settings → Plugins → File Manager:

  • Auto-tag files by agent: Automatically add agent name as a tag
  • Default categories: Pre-defined file categories
  • File retention (days): How long to keep file metadata (0 = forever)

Usage

Track a File

Agents can track files using the track-file tool:

await ctx.tools.invokeTool('track-file', {
  path: '/path/to/file.txt',
  filename: 'report.txt',
  size: 1024,
  category: 'Reports',
  tags: ['quarterly', 'financial'],
  agentId: 'agent-123',
  agentName: 'Finance Reporter',
  issueId: 'issue-456',
  issueTitle: 'Q4 Financial Report',
  output: 'Successfully generated Q4 2024 Financial Report'
});

Search Files

const results = await ctx.tools.invokeTool('search-files', {
  category: 'Reports',
  tags: ['financial'],
  dateFrom: '2024-01-01T00:00:00Z',
  searchTerm: 'quarterly'
});

Get File Details

const file = await ctx.tools.invokeTool('get-file-details', {
  fileId: 'file-1234567890-abc123'
});

Update File Metadata

await ctx.tools.invokeTool('update-file-metadata', {
  fileId: 'file-1234567890-abc123',
  category: 'Documentation',
  tags: ['v1.0', 'api']
});

Get Statistics

const stats = await ctx.tools.invokeTool('get-file-stats', {});
// Returns: { totalFiles, totalSize, byCategory, byAgent, recentFiles }

Delete a File

await ctx.tools.invokeTool('delete-file', {
  fileId: 'file-1234567890-abc123'
});

Tools Reference

| Tool | Description | |------|-------------| | track-file | Register a new file for tracking | | search-files | Search files by filters | | get-file-details | Get detailed info about a file | | update-file-metadata | Update category, tags, etc. | | get-file-stats | Get file statistics | | delete-file | Delete a tracked file |

Dashboard

The plugin provides two UI views:

  1. Dashboard Widget: Shows recent files and quick stats
  2. File Manager Page: Full file management interface at /file-manager

Development

# Build the plugin
npm run build

# Watch for changes
npm run dev

# Run tests
npm test

# Type check
npm run typecheck

License

MIT

Support

For issues and feature requests, visit the GitHub repository.