| name | ground-lamina |
| description | Use when grounding in the lamina workspace. Extends /ground with lamina-specific tools. |
Ground Lamina
Follow /ground โ here's how to orient in the lamina workspace.
Orientation
lamina repo
lamina deps
lamina doctor
Per-repo and workspace-wide
lamina repo <name>
lamina repo <name> rebase
lamina repo rebase --all
lamina repo push --all
Cross-repo workflows
lamina repo list --json | jq '.[] | select(.dirty) | .name'
lamina deps --json | jq '.[] | select(.module | contains("axon-chat"))'
lamina test
lamina test axon axon-auth
Dependency debugging
When a service won't build after a library change:
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
$ARGUMENTS