agent/codex/core/commands/ready.md
Snider bb88604045 feat(core): wire Core framework into agentic + monitor subsystems
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>
2026-03-24 14:44:53 +00:00

461 B

name description
ready Quick check if work is ready to commit

Ready Check

Quick verification that work is ready to commit.

Checks

  1. No uncommitted changes left behind
  2. No debug statements
  3. 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.