docs(flows): DoD obligatorio con user-facing surface + abrir issues 0100-0103 (taxonomia, frontmatter migration, dev_console, work dashboard)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-17 00:07:04 +02:00
parent 2740f4a41a
commit 46577a6e3e
3 changed files with 121 additions and 21 deletions
+6
View File
@@ -37,5 +37,11 @@ func (d *deps) handleShow(ctx context.Context, _ mcp.CallToolRequest, args showA
b, _ := json.MarshalIndent(out, "", " ")
return mcp.NewToolResultText(string(b)), nil
}
if m, err := d.db.GetModule(args.ID); err == nil {
md := truncate(renderModuleMarkdown(m), 50_000)
out := map[string]any{"id": m.ID, "entity": "module", "markdown": md}
b, _ := json.MarshalIndent(out, "", " ")
return mcp.NewToolResultText(string(b)), nil
}
return mcp.NewToolResultError("id not found: " + args.ID), nil
}