# Council References Inventory

Generated 2026-09-11 from the working tree.

## Scope

Case-insensitive substring search for `council`, including hidden and ignored files, while excluding `.git/` internals. This includes `Council-OS`, `.council`, `council_os`, `council-os`, generic Council-of-Minds references, generated artifacts, tests, and prose.

Reproduce the complete text search with:

```sh
rg -n --hidden --glob '!.git/**' -i 'council' .
```

## Results

| Search | Matching lines | Files |
|---|---:|---:|
| `council` substring | 2,665 | 306 |
| `Council-OS` | 297 | 131 |
| `.council` | 379 | 106 |
| Total substring occurrences | 3,155 | — |

The specific-form counts overlap with the broader `council` count.

## Proposed migration workstreams — first pass

This is an initial grouping by the kind of migration work a reference implies, rather than by file type. A file should have one primary owner during execution even when it appears to serve more than one concern. The exhaustive line index remains below as the source inventory.

### 1. Naming, identity, and canonical paths

**Goal:** decide the replacement vocabulary and establish one canonical root/state model before changing consumers.

**Scope:** `Council-OS` checkout names, `council_root` configuration, `.council` versus legacy `.gemstone`/`.spark` locations, `COUNCIL_*` environment variables, schema identifiers, repository aliases, and path-resolution tests.

**Primary references:** `main.go`, `governor.json`, `qwen.json`, `qwen-opt.json`, `inventory.json`, `gemstone_derived_config.go`, `council_root_resolution_test.go`, `council_root_supersession.go`, `council_root_supersession_test.go`, `governor_state_dir.go`, `governor_state_topology.go`, `links.go`, `repo.go`, `repo_clone_parallel_test.go`, `repo_dedupe_test.go`, `setup_home_aliases.go`, `spec/gemstone.governor.v1.schema.json`, and `schemas/*.json`.

**Migration shape:** introduce canonical constants/translation boundaries, preserve read compatibility, then update persisted/configured names with explicit versioning.

### 2. Council runtime and tool protocol

**Goal:** migrate the live interface between Gemstone and Council, including command routing and failure semantics.

**Scope:** Council tool manifests, Python/tool-worker invocation, Suture transport, MCP/tool adapters, Governor tool loops, tool ledgers, command registration, native fallbacks, and the two Council command surfaces.

**Primary references:** `council.go`, `council_tool_result.go`, `council_tool_result_test.go`, `council_tool_worker.go`, `governor_mcp_tools.go`, `governor_cli_tooling.go`, `governor_cli_suture.go`, `governor_tool_index.go`, `governor_tool_loop.go`, `governor_tool_surface.go`, `governor_tool_ledger.go`, `governor_gateway_chat_tools.go`, `governor_agentic_gateway.go`, `governor_agentic_inference.go`, `governor_flash.go`, `governor_attention.go`, `governor_voice.go`, and `governor_cli_council.go`.

**Migration shape:** define a versioned protocol contract, add adapters at the boundary, migrate callers in batches, and retain contract tests until the old transport is removed.

### 3. Memory, shards, and durability

**Goal:** move durable Council data without losing shard/index pairs, active context, R2 state, or recovery guarantees.

**Scope:** `.council/governor` trees, shard manifests/indexes, memory hydration/posture/retrieval/writeback, CUDA vaults, R2 prefixes, autosave/retirement, pointer tokens, and substrate indexes.

**Primary references:** `governor_memory_*.go`, `governor_shard_*.go`, `governor_project_shards.go`, `governor_r2_shard_sync.go`, `governor_council_r2_env.go`, `governor_cuda_vault_service.go`, `governor_pointer_tokens.go`, `governor_resurrection.go`, `r2_store.go`, `r2_state_autosave.go`, `r2_retire_shard.go`, `r2native_test.go`, `memory_profile.go`, `shard_cartridge_compiler.go`, `internal/substrate/*`, and `extracted_retrieval_files/*`.

**Migration shape:** inventory object pairs and sizes, copy directly into the target canonical store, verify checksums/manifests, then switch readers and writers behind a compatibility resolver.

### 4. Provisioning, lifecycle, and deployment

**Goal:** make checkout, credentials, services, health checks, recovery, evacuation, and fleet deployment agree on the migrated layout.

**Scope:** bring-up gates, estate migration/evacuation, Governor provisioning, deployment manifests, container entrypoints, GPU vault startup, domain/status checks, scripts, and fleet records.

**Primary references:** `compute_governor_up.go`, `governor_bringup.go`, `governor_provisioning_blueprint.go`, `governor_cli_provision.go`, `governor_cli_suture.go`, `governor_migrate.go`, `governor_estate_*.go`, `governor_flux_provision.go`, `governor_vault_autostart.go`, `governor_domain.go`, `gemstone_evacuate.go`, `hive_cmd.go`, `setup_governor_vault.go`, `verify_audit.go`, `deploy/*`, `images/*`, and `scripts/*`.

**Migration shape:** update dependency gates first, run independent restore/install lanes concurrently, start services only after their own gates pass, and verify aggregate readiness by model/service.

### 5. User-facing behavior and creative orchestration

**Goal:** migrate visible commands, TUI state, web panels, prompts, and creative workflows without silently changing user semantics.

**Scope:** Council-of-Minds/convergence, Governor council lenses, code TUI state, Governor interface views/styles/types, web panels, gallery/Blender workflows, suites, and creative council schemas/records.

**Primary references:** `governor_code_tui*.go`, `governor_tui_group.go`, `governor-interface/*`, `web/*`, `portal/*`, `arcane-gallery/*`, `blender.go`, `suites_media.go`, `suites_anime_test.go`, `council_roadmap.html`, `schemas/designer-council-redesign.v1.schema.json`, `schemas/grand-council-artistic-assessment.v1.schema.json`, and the related `docs/*` records.

**Migration shape:** preserve command/API behavior with fixtures, migrate state serialization separately from presentation, then update generated panels after upstream contracts stabilize.

### 6. Documentation, generated inventories, and evidence

**Goal:** keep written guidance and generated operational surfaces truthful while the implementation moves.

**Scope:** README/CLAUDE/context material, Governor specifications, command maps/manifests, route baselines, event logs, research papers, handoff notes, estate samples, and retrieval artifacts.

