@@ -92,7 +92,6 @@ def to_dict(self) -> dict[str, object]:
9292 BuiltinSlashCommand (name = "help" , description = "List available slash commands and their sources" ),
9393 BuiltinSlashCommand (name = "model" , description = "Show, list, or set the active shell model/provider" ),
9494 BuiltinSlashCommand (name = "reload" , description = "Reload plugins, skills, prompts, and method cache" ),
95- BuiltinSlashCommand (name = "tui" , description = "Launch the interactive Terminal User Interface (TUI)" ),
9695 BuiltinSlashCommand (name = "quit" , description = "Exit the interactive session" ),
9796
9897 # --- Project lifecycle ---
@@ -210,6 +209,9 @@ def to_dict(self) -> dict[str, object]:
210209 # --- Docker scaffolding (PH-12 slice 12.2) ---
211210 BuiltinSlashCommand (name = "docker" , description = "Docker scaffolding (Dockerfile + .dockerignore + docker-compose.yml)" ),
212211
212+ # --- Patch Proposal System (PH-08) ---
213+ BuiltinSlashCommand (name = "patch" , description = "Manage patch proposals: propose a safe file edit for explicit review" ),
214+
213215 # --- Release helper (PH-12 slice 12.3) ---
214216 BuiltinSlashCommand (name = "release" , description = "Semver-aware release helper — version bump + CHANGELOG stub + optional local tag (never pushes)" ),
215217
@@ -228,11 +230,4 @@ def to_dict(self) -> dict[str, object]:
228230 # --- Multi-surface access (PH-17) ---
229231 BuiltinSlashCommand (name = "surface" , description = "Web terminal / SSH-readiness check / chat bridge — multi-surface access" ),
230232
231- # --- Patch Proposal System (PH-08) ---
232- BuiltinSlashCommand (name = "diff" , description = "View the currently proposed patch/diff" ),
233- BuiltinSlashCommand (name = "apply" , description = "Approve and apply the currently proposed patch" ),
234- BuiltinSlashCommand (name = "reject" , description = "Reject the currently proposed patch" ),
235-
236- # --- Test Runner System (PH-09) ---
237- BuiltinSlashCommand (name = "test" , description = "Run the project test suite and feed failures into the model" ),
238233)
0 commit comments