بنقرة واحدة
ground-lamina
Use when grounding in the lamina workspace. Extends /ground with lamina-specific tools.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when grounding in the lamina workspace. Extends /ground with lamina-specific tools.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Use when iterating on Bubble Tea TUI code. Every change gets a direct model test before committing — send messages, assert state and View().
Use before claiming any fix, release, or implementation is complete in the lamina workspace. Extends /verify with lamina-specific evidence commands.
Use when a build fails, tests break across repos, or dependencies are out of sync. Extends /debug with lamina-specific tools.
Use when releasing library changes or deploying services across the lamina workspace. Extends /deploy with lamina-specific tools.
استنادا إلى تصنيف SOC المهني
| name | ground-lamina |
| description | Use when grounding in the lamina workspace. Extends /ground with lamina-specific tools. |
Follow /ground — here's how to orient in the lamina workspace.
lamina repo # All repos — branch, clean/dirty, last commit
lamina deps # Dependency graph between modules
lamina doctor # Check workspace health
lamina repo <name> # Full git status for one repo
lamina repo <name> rebase # Git pull --rebase one repo
lamina repo rebase --all # Git pull --rebase all repos
lamina repo push --all # Git push all repos (--all required as safety rail)
# Find dirty repos
lamina repo list --json | jq '.[] | select(.dirty) | .name'
# Understand a module's dependencies
lamina deps --json | jq '.[] | select(.module | contains("axon-chat"))'
# Run tests across libraries
lamina test # All axon-* libraries
lamina test axon axon-auth # Specific repos
When a service won't build after a library change:
lamina deps --json to see the full chaingo.mod for stale replace directivesgo mod tidy in the service directorylamina test <library> to verify the library itself passes$ARGUMENTS