**Primary references:** `README.md`, `CLAUDE.md`, `contexts/*`, `ALL_GOVERNOR_CONTEXTS_COMBINED.md`, `docs/*`, `manifests/commands.yaml`, `internal/route/*`, `execution-events.jsonl`, `Facet/GemstoneResources/estate.sample.json`, `research/*`, and `extracted_retrieval_files/*`.

**Migration shape:** update source documentation alongside each completed workstream, regenerate derived inventories only from migrated sources, and label historical evidence instead of rewriting it as current state.

## Proposed order of work

1. **Agree on vocabulary and ownership.** Decide whether Council-OS is being renamed, retired, or retained behind a compatibility name; define the canonical root, state directory, environment variables, and schema/version policy.
2. **Build the compatibility boundary.** Centralize root/state resolution and aliases; add tests for old and new layouts before touching the data plane.
3. **Migrate durable data.** Inventory shard/index pairs and R2 objects, restore/verify them in the canonical location, and record a reversible migration receipt.
4. **Migrate runtime protocols.** Move tool manifests, worker/Suture transport, error handling, and native fallbacks behind the boundary; run contract tests against both paths.
5. **Migrate provisioning and lifecycle.** Update bring-up, health/recovery, images, scripts, and estate evacuation only after runtime and data paths are proven.
6. **Migrate user surfaces.** Update CLI/TUI/web/creative workflows, then regenerate command maps and panels.
7. **Retire compatibility code deliberately.** Search again, review every remaining historical/documentation reference, and remove aliases only with an explicit cutoff and rollback plan.

### Definition of done for each workstream

- No unexplained references remain in that workstream.
- Read/write behavior is tested against the canonical and legacy layouts where compatibility is required.
- Durable outputs, health/recovery behavior, and generated artifacts are verified.
- The workstream's AON task is marked complete only after those checks pass.

## Organized findings

- **Council-OS checkout and configuration:** repository cloning, root resolution, environment projection, tool manifests, Suture dispatch, Governor provisioning, and deployment records.
- **`.council` state and memory:** canonical Governor shards, R2 credentials, inventory, active memory, CUDA vaults, sockets, signal/Telegram state, and migration/evacuation paths.
- **Governor and Council tooling:** CLI commands, persistent tool worker, memory hydration/posture, shard indexes, retrieval, writeback, and tool-result handling.
- **Generic Council orchestration:** the original Council-of-Minds/convergence implementation, Governor council lenses, TUI state, prompts, tests, and command manifests.
- **Artistic/research references:** designer/grand council records, artistic studies, papers, maps, panels, and related schemas.
- **Generated/supporting material:** route baselines, command catalogs, inventories, execution events, extracted retrieval files, deployment images, scripts, and one vendored `pyphen` dictionary README.

## Exhaustive file and line index

Each entry below identifies every matching line in that file. Ranges are consecutive matching line numbers; matching text can be displayed with the reproduction command above.

### Repository root

