pikuri (metagem)

The convenience bundle for the pikuri AI-assistant toolkit: gem install pikuri brings in every pikuri-* gem in one shot, and require 'pikuri' boots them all.

This gem ships no Ruby code of its own — its lib/pikuri.rb is six require lines, one per sibling.

Install

# Gemfile
gem 'pikuri'

Transitively installs:

All version-locked together — bumping the metagem requires the matching sibling versions.

When NOT to use this gem

Privacy-conscious users who care about a minimal dependency tree should install just the lean core + the extensions they actually need:

gem 'pikuri-core'
gem 'pikuri-mcp'     # if they want MCP
gem 'pikuri-skills'  # if they want skills
# ... etc.

pikuri-core is the minimal install. Adding pikuri-mcp adds exactly one new runtime gem (mcp); pikuri-workspace / pikuri-skills / pikuri-code / pikuri-assistant add nothing beyond pikuri's own gems. The dep tree stays auditable.