Project
Reverse Dependencies for pikuri-subagents
The projects listed here declare pikuri-subagents as a runtime or development dependency
0.0
+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.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
pikuri-assistant ships the demo +bin/pikuri-assistant+ binary on
top of pikuri-core + pikuri-skills + pikuri-mcp: an interactive
chat agent the user hand-edits to declare a +Pikuri::Mcp::Registry+
of MCP servers. The +Pikuri.prompt+ search path picks up this
gem's +prompts/pikuri-assistant.txt+ automatically on require —
same multi-gem prompt-dir pattern as pikuri-code.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
pikuri-code adds the shell-and-dev-loop layer on top of
pikuri-workspace's filesystem tools: a +Pikuri::Code::Bash+ that
runs commands via the +Pikuri::Subprocess+ chokepoint with
+Confirmer+ gating (optionally wrapped in a
+Pikuri::Code::Bash::Sandbox::Bubblewrap+ filesystem sandbox),
plus the demo +bin/pikuri-code+ binary that wires file + shell +
web tools into an interactive coding agent rooted at the current
working directory. The +Pikuri.prompt+ search path picks up this
gem's +prompts/coding-system-prompt.txt+ automatically on require.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
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.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity