You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1-page cheat sheet for Trinity Honeycomb Module Management
Essential Commands (Top 10)
tri cell list # List all cells with status
tri cell info <id># Show cell details (tags, deps, health)
tri cell init <name># Create new cell from template
tri cell check --sync # Validate all + rebuild registry
tri cell health # Per-cell health score breakdown
tri cell deps <id> --tree # Recursive dependency tree
tri cell fix --all # Auto-fix perms, deps, ids, scope, counts
tri cell graph # Output Mermaid dependency diagram
tri cell watch # Live health dashboard (5s refresh)
tri cell doctor # Full heal cycle
Quick Workflows
Add a new cell
tri cell init trinity.mymodule --template library
# Edit src/mymodule/cell.tri
tri cell check --sync
Wrap existing code
tri cell create-all --dry-run # Preview
tri cell create-all # Create cell.tri for all
Fix broken cell
tri cell fix --all --dry-run # Preview changes
tri cell fix --all # Apply fixes
tri cell check --sync # Sync registry
Monitor health
tri cell health # One-time check
tri cell health --json > h.json # Export
tri cell watch # Live dashboard
Auto-detect dependencies
tri cell deps --auto-detect # Scan @imports
tri cell deps --auto-detect --write # Update cell.tri
Find orphans
tri cell orphans # Zig files not in any cell
tri cell map # Binaries without mapping