mahbot 0.4.2

An autonomous agentic engineering system that manages software development through role separation, subagents, and deterministic diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
Based on your workspace analysis above, output the discovered dev tooling commands as a JSON object only.

```json
{"format": "command" | null, "format_check": "command" | null, "lint": "command" | null, "lint_fix": "command" | null, "type_check": "command" | null, "build": "command" | null, "unit_test": "command" | null}
```

Each field is a shell command string (the minimal invocation that works from the workspace root) or `null` if no such tooling exists.

For multi-language projects, each command must be a compound command chained with `&&` covering all languages.

Output ONLY the JSON object. Do NOT call any tools.