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

@hasna/project

v0.1.16

Published

Project management CLI + MCP server for AI agents — register, sync, and open projects across machines

Readme

open-projects

Project management CLI + MCP server for AI agents. Register projects once, open them anywhere, sync to S3, auto-init git, and wire into the hasna ecosystem (todos, mementos, conversations).

Install

bun install -g @hasna/project

CLI

# Register a project
project create --name my-app --path /path/to/my-app
project create --name my-app                          # uses cwd as path

# List / search
project list
project list --status archived
project list --tags web,ts                            # AND filter
project list --json | jq '.[].path'                  # machine-readable

# Get / status
project get my-app                                    # auto-detects from cwd
project get my-app --json
project status                                        # all projects at a glance
project status my-app                                 # single project detail
project recent                                        # recently opened (with relative times)
project doctor                                        # health-check all projects
project doctor my-app --fix                           # auto-repair what can be fixed
project stats                                         # disk / sync totals
project stats my-app

# Modify
project update my-app --description "My app" --tags "web,ts"
project rename my-app my-app-v2                       # updates slug + .project.json
project tag my-app infra cloud                        # add tags
project untag my-app cloud                            # remove a tag
project archive my-app
project unarchive my-app

# Open (cd into it)
cd $(project open my-app)                             # print path; auto-detects cwd
workon my-app                                         # shell function — actually cd's
penv my-app                                           # load project .env into shell
project env my-app                                    # print export statements (eval)
project env my-app --list                             # list keys only

# Working directories (multi-machine / multi-repo)
project workdir add my-app /path/to/dir --label backend
project workdir list my-app
project workdir generate my-app                       # write CLAUDE.md + AGENTS.md
project workdir generate my-app --dry-run
project workdir remove my-app /path/to/dir

# Import existing directories
project import /path/to/existing-project
project import-bulk /path/to/workspace                # imports all subdirs
project clone my-app /new/local/path                  # pull from S3 to new machine path

# Sync to/from S3
project update my-app --s3-bucket my-bucket
project sync my-app
project sync my-app --direction push
project sync-all                                      # sync all projects with S3 configured
project watch my-app                                  # push changes live as you edit
project sync-log my-app                               # show sync history

# Schedule auto-sync
project schedule set --interval daily --direction both
project schedule status
project schedule remove

# Cloud sync (SQLite ↔ RDS PostgreSQL)
project cloud status
project cloud pull
project cloud push

# Publish to GitHub
project publish my-app --org hasnaxyz
project unpublish my-app

# Git passthrough
project git my-app status
project git my-app log --oneline -10

# Shell completion (includes workon + penv functions)
eval "$(project completion)"                          # bash
eval "$(project completion --shell zsh)"              # zsh

MCP Server

Add to your Claude config:

{
  "mcpServers": {
    "open-projects": {
      "command": "project-mcp"
    }
  }
}

Available tools

| Tool | Description | |------|-------------| | projects_create | Register a new project. Returns workingDirectory + post_create_actions | | projects_list | List projects, filter by status and/or tags | | projects_get | Get project by ID or slug. Returns workingDirectory | | projects_update | Update project metadata | | projects_archive | Archive a project | | projects_open | Get workingDirectory for a project (also tracks last_opened_at) | | projects_sync | Sync to/from S3 (incremental, by file hash) | | projects_sync_all | Sync all active projects with S3 configured | | projects_sync_log | List recent sync history | | projects_link | Store integration IDs (todos, mementos, conversations, files) | | projects_import | Import an existing directory as a project | | projects_import_bulk | Import all subdirectories of a path | | projects_publish | Create GitHub repo, add remote, push | | projects_workdir_add | Add a working directory; optionally generate CLAUDE.md + AGENTS.md | | projects_workdir_list | List all working directories for a project | | projects_workdir_generate | Generate CLAUDE.md + AGENTS.md in working directories | | projects_schedule_set | Enable cron-based auto-sync | | projects_schedule_status | Get current schedule config | | projects_cloud_status | Show RDS connection health | | projects_cloud_pull | Pull from cloud PostgreSQL to local SQLite | | projects_cloud_push | Push local SQLite to cloud PostgreSQL |

projects_create response

{
  "id": "prj_abc123",
  "name": "my-app",
  "path": "/path/to/my-app",
  "workingDirectory": "/path/to/my-app",
  "instruction": "Project created. workingDirectory: /path/to/my-app",
  "post_create_actions": [
    {
      "description": "Register with open-todos for task tracking",
      "tool": "mcp__todos__create_project",
      "args": { "name": "my-app", "path": "/path/to/my-app" },
      "on_complete": "Call projects_link with todos_project_id=<returned id>"
    }
  ]
}

Architecture

src/
├── cli/
│   ├── index.ts              # CLI entry point (commander)
│   └── commands/
│       ├── projects.ts       # All project commands
│       └── completion.ts     # Shell completion
├── db/
│   ├── database.ts           # SQLite init, path resolution
│   ├── schema.ts             # Migrations
│   └── projects.ts           # CRUD + sync log
├── lib/
│   ├── git.ts                # git init, .gitignore, passthrough
│   ├── sync.ts               # S3 incremental sync
│   ├── import.ts             # Import existing projects
│   ├── github.ts             # GitHub publish via gh CLI
│   └── scheduler.ts          # Cron auto-sync
├── mcp/
│   └── index.ts              # MCP server (all tools)
├── types/
│   └── index.ts              # Types + error classes
└── index.ts                  # SDK exports

Data model

projectsid (prj_ + nanoid12), slug, name, description, status, path, s3_bucket, s3_prefix, git_remote, tags, integrations, created_at, updated_at, synced_at

project_filesproject_id, relative_path, size, hash, synced_at

sync_logproject_id, direction, status, files_synced, bytes, error, started_at, completed_at

DB path: ~/.hasna/projects/projects.db (override: HASNA_PROJECTS_DB_PATH)

Ecosystem integration

projects_create returns post_create_actions — an array of MCP calls the agent should make to register the project with:

  • open-todos (mcp__todos__create_project) — task tracking
  • open-mementos (mcp__mementos__register_project) — persistent memory
  • open-conversations (mcp__conversations__create_space) — team coordination (optional)

After each call, use projects_link to store the returned IDs in the project record and .project.json.

S3 sync

  • S3 path: s3://{bucket}/{prefix}/projects/{project-id}/{relative-path}
  • Incremental: compares local MD5 vs S3 ETag, skips unchanged files
  • Skips files >100MB
  • Includes .git/ for full restorability
  • Writes sync history to sync_log table

License

Apache-2.0