| name | debug-lamina |
| description | Use when a build fails, tests break across repos, or dependencies are out of sync. Extends /debug with lamina-specific tools. |
Debug Lamina
Follow /debug — here's how each step works in the lamina workspace.
Reproducing
lamina test
lamina test <repo>
lamina doctor
Common hypotheses
| Symptom | Start here |
|---|
| Build failure in a service | Stale dependency — lamina deps to trace the chain |
| Tests pass locally but fail in service | Service go.mod has stale replace directives |
| Module not found | Check lamina repo — is it cloned? Does it have a go.mod? |
| Version mismatch | lamina doctor flags inconsistent versions across services |
Fixing dependency issues
lamina deps --json to see the full chain
- Check the service's
go.mod for stale replace directives
go mod tidy in the service directory
lamina test <library> to verify the library itself passes
lamina doctor to confirm clean
Then /verify.
$ARGUMENTS