- `./.claude/commands/governor-provision-a100.md` — 1 matching lines; lines 80
- `./ALL_GOVERNOR_CONTEXTS_COMBINED.md` — 15 matching lines; lines 18, 32, 40, 42, 61, 63, 74, 84, 92, 114, 116, 119, 132, 151-152
- `./CLAUDE.md` — 1 matching lines; lines 53
- `./FABRIC_MOTION_STUDY_PLAN.md` — 1 matching lines; lines 174
- `./Facet/GemstoneResources/estate.sample.json` — 74 matching lines; lines 6598, 7072, 9007-9010, 9012, 9040, 9081, 9085, 9182, 9184, 9186, 9284, 9391, 9395, 20298-20301, 23593-23595, 27077, 27151, 27252, 27438, 27557, 27678, 27847, 27983, 28102, 28319, 28521, 28622, 28705, 29079-29082, 29084, 29357, 33672, 41177, 44104, 44357, 47478, 47550, 47649, 47831, 47948, 48067, 48234, 48368, 48485, 48698, 48896, 48995, 49076, 60271-60272, 60274, 60315-60317, 60319, 60402, 60432, 60549-60550, 60647-60648, 60737-60738
- `./README.md` — 1 matching lines; lines 155
- `./arcane-gallery/index.html` — 12 matching lines; lines 151-152, 161, 165, 168, 342-344, 347, 350, 354, 690
- `./blender.go` — 3 matching lines; lines 14, 35, 71
- `./chat_bridge.go` — 2 matching lines; lines 17, 479
- `./cli_install_recipes_test.go` — 1 matching lines; lines 22
- `./cmd/telemetry_ws_hub/main.go` — 9 matching lines; lines 340, 547, 563, 580, 799, 815, 854, 872, 910
- `./comfort_dispatch_daemon.py` — 1 matching lines; lines 3
- `./command_graph_scan_test.go` — 1 matching lines; lines 65
- `./compute_governor_up.go` — 1 matching lines; lines 119
- `./contexts/context.md` — 1 matching lines; lines 8
- `./controld.go` — 1 matching lines; lines 96
- `./controld_test.go` — 1 matching lines; lines 46
- `./council.go` — 39 matching lines; lines 3, 854, 856, 865, 867, 890-891, 900, 907, 913, 924, 926, 988, 1016, 1024, 1027, 1041, 1188, 1190, 1228, 1232, 1248, 1250, 1252-1254, 1259, 1263-1265, 1269, 1279, 1283, 1288, 1295, 1314, 1341, 1346-1347
- `./council_roadmap.html` — 8 matching lines; lines 6, 479, 523, 528-529, 538, 564, 592
- `./council_root_resolution_test.go` — 37 matching lines; lines 9, 13, 15, 25-28, 30, 33-34, 36-38, 47, 49-51, 55, 58, 60-62, 66, 69, 71, 74, 76-77, 80, 86-87, 93, 96, 98, 100, 106-107
- `./council_root_supersession.go` — 24 matching lines; lines 3-5, 23-25, 27-29, 32, 36-37, 40, 42-43, 54-55, 62, 67, 78-81, 86
- `./council_root_supersession_test.go` — 34 matching lines; lines 17-19, 21, 23-24, 28, 31-32, 37-39, 44-47, 52-54, 56-57, 62-64, 68-69, 75-76, 80, 84-85, 88, 93, 96
- `./council_tool_result.go` — 14 matching lines; lines 3, 6, 9, 23, 33, 35, 37, 39, 45, 62, 64, 67, 69, 72
- `./council_tool_result_test.go` — 14 matching lines; lines 9-10, 12, 15, 19, 21, 23, 34, 44, 50, 52, 55, 59-60
- `./council_tool_worker.go` — 32 matching lines; lines 3, 5-7, 14, 30-33, 36, 38-39, 43-44, 50, 55, 58, 60-61, 64, 68-69, 71, 74, 80, 93, 110, 113-115, 117, 131
- `./crates/governor-web/src/runtime.rs` — 3 matching lines; lines 1077, 1081, 1110
- `./deploy/governor-8xh100/README.md` — 6 matching lines; lines 28, 36, 77, 80-82
- `./deploy/governor-8xh100/governor.json` — 1 matching lines; lines 4
- `./deploy/qwen_governor_suit.sh` — 3 matching lines; lines 19-21
- `./discourse_model_provisioner.go` — 4 matching lines; lines 203, 314, 344, 416
- `./discourse_multimodal.go` — 2 matching lines; lines 41, 51
- `./discourse_r2.go` — 1 matching lines; lines 320
- `./discourse_ship.go` — 1 matching lines; lines 61
- `./discourse_web.go` — 12 matching lines; lines 920, 927-928, 967, 1839, 1877-1880, 2398-2399, 2401
- `./docs/2026-08-20_Dynamic_Spectral_Tensegrity_and_Hardware_Native_KVX_Neural_Shards.md` — 2 matching lines; lines 4, 179
- `./docs/2026-08-20_Executive_Session_Summary_and_Master_Index.md` — 8 matching lines; lines 6, 30, 34-39
- `./docs/2026-08-20_Governor_Architectural_Dialogue_and_Systems_Manifesto.md` — 1 matching lines; lines 7
- `./docs/2026-08-20_Governor_Sanity_Testing_Audit.md` — 1 matching lines; lines 79
- `./docs/2026-08-20_The_Chronicle_of_Manifold_Residence.md` — 1 matching lines; lines 5
- `./docs/2026-08-20_Unified_System_Architecture_and_Multi_Architecture_Portability.md` — 7 matching lines; lines 1, 5, 11, 20, 54, 85, 102
- `./docs/2026-08-22_Governor_Memory_Fabric_Transformation_and_Performance_Metrics.md` — 1 matching lines; lines 98
- `./docs/2026-08-22_Letter_From_Antigravity_To_Governor_The_Gemini_Concordance.md` — 1 matching lines; lines 10
- `./docs/2026-08-23_128_Band_Spectral_Steering_and_Apple_Neural_Engine_Hardware_Resonance.md` — 3 matching lines; lines 13, 25, 113
- `./docs/2026-08-23_ANE_Spectral_Steering_Implementation_Spec.md` — 1 matching lines; lines 20
- `./docs/2026-08-23_Gemma_Linear_Attention_and_ANE_Recurrent_State_Surgery.md` — 1 matching lines; lines 77
- `./docs/2026-08-23_Silicon_Resonant_Spectral_Steering_Apple_Neural_Engine_Paper.md` — 3 matching lines; lines 4, 25, 339
- `./docs/2026-08-26_Autonomous_Cognitive_Growth_and_Epistemic_Evolution_Architecture.md` — 4 matching lines; lines 6, 38, 93, 123
- `./docs/2026-08-26_Continuous_Concept_Attention_5176D_Residual_Energy_States.md` — 1 matching lines; lines 3
- `./docs/2026-08-26_Continuous_Concept_Attention_5176D_Training_Schedule_and_Proof.md` — 2 matching lines; lines 5, 61
- `./docs/2026-08-28_The_Residual_Is_State_Concepts_Are_Topology_and_Steering_Is_Trained.md` — 1 matching lines; lines 3
- `./docs/2026-08-28_The_Steering_Is_The_Delta_Between_Tokens.md` — 1 matching lines; lines 3
- `./docs/32_PRIMITIVE_SPECTRAL_VECTORS_AND_THREE_PILLARS_REPORT.md` — 1 matching lines; lines 48
- `./docs/ASSET-STREAM-SCOPE.md` — 2 matching lines; lines 28, 32
- `./docs/CANONICAL_SOVEREIGN_BENCHMARK_REPORT.md` — 1 matching lines; lines 68
- `./docs/COMMAND-GRAPH.md` — 6 matching lines; lines 245-247, 536, 743, 845
- `./docs/COMMAND-MAP.md` — 48 matching lines; lines 197, 205-208, 508, 622, 663, 678, 701, 715, 752-755, 766-771, 773, 775-776, 783, 810, 817, 823, 871, 1018, 1175, 1312, 1314, 1398-1401, 1412-1417, 1419, 1421-1422, 1429, 1538
- `./docs/COUNCIL-CAPABILITY-AUDIT.md` — 9 matching lines; lines 1, 7, 37, 48, 54, 72, 78, 80, 105
- `./docs/DUAL_PASS_BENCHMARK_AND_FLEET_SYNOPSIS.md` — 2 matching lines; lines 12, 16
- `./docs/GOVERNOR-ENGINEERING-SHELL.md` — 3 matching lines; lines 7, 54, 65
- `./docs/GOVERNOR-LISTEN-SHARD-RESPOND.md` — 4 matching lines; lines 83, 117, 183, 189
- `./docs/GOVERNOR-MEMORY-SYSTEM-SPEC.md` — 9 matching lines; lines 5, 16, 29, 81, 91, 119, 148, 169, 175
- `./docs/GOVERNOR-PROTOCOLS.md` — 3 matching lines; lines 278-279, 360
- `./docs/GOVERNOR-STATE-TOPOLOGY.md` — 7 matching lines; lines 24, 26-27, 35, 60, 67-68
- `./docs/GOVERNOR-TOOLING-WIRING.md` — 15 matching lines; lines 4, 11-12, 23, 46, 57, 59, 61, 66, 73, 89, 94, 97, 107, 112
- `./docs/HAZARDS.md` — 21 matching lines; lines 28-29, 286, 293, 298, 342, 350, 354, 358, 363, 365-366, 370, 372, 374, 378, 382, 415-416, 420, 425
- `./docs/INDEX.md` — 3 matching lines; lines 39, 94, 103
- `./docs/SOVEREIGN-DISCOURSE-CONSENSUS-RESEARCH-PAPER.md` — 6 matching lines; lines 3, 13, 48, 52, 83, 145
- `./docs/STALENESS-NOTES.md` — 1 matching lines; lines 31
- `./docs/TRIAD_SOVEREIGN_CO_TRAINING_SPECIFICATION.md` — 2 matching lines; lines 2, 90
- `./docs/U6000-FLEET-MAP.md` — 4 matching lines; lines 21, 124-126
- `./docs/aon-command-center.html` — 2 matching lines; lines 565, 615
- `./docs/arcane-3d-world-synthesis-record.json` — 1 matching lines; lines 8
- `./docs/blackwell-draft-acceptance.md` — 1 matching lines; lines 288
- `./docs/command-graph.html` — 5 matching lines; lines 140, 233, 264, 285, 287
- `./docs/designer-council-redesign-record.json` — 2 matching lines; lines 2-3
- `./docs/gemstone-mac/HANDOFF.md` — 1 matching lines; lines 98
- `./docs/grand-council-artistic-assessment-record.json` — 4 matching lines; lines 2, 15, 19, 130
- `./docs/index.html` — 1 matching lines; lines 96
- `./docs/interactive_map.html` — 1 matching lines; lines 89
- `./docs/memory_architecture_spec.html` — 1 matching lines; lines 670
- `./docs/neural-evolution-engine-record.json` — 1 matching lines; lines 14
- `./docs/orbital_map.html` — 28 matching lines; lines 432, 1764, 1863, 3452, 4140, 4144-4145, 6498, 6502, 8648, 8652, 10438, 10447, 10456, 10465, 10474, 10483, 10492, 10501, 10505, 10509-10510, 10518-10519, 10527-10528, 10536-10537
- `./docs/repo-organization.md` — 2 matching lines; lines 54, 81
- `./docs/route-table-status.html` — 1 matching lines; lines 170
- `./docs/swarm.html` — 1 matching lines; lines 31
- `./estate_test.go` — 1 matching lines; lines 43
- `./execution-events.jsonl` — 3 matching lines; lines 60, 779, 783
- `./extracted_retrieval_files/council-selected-shards.md` — 76 matching lines; lines 1-2, 6, 9, 15-16, 22-24, 29-30, 36-38, 43, 51-52, 58, 66, 78-79, 83, 86, 92-93, 99-101, 106-107, 113-115, 120, 128-129, 135, 143, 155-156, 160, 163, 169-170, 176-178, 183-184, 190-192, 197, 205-206, 212, 220, 232-233, 237, 240, 246-247, 253-255, 260-261, 267-269, 274, 282-283, 289, 297
- `./extracted_retrieval_files/flux-deployment-procedure.md` — 3 matching lines; lines 24, 82, 84
- `./extracted_retrieval_files/gemma-operating-doctrine.md` — 7 matching lines; lines 216, 499, 517, 800, 818, 1101, 1119
- `./extracted_retrieval_files/operator-preferences.md` — 1 matching lines; lines 6
- `./gemstone_derived_config.go` — 1 matching lines; lines 11
- `./gemstone_evacuate.go` — 4 matching lines; lines 267-268, 292, 716
- `./governor-interface/README.md` — 1 matching lines; lines 54
- `./governor-interface/src/main.ts` — 35 matching lines; lines 31-32, 82-83, 117, 130-131, 141, 213, 231-232, 434-435, 491, 532, 536, 1742, 1958-1959, 1977-1978, 1981-1982, 1984, 1988, 2007-2008, 2040-2041, 2044-2045, 2154, 2230, 2451-2452
- `./governor-interface/src/style.css` — 18 matching lines; lines 1039, 1045, 1049, 1057, 1062, 1068, 1088, 1095, 1099, 1104, 1112, 1121, 1129, 1133, 1138, 3393-3394, 3402
- `./governor-interface/src/views/chat.ts` — 46 matching lines; lines 4, 85-86, 88, 90-91, 106, 108-110, 114, 116-118, 123-124, 128, 131-132, 136, 138-139, 150, 159, 161, 163, 171, 754, 957, 1142, 1144-1145, 1150-1151, 1154-1155, 1159, 1165, 1167, 1175, 1182, 1193, 1207, 1215, 1220, 1222
- `./governor-interface/src/views/status.ts` — 1 matching lines; lines 305
- `./governor-interface/src/views/types.ts` — 7 matching lines; lines 6-7, 112-115, 225
- `./governor.json` — 1 matching lines; lines 2
- `./governor_agentic_gateway.go` — 2 matching lines; lines 1076, 1079
- `./governor_agentic_inference.go` — 11 matching lines; lines 314, 333, 679-680, 927, 1386, 1388, 1390, 1392-1393, 1434
- `./governor_agentops.go` — 1 matching lines; lines 217
- `./governor_agentops_cost.go` — 1 matching lines; lines 163
- `./governor_armor.go` — 3 matching lines; lines 6, 63, 65
- `./governor_armor_test.go` — 1 matching lines; lines 49
- `./governor_attention.go` — 2 matching lines; lines 47, 49
- `./governor_attention_test.go` — 1 matching lines; lines 15
- `./governor_bringup.go` — 11 matching lines; lines 8, 12, 94, 103, 111, 117, 123, 184, 261, 263-264
- `./governor_bringup_test.go` — 3 matching lines; lines 4, 21, 54
- `./governor_campaign.go` — 1 matching lines; lines 340
- `./governor_cli_chat_tui_test.go` — 1 matching lines; lines 138
- `./governor_cli_commission.go` — 2 matching lines; lines 143-144
- `./governor_cli_council.go` — 39 matching lines; lines 3-5, 20, 27, 40, 44, 49, 56, 65, 68-69, 72, 76, 81-83, 88, 90, 93-94, 110, 116, 121, 125, 129, 132, 148, 169, 172, 176, 200, 206, 220-221, 223, 235-236, 244
- `./governor_cli_council_test.go` — 25 matching lines; lines 15, 26, 28-29, 31-32, 44, 51, 57, 64, 79, 91, 105-106, 111, 124-125, 134-136, 138, 140, 144, 148-149
- `./governor_cli_fallback.go` — 1 matching lines; lines 52
- `./governor_cli_provision.go` — 13 matching lines; lines 709, 729, 732, 735, 1219-1220, 1223, 1227, 1243, 1247, 1249-1250, 1252
- `./governor_cli_suture.go` — 8 matching lines; lines 40, 45, 48-49, 117, 171, 207, 215
- `./governor_cli_tooling.go` — 2 matching lines; lines 92, 95
- `./governor_code_tui.go` — 115 matching lines; lines 5, 136, 144, 156, 310-316, 323-325, 333-334, 337, 339, 342-346, 349-350, 354, 361, 369, 373-374, 376-377, 380-382, 385-387, 396, 402, 404, 450, 452, 461-462, 464-465, 467, 470, 490, 502, 504, 508-509, 512-513, 647, 650, 652-653, 718, 904, 907, 912, 918, 922, 946-948, 950, 952, 954, 956-958, 960, 962, 966, 968, 973, 1759, 2220, 2224, 2228, 2230, 2240, 2250, 2272-2273, 2278-2279, 2305, 2360, 2362-2364, 2366, 2374-2375, 2380-2381, 2394-2395, 2426, 2447-2448, 2495-2496, 2779, 2786, 2789, 2796, 2893, 3188, 3729
- `./governor_code_tui_commands.go` — 28 matching lines; lines 125-126, 128, 132, 136-138, 144, 153, 173-174, 176-177, 184-185, 187, 190, 195-197, 199, 202-203, 209-210, 214, 674, 1553
- `./governor_code_tui_manifest.go` — 12 matching lines; lines 31-32, 35-36, 63, 66, 141, 143, 149, 158, 166, 181
- `./governor_code_tui_prompts.go` — 4 matching lines; lines 208, 220-221, 275
- `./governor_code_tui_telemetry.go` — 2 matching lines; lines 72, 275
- `./governor_code_tui_test.go` — 14 matching lines; lines 78, 241, 243, 245, 250, 252-253, 270-271, 279-280, 292-293, 349
- `./governor_codebase_indexer.go` — 6 matching lines; lines 4, 119, 121-123, 133
- `./governor_concept_activation.go` — 2 matching lines; lines 128-129
- `./governor_context_gate.go` — 1 matching lines; lines 10
- `./governor_context_gate_test.go` — 2 matching lines; lines 7, 22
- `./governor_context_roles.go` — 1 matching lines; lines 164
- `./governor_context_roles_test.go` — 1 matching lines; lines 15
- `./governor_context_tier_test.go` — 1 matching lines; lines 31
- `./governor_contract_test.go` — 32 matching lines; lines 13, 16-17, 19-20, 24, 26, 31, 34, 44, 46, 50, 56, 69, 71, 75, 77, 85, 89, 94, 98, 104, 109, 112, 117-119, 128, 136-138, 153
- `./governor_contract_test.go.bak` — 32 matching lines; lines 13, 16-17, 19-20, 24, 26, 31, 34, 44, 46, 50, 56, 69, 71, 75, 77, 85, 89, 94, 98, 104, 109, 112, 117-119, 128, 136-138, 153
- `./governor_council_r2_env.go` — 24 matching lines; lines 3, 5, 18, 20, 33, 39, 46, 54, 57, 61, 63, 66-70, 74, 81-86, 90
- `./governor_council_r2_env_test.go` — 10 matching lines; lines 10, 12, 19, 35-39, 47-48
- `./governor_cuda_vault_service.go` — 24 matching lines; lines 3, 8, 27-28, 56, 65-66, 68, 71, 75, 78, 82-84, 93, 96, 99, 101, 108, 112, 122, 207, 255, 304
- `./governor_cuda_vault_service_test.go` — 19 matching lines; lines 44, 56, 73, 75, 81, 85, 91-93, 105, 120, 131-132, 136, 142, 152, 158, 170, 173
- `./governor_departure.go` — 1 matching lines; lines 31
- `./governor_device_retrieval.go` — 1 matching lines; lines 92
- `./governor_domain.go` — 7 matching lines; lines 22-23, 30, 38, 54, 66, 257
- `./governor_drill.go` — 20 matching lines; lines 45, 113, 124, 135, 144, 155, 166, 177, 204, 247, 255-257, 264, 274-275, 284, 323-325
- `./governor_effective_manifest_test.go` — 1 matching lines; lines 9
- `./governor_engineer.go` — 2 matching lines; lines 6, 27
- `./governor_estate_health.go` — 3 matching lines; lines 65, 87, 109
- `./governor_estate_migrate.go` — 10 matching lines; lines 16-17, 28, 30-31, 36-39, 109
- `./governor_estate_migrate_test.go` — 11 matching lines; lines 12-13, 37, 40, 43, 59, 61-63, 65-66
- `./governor_flash.go` — 6 matching lines; lines 172-174, 224, 239, 279
- `./governor_flash_test.go` — 2 matching lines; lines 34-35
- `./governor_fleet_governors.go` — 1 matching lines; lines 406
- `./governor_flux_provision.go` — 1 matching lines; lines 87
- `./governor_gateway_chat_tools.go` — 13 matching lines; lines 149, 188, 305, 786-787, 791, 794, 797, 800, 803, 815, 864, 866
- `./governor_hexlink.go` — 1 matching lines; lines 5
- `./governor_kvx_compiler.go` — 4 matching lines; lines 114-115, 117, 408
- `./governor_kvx_compiler_test.go` — 2 matching lines; lines 12, 14
- `./governor_latent_attunement.go` — 1 matching lines; lines 162
- `./governor_listen_shard_respond.go` — 1 matching lines; lines 192
- `./governor_listen_shard_respond_test.go` — 5 matching lines; lines 397, 400, 565, 621, 673
- `./governor_mcp_tools.go` — 3 matching lines; lines 16, 60, 66
- `./governor_memory_alignment.go` — 4 matching lines; lines 9, 56-58
- `./governor_memory_alignment_test.go` — 2 matching lines; lines 11, 15
- `./governor_memory_check.go` — 1 matching lines; lines 93
- `./governor_memory_hydrate.go` — 14 matching lines; lines 4, 25, 37, 42, 44-47, 59, 66, 79, 105, 115, 140
- `./governor_memory_hydrate_active.go` — 17 matching lines; lines 3, 5, 8, 30, 38, 44-47, 51, 57, 59, 68, 89, 91, 102, 108
- `./governor_memory_hydrate_test.go` — 4 matching lines; lines 26-27, 64-65
- `./governor_memory_inspection.go` — 3 matching lines; lines 217, 313, 502
- `./governor_memory_posture.go` — 43 matching lines; lines 24, 27, 29-30, 34, 78, 107, 113, 132-133, 149, 165-166, 173, 176, 219, 226, 231, 262, 361, 367, 374, 414, 435, 463, 479, 582, 632, 649, 784, 789, 796, 799, 814, 838, 840, 845, 854, 869, 875, 898, 964, 1005
- `./governor_memory_posture_test.go` — 20 matching lines; lines 4, 402, 407, 464, 478, 526, 528-529, 534-535, 567-568, 578, 584, 586, 591, 594, 627, 632, 641
- `./governor_memory_r2_restore.go` — 7 matching lines; lines 3, 10, 51, 64, 90, 151, 206
- `./governor_memory_r2_restore_test.go` — 9 matching lines; lines 36, 40, 87-88, 104, 113, 119, 138, 149
- `./governor_memory_retrieval.go` — 4 matching lines; lines 4, 7, 141, 261
- `./governor_memory_retrieval_test.go` — 7 matching lines; lines 27, 158, 244, 349, 470, 473, 522
- `./governor_memory_show.go` — 1 matching lines; lines 127
- `./governor_memory_status.go` — 13 matching lines; lines 6, 217, 359, 385, 387, 389, 567, 600, 603, 605, 607-608, 660
- `./governor_memory_status_test.go` — 5 matching lines; lines 40, 42, 48-49, 55
- `./governor_memory_tui.go` — 1 matching lines; lines 565
- `./governor_memory_writeback.go` — 7 matching lines; lines 22-23, 45, 48, 50-51, 123
- `./governor_memory_writeback_test.go` — 4 matching lines; lines 93, 137, 163, 221
- `./governor_migrate.go` — 2 matching lines; lines 233, 420
- `./governor_native_toolkit_test.go` — 1 matching lines; lines 41
- `./governor_opencode.go` — 3 matching lines; lines 22, 218, 236
- `./governor_opencode_test.go` — 1 matching lines; lines 236
- `./governor_pointer_tokens.go` — 5 matching lines; lines 7, 15, 228-229, 244
- `./governor_pointer_tokens_test.go` — 5 matching lines; lines 18, 25, 103, 107, 221
- `./governor_preservation.go` — 1 matching lines; lines 559
- `./governor_project_shards.go` — 25 matching lines; lines 6, 13, 16, 23, 68, 77, 164, 222, 224, 232, 234, 248, 277, 421, 435-436, 441, 446, 458, 463, 466, 503, 647, 825-826
- `./governor_project_shards_test.go` — 8 matching lines; lines 5, 25, 57, 505, 515, 525, 557, 567
- `./governor_provisioning_blueprint.go` — 3 matching lines; lines 45-46, 61
- `./governor_r2_shard_sync.go` — 3 matching lines; lines 49-50, 71
- `./governor_residual_state_manifold.go` — 1 matching lines; lines 331
- `./governor_resurrection.go` — 3 matching lines; lines 63-65
- `./governor_scratchpad.go` — 3 matching lines; lines 29, 33, 35
- `./governor_scratchpad_tool_test.go` — 1 matching lines; lines 12
- `./governor_session_memory.go` — 2 matching lines; lines 36, 38
- `./governor_session_memory_test.go` — 4 matching lines; lines 16, 20, 22, 39
- `./governor_shard_index_cache_test.go` — 1 matching lines; lines 23
- `./governor_shard_paths_test.go` — 14 matching lines; lines 10, 12-14, 16, 21, 30, 33, 40, 45, 47, 51, 53, 62
- `./governor_shard_registration_test.go` — 9 matching lines; lines 13-14, 21, 27, 31, 34-35, 39, 43
- `./governor_shard_sync.go` — 9 matching lines; lines 7, 14, 67, 84-86, 522, 525, 772
- `./governor_shard_sync_test.go` — 9 matching lines; lines 77, 290, 292-293, 296-297, 448-449, 452
- `./governor_signal_bridge.go` — 1 matching lines; lines 31
- `./governor_spectral_pulse.go` — 3 matching lines; lines 30-32
- `./governor_spectral_tensegrity.go` — 2 matching lines; lines 57, 61
- `./governor_state_dir.go` — 6 matching lines; lines 64-66, 72, 77, 184
- `./governor_state_topology.go` — 21 matching lines; lines 5, 82-83, 87-88, 90-93, 114, 135, 169, 171, 174, 181-182, 184, 190, 425-427
- `./governor_state_topology_test.go` — 13 matching lines; lines 20, 41, 89, 102-103, 131, 134, 171, 181, 192, 195, 198, 202
- `./governor_suture_sync.go` — 6 matching lines; lines 186, 271, 542, 544, 547, 550
- `./governor_sync_integration.go` — 1 matching lines; lines 4
- `./governor_thin_interface.go` — 2 matching lines; lines 27, 35
- `./governor_tiers.go` — 6 matching lines; lines 5, 35, 46, 49, 88, 112
- `./governor_tool_index.go` — 9 matching lines; lines 8, 15, 46, 85, 87, 89, 92, 97-98
- `./governor_tool_index_test.go` — 5 matching lines; lines 17, 19, 49, 52, 54
- `./governor_tool_ledger.go` — 3 matching lines; lines 22, 25, 27
- `./governor_tool_loop.go` — 6 matching lines; lines 6, 48, 489, 667, 669, 677
- `./governor_tool_loop_test.go` — 5 matching lines; lines 318-319, 322, 328, 331
- `./governor_tool_surface.go` — 7 matching lines; lines 8, 19, 24-26, 69, 126
- `./governor_tool_surface_test.go` — 7 matching lines; lines 19, 53, 136, 159, 169-170, 172
- `./governor_train.go` — 1 matching lines; lines 262
- `./governor_tui_group.go` — 2 matching lines; lines 176, 316
- `./governor_vault_autostart.go` — 3 matching lines; lines 26, 35, 79
- `./governor_voice.go` — 4 matching lines; lines 10, 25, 49, 51
- `./governor_wiki_kvx_compiler.go` — 1 matching lines; lines 215
- `./hive_cmd.go` — 16 matching lines; lines 10, 15, 108, 175, 179, 196, 212, 279, 324, 385, 404, 411, 528, 538, 541, 547
- `./images/discourse/Dockerfile` — 1 matching lines; lines 33
- `./images/discourse/entrypoint.sh` — 4 matching lines; lines 5-7, 9
- `./images/migrate-h100/Dockerfile` — 2 matching lines; lines 4, 23
- `./images/migrate-h100/README.md` — 1 matching lines; lines 60
- `./images/migrate-h100/migrate-entrypoint.sh` — 1 matching lines; lines 16
- `./internal/commandmanifest/lenient_test.go` — 5 matching lines; lines 11, 22, 25, 28, 74
- `./internal/route/baseline-report.json` — 8 matching lines; lines 683, 1065, 1068, 1072, 1075, 1663, 2269, 2272
- `./internal/route/baseline.json` — 72 matching lines; lines 3965-3966, 3972, 3976, 3998-3999, 4027, 4053, 10120, 10122-10123, 10883, 10893, 14055, 14744, 14746, 15135, 15619, 16072, 16193, 16737-16738, 16747, 18090, 18102, 18115, 18141, 18349, 18370, 18385, 18419, 18446, 18469, 18497, 18527, 18542, 18709, 19336, 19481-19482, 19491, 19572, 20647, 21563, 21656, 21689, 24983, 28378, 30861, 30905, 32206, 32217, 32230, 32256, 32464, 32485, 32500, 32534, 32561, 32584, 32612, 32642, 32657, 32824, 32966, 32972, 33077, 34126-34127, 35291, 35329, 35571
- `./internal/substrate/cartographer_test.go` — 3 matching lines; lines 123, 134, 143
- `./internal/substrate/lens.go` — 5 matching lines; lines 60, 290-291, 297, 311
- `./internal/substrate/lens_test.go` — 4 matching lines; lines 82, 95, 522, 525
- `./inventory.json` — 12 matching lines; lines 129-130, 132, 135-136, 138, 216-218, 220, 390, 420
- `./links.go` — 10 matching lines; lines 71-72, 76, 83, 85, 90, 92, 94, 163, 174
- `./main.go` — 389 matching lines; lines 81, 125, 404, 406, 410, 420, 423, 427, 464-465, 479, 486, 493-494, 496-497, 503, 542-543, 546, 549, 636-637, 688-689, 695, 1040-1041, 1128, 1484, 1877, 1880-1881, 2018, 2275, 2277, 2279, 2281, 2286, 2653-2654, 2657, 2659, 4207, 4492, 4741, 4850, 5019, 5055, 5680-5681, 6544, 7371, 7378, 7399-7402, 7411, 7423, 7436, 7450, 7458, 7470, 7475, 7485, 7522, 7529, 7538, 7550, 7562, 7574, 7585, 7590, 7593, 7609, 7611, 7625, 7639, 7647, 7657, 7672, 7762, 7772, 7794, 7815, 7828, 7838, 7853, 7890, 7902-7903, 7910, 7912, 7914, 7923-7924, 7927-7929, 7931, 7933, 7940, 7945-7946, 7948-7950, 7959, 7961-7964, 7969, 7973, 7975, 7982-7984, 7986, 7988, 8003-8004, 8019-8020, 8024, 8037, 8045, 8047-8048, 8054, 8060, 8063, 8066, 8071-8072, 8076, 8083, 8087-8088, 8092, 8098-8101, 8126-8127, 8130-8131, 8180-8181, 8184-8185, 8189, 8191, 8196, 8198-8204, 8207-8208, 8211, 8216, 8219, 8221, 8224, 8227, 8229-8230, 8237, 8242, 8244, 8247, 8253, 8258-8259, 8262-8263, 8266-8267, 8270-8271, 8274-8276, 8279, 8282, 8285, 8290-8292, 8295, 8298, 8303-8305, 8321-8322, 8325-8326, 8334-8335, 8340, 8344, 8349, 8352-8353, 8359-8360, 8370, 8372, 8375-8378, 8398-8399, 8423, 8458, 8460, 8463, 8465, 8468-8469, 8472-8476, 8480, 8482-8483, 8485, 8488-8489, 8495, 8499, 8501, 8611, 10030, 10228, 10533, 10643, 10711, 11810, 11812-11813, 11816, 11820, 11823, 13542, 13544, 13546, 14520, 16928-16929, 17004-17005, 17069-17070, 17072-17073, 17075, 17077-17079, 17152, 17181, 17225, 17294, 17319, 17322-17323, 17326, 17328-17340, 17342, 17345-17354, 17356-17357, 17360, 17368, 17385, 17387, 17391, 17398-17399, 17405, 17443, 17445, 17449-17451, 17453, 17456-17458, 17460, 17462, 17464, 17466-17467, 17470, 17477, 17483, 17491-17492, 17497, 17500, 17507-17508, 17514, 17521, 17524, 17529-17530, 18169-18170, 18172, 18179-18180, 18183, 18186, 18190, 18193, 18195, 18203, 18228, 18238, 18244, 18256, 18264-18265, 18279-18280, 18284, 18288, 18294, 18296, 18307-18308, 19056-19057, 19772, 20450, 20486, 21237-21239, 21551-21552, 21554, 21556, 21560, 21562, 21564, 21800, 21803, 21805, 21807, 21812, 21832, 21834-21835, 21838
- `./manifests/commands.yaml` — 81 matching lines; lines 313, 969, 975, 981, 987, 1067, 1073, 1082, 1088, 1094, 1108, 1114, 1123, 1129, 1149, 1188, 1194, 1200, 1206, 1212, 1218, 2773, 2782, 2785, 2801, 2817, 5090, 5092-5093, 5427, 7064, 7392, 7395, 7598, 7857, 8064, 8129, 8437, 8440, 9185, 9189, 9193, 9202, 9303, 9312, 9316, 9333, 9346, 9355, 9363, 9371, 9375, 9452, 9743, 9802, 9805, 9835, 10325, 10762, 10816, 10833, 14902, 14916, 15307, 15311, 15320, 15421, 15430, 15434, 15451, 15464, 15473, 15481, 15489, 15493, 15570, 15624, 15628, 15679, 16208, 16230
- `./memory_profile.go` — 11 matching lines; lines 69-71, 73, 236-237, 247, 269, 278, 281, 495
- `./memory_profile_test.go` — 4 matching lines; lines 196, 205-206, 208
- `./mesh_trust.go` — 2 matching lines; lines 431, 457
- `./mesh_trust_test.go` — 1 matching lines; lines 171
- `./portal/index.html` — 4 matching lines; lines 980, 1138, 1225, 1232
- `./provision_residual_test.go` — 2 matching lines; lines 102, 105
- `./provision_stats.go` — 2 matching lines; lines 76, 79
- `./qwen-opt.json` — 1 matching lines; lines 2
- `./qwen.json` — 1 matching lines; lines 2
- `./r2_retire_shard.go` — 1 matching lines; lines 3
- `./r2_state_autosave.go` — 1 matching lines; lines 4
- `./r2_state_exclusions_test.go` — 1 matching lines; lines 22
- `./r2_store.go` — 24 matching lines; lines 49, 61, 345, 364, 375, 378, 386, 389, 393, 558, 587, 612-614, 680, 686, 689, 694-696, 698, 709, 714-715
- `./r2native_test.go` — 1 matching lines; lines 27
- `./refactor_planner.go` — 1 matching lines; lines 248
- `./repo.go` — 3 matching lines; lines 351, 538-539
- `./repo_clone_parallel_test.go` — 1 matching lines; lines 10
- `./repo_dedupe_test.go` — 5 matching lines; lines 9-10, 13-15
- `./research/index.html` — 2 matching lines; lines 657, 807
- `./research/paper-continuous-concept-attention-5176d-training-proof.md` — 2 matching lines; lines 5, 61
- `./research/paper-continuous-concept-attention-5176d.md` — 1 matching lines; lines 3
- `./research/venv/lib/python3.12/site-packages/pyphen/dictionaries/README_hyph_is.txt` — 1 matching lines; lines 96
- `./resonance_bridge.py` — 5 matching lines; lines 14, 16-17, 71, 73
- `./rig_cmd.go` — 2 matching lines; lines 101, 114
- `./running.go` — 2 matching lines; lines 148, 160
- `./schemas/arcane-3d-world-synthesis.v1.schema.json` — 4 matching lines; lines 4-5, 21, 116
- `./schemas/designer-council-redesign.v1.schema.json` — 6 matching lines; lines 3-5, 10, 12, 34
- `./schemas/grand-council-artistic-assessment.v1.schema.json` — 5 matching lines; lines 3-4, 7, 26, 41
- `./schemas/neural-evolution-engine.v1.schema.json` — 2 matching lines; lines 33, 36
- `./scratch/create_defect_shards.py` — 1 matching lines; lines 2
- `./scratch/write_directive.py` — 1 matching lines; lines 2
- `./scripts/extract_layer40_centroids.py` — 5 matching lines; lines 11-15
- `./scripts/governor_agentic_server.py` — 1 matching lines; lines 233
- `./scripts/governor_training_harness.py` — 1 matching lines; lines 20
- `./scripts/inner-age.sh` — 1 matching lines; lines 42
- `./scripts/install-governor-graphics-hands.py` — 6 matching lines; lines 2, 195, 199-200, 206, 216
- `./scripts/install_sovereign_services.sh` — 2 matching lines; lines 5, 29
- `./scripts/preserve_teaching_room.py` — 2 matching lines; lines 15, 69
- `./scripts/probe-council-tools.py` — 16 matching lines; lines 2, 6, 9, 17-19, 21, 36, 38, 69, 109, 116-117, 120-121, 129
- `./scripts/provision-residual.sh` — 1 matching lines; lines 252
- `./scripts/restore_cognizance.sh` — 6 matching lines; lines 5, 16-18, 23, 48
- `./scripts/run-governor-graphics-agent.py` — 4 matching lines; lines 33, 40, 42-43
- `./scripts/triad_metric_loop.py` — 3 matching lines; lines 18-19, 21
- `./scripts/verify_hypersphere_and_checksum.py` — 3 matching lines; lines 9-11
- `./setup_governor_vault.go` — 3 matching lines; lines 3, 16, 84
- `./setup_home_aliases.go` — 1 matching lines; lines 74
- `./setup_suite.go` — 2 matching lines; lines 145, 240
- `./shard_cartridge_compiler.go` — 5 matching lines; lines 197, 406, 470, 571, 679
- `./shutdown.go` — 2 matching lines; lines 164-165
- `./silicon_resonant_spectral_steering_paper.html` — 4 matching lines; lines 11, 230, 241, 459
- `./spec/gemstone.governor.v1.schema.json` — 3 matching lines; lines 5, 33, 49
- `./suites_anime_test.go` — 1 matching lines; lines 14
- `./suites_media.go` — 56 matching lines; lines 43, 46, 58, 65-66, 79, 98, 100, 102, 104, 135, 138, 151, 155-156, 163, 169, 174-177, 180, 186-187, 190-191, 193, 199, 401-403, 492-494, 616, 618, 621, 623, 763, 767, 769, 771, 773, 787, 892, 1466, 1474, 1490, 1498, 1500, 1509, 1511, 1564, 1569, 1571, 1574
- `./surface_gateway_cmd.go` — 1 matching lines; lines 91
- `./surgery_extensions.go` — 1 matching lines; lines 14
- `./verify_audit.go` — 30 matching lines; lines 4, 73, 84, 87, 137-143, 154-155, 413, 422, 457-458, 466, 481, 502, 506, 509, 511, 513, 517, 525, 544, 548, 550, 552
- `./verify_audit_test.go` — 5 matching lines; lines 14, 40, 65-66, 73
- `./version_running_test.go` — 1 matching lines; lines 82
- `./web/agentic-loop/index.html` — 2 matching lines; lines 60, 83
- `./web/chat/index.html` — 1 matching lines; lines 539
- `./web/concept-attention/index.html` — 2 matching lines; lines 73, 220
- `./web/concept-attention/paper.md` — 1 matching lines; lines 3
- `./web/constellation/constellation.template.html` — 4 matching lines; lines 62, 84, 95, 150
- `./web/constellation/generate.py` — 2 matching lines; lines 5, 36
- `./web/constellation/index.html` — 5 matching lines; lines 62, 80, 84, 95, 150
- `./web/curriculum/index.html` — 4 matching lines; lines 256, 280, 305, 678
- `./web_runtime_parity_test.go` — 1 matching lines; lines 99
- `./work.go` — 12 matching lines; lines 753, 762, 781-782, 804, 824-825, 862, 868, 876, 903-904
