The open agent skills ecosystem
A fast, cross-platform package manager for AI agent skills
Skillflag producer CLI reference implementation.
Rsbuild builder for Storybook
Playwright CLI
Storybook for React and Rsbuild: Develop React components in isolation with Hot Reloading.
Playwright Tools for MCP
The official CLI for Lark/Feishu open platform
Scaffold AI agent skills quickly with the Build Skill CLI.
A library of reusable React components for easily building user interfaces.
Install SKILL.md files, MCP servers, and AGENTS.md guidance for any coding agent. Ships both a Node API and a CLI.
The CLI for backing up and restoring Agent Skills
Ship compositional knowledge for AI coding agents alongside your npm packages
OpenAPI 3 and 3.1 schema generator and validator for Hono, itty-router and more!
Storybook addon for loading configuration of Rslib
CLEO skill definitions - bundled with CLEO monorepo
Salesforce skills for Agentforce Vibes
Allure Agent Plugin – AI-friendly markdown report generator
Theia - AI Core
All in one Skill manager for AI coding agents. Install, update, and sync Skills across Claude Code, Cursor, Copilot + more.
AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 51 skills, 11 catalogs (439 CVEs / 177 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 jurisdictions, 10-class catalog gap detector + budget gate,
Initialize Neon projects
Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.
Capacitor plugin for Firebase Authentication.
Load, validate, and integrate Agent Skills with RubyLLM. Supports the open Agent Skills specification for progressive skill discovery and loading from filesystem, zip archives, and databases.
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-vectordb gives a pikuri-core agent a +vectordb_search+ tool over a local document corpus — agentic search, the agent decides when to retrieve. Ships a swappable backend (a pure-Ruby +Backend::InMemory+ for teaching, plus thin +Backend::Qdrant+ / +Backend::Chroma+ HTTP clients for persistence — Qdrant recommended), a chunker, an embedder wrapper over +RubyLLM.embed+, and an optional +Reranker::LlamaServer+ that speaks +/v1/rerank+ against a cross-encoder model. Text extraction goes through +Pikuri::FileType.read_as_text+ in pikuri-core, which handles plain text / Markdown / PDF; HTML extraction is a deferred follow-up. Hosts wire the feature via +c.add_extension Pikuri::VectorDb::Extension.new(...)+ inside the +Agent.new+ block — same opt-in shape as +pikuri-tasks+ / +pikuri-skills+. The bundled +Pikuri::VectorDb::LIBRARIAN+ persona is the privilege-separated sub-agent counterpart for hosts that want recall to flow through a child rather than the parent's context. Three model endpoints in the full setup — chat (via ruby_llm), an embedder (via +RubyLLM.embed+), and an optional reranker (HTTP +/v1/rerank+). A single +llama-server+ in router mode serves all three by default, loading each cached GGUF on demand; see the gem's README for details.