TODO
list things in node_modules that are bundledDependencies, or transitive dependencies thereof
TypeScript runtime and CLI for connecting to configured Model Context Protocol servers.
A CJS bundled version of @angular/compiler
mirror of statuses, bundled and exposed as ES module
Dictionaries bundled with cspell
Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance.
mirror of cookie, bundled and exposed as ES module
Core of Shiki
mirror of memfs, bundled and exposed as ES module
mirror of deepmerge, bundled and exposed as ES module
JavaScript image cropper.
mirror of glob, bundled and exposed as ES module including for browser
Turn 3,000+ SaaS tools into MCP servers your agents can use. Headless React component for search, selection, and OAuth handoff.
Meta-MCP registry & CLI — discover, manage, and proxy MCP servers
React Native CLI
Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.
Emoji picker for the web
Plugin for accessing cli info from the command line
Command-line interface for Workflow SDK
Commands to interact with Salesforce orgs
mirror of postcss-calc-ast-parser, bundled and exposed as ES module
Unified CLI to manage MCP servers across Claude Code, OpenCode, and more
Multi-agent coding harness for Pi — triage + 17 skills + 11 sub-agents + 11 extensions. Full medium/substantial-path workflow with HITL gates, TDD enforcement, adversarial review, research mode, task-creation mode, and execution mode.
A Model Context Protocol (MCP) server that enables AI agents to query information about gems in a Ruby project's Gemfile, including source code and metadata.
Rails Engine that captures exceptions, stores them in your database with rich context, and exposes error data via a bundled MCP server so AI agents can triage, resolve, and fix errors autonomously.
A thin Rails layer over the official MCP Ruby SDK. Mounts a Streamable HTTP MCP endpoint, gates access behind API-key or HTTP Basic auth, enforces fail-closed per-tool database roles, and ships six bundled plugins (DB, Jobs, Flipper, Health, Rake, Custom Tools) plus a Ruby DSL for writing your own.
pikuri-core is the lean, audit-friendly foundation of the pikuri family: Pikuri::Agent (a thin wrapper around ruby_llm's chat loop) with its Configurator + Extension protocol, the strict Pikuri::Tool framework, a listener surface for rendering / budgets / sub-agents, and four bundled stateless tools (calculator, web search, web scrape, fetch). Extensions (skills, MCP, workspace, coding stack, named-agent personas) live in sibling gems so a privacy-conscious user can install just this core and audit a minimal dependency tree. For the convenience bundle that pulls in everything, see the +pikuri+ metagem.
+pikuri+ is the convenience bundle for the pikuri AI-assistant toolkit. It ships no Ruby code of its own beyond a tiny entry file that +require+'s each sibling gem; +gem install pikuri+ pulls in pikuri-core, pikuri-extractors, pikuri-pdf, pikuri-skills, pikuri-tasks, pikuri-memory, pikuri-workspace, pikuri-code, pikuri-mcp, pikuri-subagents, pikuri-vectordb, and pikuri-assistant in one shot, and +require 'pikuri'+ boots all of them. Privacy-conscious users who want a minimal dependency tree to audit should install +pikuri-core+ directly and opt into the extension gems they actually need — same +bundle add+ pattern Rails users have always had. See each pikuri-* gem's README for its individual surface.
pikuri-subagents owns the sub-agent (delegation) feature top to bottom: the +Pikuri::SubAgent::SubAgentTool+ class (exposed to the LLM as the +agent+ tool), the +Persona+ record, the +Extension+ that wires it onto an agent, and the bundled +Pikuri::SubAgent::RESEARCHER+ persona (network-read only). Hosts that want sub-agents add this gem as a runtime dep and call +c.add_extension Pikuri::SubAgent::Extension.new(personas: [...])+ inside their +Agent.new+ block — same opt-in shape as +pikuri-skills+ / +pikuri-mcp+. Also ships +bin/pikuri-minions+ as a fan-out delegation demo.