Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Gormes is a **strangler-fig rewrite**. Each phase ships a self-contained surface
|-------|--------|---------|
| Phase 1 — The Dashboard | ✅ | 3/3 subphases |
| Phase 2 — The Gateway | 🔨 | 12/19 subphases |
| Phase 3 — The Black Box (Memory) | 🔨 | 11/14 subphases |
| Phase 3 — The Black Box (Memory) | 🔨 | 12/14 subphases |
| Phase 4 — The Brain Transplant | 🔨 | 0/8 subphases |
| Phase 5 — The Final Purge | 🔨 | 1/18 subphases |
| Phase 6 — The Learning Loop (Soul) | ⏳ | 0/6 subphases |
Expand Down
2 changes: 1 addition & 1 deletion cmd/gormes/goncho.go
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ func formatGonchoDoctorReport(report gonchoDoctorReport) string {
b.WriteString("\n")
}

b.WriteString("Queue status (observability only; not synchronization)\n")
b.WriteString("Queue status (observability/debugging only; not synchronization; do not wait for empty queue)\n")
fmt.Fprintf(&b, "extractor_worker_health: %s\n", report.QueueStatus.Extractor.WorkerHealth)
fmt.Fprintf(&b, "extractor_queue_depth: %d\n", report.QueueStatus.Extractor.QueueDepth)
fmt.Fprintf(&b, "extractor_dead_letters: %d\n", report.QueueStatus.Extractor.DeadLetterCount)
Expand Down
2 changes: 1 addition & 1 deletion cmd/gormes/goncho_doctor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestGonchoDoctorCommand_TextZeroStateReportsOperatorLadder(t *testing.T) {
"honcho_context",
"Context dry-run",
"No stored representation for operator:diagnostic.",
"Queue status (observability only; not synchronization)",
"Queue status (observability/debugging only; not synchronization; do not wait for empty queue)",
"extractor_queue_depth: 0",
"representation: total=0 pending=0 in_progress=0 completed=0",
"summary: total=0 pending=0 in_progress=0 completed=0",
Expand Down
2 changes: 1 addition & 1 deletion cmd/gormes/memory.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func formatExtractorStatus(status memory.ExtractorStatus) string {

func formatGonchoQueueStatus(status goncho.QueueStatus) string {
var b strings.Builder
b.WriteString("Goncho queue status (observability only; not synchronization)\n")
b.WriteString("Goncho queue status (observability/debugging only; not synchronization; do not wait for empty queue)\n")
for _, taskType := range goncho.QueueTaskTypes {
counts := status.WorkUnits[taskType]
b.WriteString(fmt.Sprintf("%s: total=%d pending=%d in_progress=%d completed=%d\n",
Expand Down
2 changes: 1 addition & 1 deletion cmd/gormes/memory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func TestMemoryStatusCommand_PrintsGonchoQueueZeroState(t *testing.T) {

out := stdout.String()
for _, want := range []string{
"Goncho queue status (observability only; not synchronization)",
"Goncho queue status (observability/debugging only; not synchronization; do not wait for empty queue)",
"representation: total=0 pending=0 in_progress=0 completed=0",
"summary: total=0 pending=0 in_progress=0 completed=0",
"dream: total=0 pending=0 in_progress=0 completed=0",
Expand Down
12 changes: 6 additions & 6 deletions docs/content/building-gormes/architecture_plan/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ machine-readable queue for developing the full `gormes-agent`.
## Progress

<!-- PROGRESS:START kind=docs-full-checklist -->
**Overall:** 29/73 subphases shipped · 13 in progress · 31 planned
**Overall:** 30/73 subphases shipped · 12 in progress · 31 planned

| Phase | Status | Shipped |
|-------|--------|---------|
| Phase 1 — The Dashboard | ✅ | 3/3 subphases |
| Phase 2 — The Gateway | 🔨 | 12/19 subphases |
| Phase 3 — The Black Box (Memory) | 🔨 | 11/14 subphases |
| Phase 3 — The Black Box (Memory) | 🔨 | 12/14 subphases |
| Phase 4 — The Brain Transplant | 🔨 | 0/8 subphases |
| Phase 5 — The Final Purge | 🔨 | 1/18 subphases |
| Phase 6 — The Learning Loop (Soul) | ⏳ | 0/6 subphases |
Expand Down Expand Up @@ -297,18 +297,18 @@ machine-readable queue for developing the full `gormes-agent`.
- [x] Lineage-aware source-filtered search hits
- [ ] Operator-auditable search evidence

### 3.F — Goncho Honcho Memory Parity 🔨
### 3.F — Goncho Honcho Memory Parity ✅

- [x] Goncho context representation options
- [x] Goncho search filter grammar
- [x] Directional peer cards and representation scopes
- [ ] Goncho queue status read model
- [x] Goncho queue status read model
- [x] Goncho summary context budget
- [x] Goncho dialectic chat contract
- [ ] Goncho file upload import ingestion
- [x] Goncho file upload import ingestion
- [x] Goncho topology design fixtures
- [x] Goncho operator diagnostics contract
- [ ] Goncho streaming chat persistence contract
- [x] Goncho streaming chat persistence contract
- [x] Goncho configuration namespace

## Phase 4 — The Brain Transplant 🔨
Expand Down
Loading