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

@pikaa-ai/pikaa

v0.4.2

Published

PIKAA CLI - AI coding agent that runs locally in your terminal.

Readme

Groupy Autonomous Agent & CLI

An autonomous, scalable, modular AI agent system engine and interactive CLI REPL written in TypeScript powered by Bun. Directly ported from the multi-layer actor architecture of OpenAI Codex Core (codex-rs/core).

Features

  • Multi-agent orchestration: Spawn and manage multiple specialized agents
  • Git worktree isolation: Safe task isolation with automatic branch management
  • Skills system: Load and execute specialized capabilities dynamically
  • Memory bank: Persistent user preferences and context
  • MCP integration: Connect to Model Context Protocol servers
  • Interactive REPL: Full-featured terminal interface
  • Cross-platform: Works on Windows, macOS, and Linux

Installation

Using Bun (recommended)

# Install Groupy globally
bun install -g @pikaa-ai/pikaa

# Or install locally
bun install @pikaa-ai/pikaa

Using npm/yarn

# Install globally
npm install -g @pikaa-ai/pikaa

# Or install locally
npm install @pikaa-ai/pikaa

Quick Start

Start the interactive REPL:

groupy

Or run a specific command:

groupy worktrees
groupy skills
groupy memories

System Architecture

Groupy's engine is structured into modular layers that separate protocol, transport, orchestration, execution, context management, MCP integration, multi-agent spawning, persistence, skills, memories, git worktree task isolation, and the interactive CLI REPL:

groupy/
├── bin/                       # Executable CLI entry points
├── src/
│   ├── index.ts               # Main package exports and initialization
│   ├── cli/                   # Command-line interface and REPL
│   │   ├── index.ts          # Main CLI entry
│   │   ├── repl.ts           # Interactive REPL implementation
│   │   └── commands.ts       # CLI command handlers
│   ├── worktree/              # Git Worktree Task Isolation
│   │   ├── git.ts            # Low-level git execution helpers & porcelain parser
│   │   ├── manager.ts        # WorktreeManager (lifecycle, thread binding & branch merging)
│   │   ├── tools.ts          # LLM tools: create_worktree, list_worktrees, merge_worktree, remove_worktree
│   │   └── types.ts          # WorktreeInfo, WorktreeOpt
│   ├── client/                # AI model clients
│   │   ├── model-client.ts   # Base model client implementation
│   │   └── types.ts          # Client types and interfaces
│   ├── code-mode/             # Code execution runtime
│   │   ├── runtime.ts        # Code execution environment
│   │   └── types.ts          # Code execution types
│   ├── context/               # Context management
│   │   └── instructions.ts   # Instruction handling and context
│   ├── protocol/              # Communication protocols
│   │   └── events.ts         # Event definitions and messaging
│   ├── storage/               # Persistence layer
│   │   ├── sqlite.ts         # SQLite database implementation
│   │   └── types.ts          # Storage types and interfaces
│   ├── skills/                # Skills system
│   │   ├── loader.ts         # Skills loading and discovery
│   │   └── types.ts          # Skill types and interfaces
│   └── ui/                   # User interface components
│       ├── formatter.ts      # Output formatting utilities
│       └── spinner.ts        # Loading spinner components
├── templates/                # Template files for generated content
├── tests/                   # Test suites
│   ├── client.test.ts        # Model client tests
│   ├── code-mode.test.ts     # Code execution tests
│   ├── storage.test.ts       # SQLite thread persistence & resume tests
│   ├── skills-and-memories.test.ts# Skills loader & memory bank persistence tests
│   └── worktree.test.ts      # Git Worktree isolation & merge tests
└── dist/                    # Built output

CLI Usage

Worktree Management

# List all active isolated Git Worktrees
groupy worktrees

# Create a new worktree for a task
groupy create-worktree my-feature-branch

# Merge worktree changes back to main branch
groupy merge-worktree my-feature-branch

# Remove a worktree
groupy remove-worktree my-feature-branch

Skills Management

# List all available skills
groupy skills

# Execute a specific skill
groupy execute skill-name

Memory and Preferences

# View learned user preferences and memory bank
groupy memories

# Clear memory
groupy clear-memories

Sessions

# List active sessions
groupy sessions

# Resume a previous session
groupy resume session-id

Development

Running Tests

# Run all test suites
bun test

# Run specific test file
bun test tests/worktree.test.ts

# Run tests with coverage
bun test --coverage

Building

# Build JavaScript output
bun run build:js

# Build executable
bun run build:exe

# Build all artifacts
bun run build

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT