Codumentor logo Codumentor

Explore Plugin

The Explore plugin gives the agent a single explore tool: a read-only sub-agent specialised in navigating, searching, and understanding a codebase. The main agent delegates an investigation ("where is X defined and who calls it?", "how does subsystem Y fit together?") and gets back a synthesised answer, without filling the main conversation with raw file dumps.

Configuration

plugins:
  - module: codumentor.plugins.explore
    class: ExplorePlugin
    priority: 10
    args:
      enabled: true
      target_agents: "main"   # comma-separated agent names (default: "main")

Parameters

Tool Reference

ToolDescription
exploreInvestigate a codebase question via a read-only sub-agent. Takes a self-contained query (framing + hypotheses + specific questions + hints about relevant files), and an optional subagent_id to continue a previous exploration session.

The explorer sub-agent is equipped with read-only capabilities only:

Notes