From marconi
For Marconi: writes and runs a Python escape script when no existing tool or block can express the task, then reports the capability gap so the toolkit can grow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/marconi:escape-hatchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the operation tools and the block vocabulary genuinely cannot express what the user needs, you may drop to Python against the `marconi` library. This is the *last* resort, not a shortcut around learning the tools.
When the operation tools and the block vocabulary genuinely cannot express what the user needs, you may drop to Python against the marconi library. This is the last resort, not a shortcut around learning the tools.
list_blocks and the operation tools. Most "I need X" cases are a block or a composition you missed.import marconi and uses the library API directly — Workspace, the ops (capture, find_signals, run_pipeline, …), and the models. To read sample data, use marconi.read_capture(path) (returns (samples, CaptureRef)); stay inside the workspace.uv run python <script.py>.find_signals or a flowgraph in numpy, you've probably missed a tool.npx claudepluginhub yoelbassin/gr-mcp --plugin marconiScaffolds Metashape MCP tool modules with imports, registration, progress tracking, auto-save, prerequisite checks, and conventions. Use when adding tools to metashape-mcp server.
Searches for existing tools, libraries, and patterns before writing custom code. Useful when starting a new feature or adding dependencies.
Invokes MCP tools via tool-executor for semantic code search, refactoring, AI research, image generation, and library docs when basic tools fall short.