Phase 2 of Core DI migration: - Add *core.Core field + SetCore() to PrepSubsystem and monitor.Subsystem - Register agentic/monitor/brain as Core services with lifecycle hooks - Mark SetCompletionNotifier and SetNotifier as deprecated (removed in Phase 3) - Fix monitor test to match actual event names - initServices() now wires Core refs before legacy callbacks Co-Authored-By: Virgil <virgil@lethean.io>
461 B
461 B
| name | description |
|---|---|
| ready | Quick check if work is ready to commit |
Ready Check
Quick verification that work is ready to commit.
Checks
- No uncommitted changes left behind
- No debug statements
- Code is formatted
Process
git status --porcelain
core go fmt --check 2>/dev/null || core php fmt --test 2>/dev/null
When to Use
Use /core:ready for a quick commit gate.
Use /core:verify for the full verification workflow.