detail
Analyze system structure for concurrency, flow landmarks, resilience, dominator trees, and min-cuts using EN syntax source code.
Instructions
Deep structural analysis — concurrency, flow landmarks, resilience, dominator tree, min-cuts.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | EN source code describing the system |
Implementation Reference
- src/index.ts:101-114 (handler)The 'detail' tool is registered and implemented in src/index.ts, delegating the execution to the 'callApi' helper function.
server.tool( "detail", "Deep structural analysis — concurrency, flow landmarks, resilience, dominator tree, min-cuts.", { source: z.string().describe("EN source code describing the system"), }, async ({ source }) => { const result = await callApi("detail", { source }); return { content: [{ type: "text" as const, text: result.text }], isError: result.isError, }; } );