summary
Renders a full Markdown overview of the Python porting workspace.
QueryEnginePort.render_summary() and covers the manifest, command surface, tool surface, and current session state.
Example output
summary when you need a single-glance status of the workspace before starting a porting session. It shows the full command and tool inventories alongside the active session state.
setup-report
Renders the startup and prefetch setup report.
run_setup() which probes the Python environment, runs prefetch side effects (MDM raw read, keychain prefetch, project scan), and executes the deferred init sequence. The resulting SetupReport is printed as Markdown.
Example output
setup-report to verify that the Python environment and prefetch hooks are wired correctly before running any runtime commands. It is especially useful on new machines or after switching Python versions.
command-graph
Shows command graph segmentation: how the mirrored command inventory is divided into builtins, plugin-like commands, and skill-like commands.
CommandGraph from the full command list and reports counts for each segment.
Example output
source_hint contains plugin, and as skill-like when the source_hint contains skills. All others are builtins.
When to use it
Use command-graph to understand the composition of the command surface. If you recently added plugin or skill commands and want to confirm they are being picked up correctly, this is the quickest check.
tool-pool
Shows the assembled tool pool with default settings (simple mode off, MCP tools included).
assemble_tool_pool() with default arguments and prints the resulting ToolPool as Markdown. Lists up to 15 tools.
Example output
tool-pool when you need a quick audit of which tools are available in the default runtime configuration. Compare the count against the tool snapshot to detect regressions.
bootstrap-graph
Shows the mirrored bootstrap and runtime graph stages in order.
BootstrapGraph with the seven canonical startup stages and prints them as a Markdown list.
Example output
bootstrap-graph as a reference when implementing or debugging the startup sequence. The stages mirror the original TypeScript bootstrap order and serve as a porting checklist.