Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
73f8f05
Merge pull request #134 from kherrera6219/claude/upbeat-nightingale-c…
kherrera6219 May 18, 2026
2ccaf13
complete phase 8 and 9 smelt cycle
kherrera6219 May 18, 2026
8b55869
fix next dependabot alert and update phase 10 plan
kherrera6219 May 18, 2026
3ce08ed
implement phase 10 delivery verification
kherrera6219 May 18, 2026
7d2d452
update phase 11 aim plan
kherrera6219 May 18, 2026
c9d85d9
implement phase 11 application intelligence map
kherrera6219 May 18, 2026
719f84b
update phase 12 equivalence plan
kherrera6219 May 18, 2026
77b5b5a
implement phase 12 equivalence verification
kherrera6219 May 18, 2026
187e226
update phase 13 and 14 plans
kherrera6219 May 18, 2026
65ce87b
implement phase 13 security compliance reports
kherrera6219 May 18, 2026
79a74f7
implement phase 14 dependency absorption reports
kherrera6219 May 18, 2026
71cfaf4
implement phase 16 knowledge embeddings
kherrera6219 May 19, 2026
ed8d88d
Implement phase 17 release hardening evidence
kherrera6219 May 19, 2026
087ce88
Implement phase 18 demo mission harness
kherrera6219 May 19, 2026
5c25f23
Implement phase 19 and 20 prompt workflow core
kherrera6219 May 19, 2026
fd8bc3f
Implement phase 21 pod workflow depth
kherrera6219 May 20, 2026
4f05590
Implement phase 22 and 23 runtime QC and DEPABS
kherrera6219 May 20, 2026
a5e50c7
feat: close gaps 3-6 — token ledger, Gemini embeddings, AIM language …
kherrera6219 May 20, 2026
7c6954a
feat: Phase 24 — PORT mission two-phase cross-pod coordination
kherrera6219 May 20, 2026
86fc739
feat: Phase 25 — Prompt versioning and AI safety governance
kherrera6219 May 20, 2026
414d5a4
docs: update Phase 26 and 27 plans based on live codebase review
kherrera6219 May 20, 2026
f928263
phase26_27: complete production hardening and mission control converg…
kherrera6219 May 20, 2026
7df8602
docs: move all individual phase files and build plans to docs/phases/
kherrera6219 May 20, 2026
7ef7953
fix: ruff E501/I001/F401 in Phase 26 scripts and eval tests
kherrera6219 May 20, 2026
9dd2b82
docs: update main README to reflect Phase 26/27 completion
kherrera6219 May 20, 2026
1fa135e
fix(mission-control): wire missing pm_clarification and llm_usage_sum…
kherrera6219 May 20, 2026
d956067
docs: rewrite IMPLEMENTATION_STATUS.md to reflect Phases 1-27 actual …
kherrera6219 May 20, 2026
248e452
docs: create SPRINT_BACKLOG.md — total completion todo list
kherrera6219 May 20, 2026
46f2412
chore: refresh dr-drill-latest.json with 2026-05-20 run
kherrera6219 May 20, 2026
efa6c13
docs: mark Phase 26 and 27 complete with full evidence records
kherrera6219 May 20, 2026
882f7cf
docs: mark Phase 25 complete with full evidence record
kherrera6219 May 20, 2026
0357ea0
chore: upgrade Gemini profiles to gemini-3.5-flash (GA, Google I/O Ma…
kherrera6219 May 20, 2026
b59f4a4
chore: upgrade all Gemini agents to gemini-3.5-flash (GA)
kherrera6219 May 20, 2026
96087e7
chore: upgrade all OpenAI agents to gpt-5.5
kherrera6219 May 20, 2026
05d3d12
chore: migrate all Anthropic agents to gpt-5.5 and gemini-3.5-flash
kherrera6219 May 20, 2026
2ee56f9
fix: resolve test failures from model migration and schema drift
kherrera6219 May 20, 2026
ee629eb
feat(mission-control): Phase 1 UI/UX foundation fixes
kherrera6219 May 22, 2026
b419096
feat(mission-control): Phase 2 & 3 — component system, design tokens,…
kherrera6219 May 22, 2026
f8b6ffa
a11y(mission-control): Phase 4 — full accessibility audit pass
kherrera6219 May 22, 2026
85cfc9e
feat(mission-control): Phase 5 — notifications, export & observability
kherrera6219 May 22, 2026
ff846fe
feat(mission-control): Phase 6 — domain UX, onboarding & power features
kherrera6219 May 22, 2026
c72370d
feat(mission-control): Phase 7 — Electron port preparation
kherrera6219 May 22, 2026
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
15 changes: 14 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ QDRANT_ENABLED=true
QDRANT_COLLECTION=mission_knowledge
QDRANT_VECTOR_SIZE=64
QDRANT_TIMEOUT_SECONDS=3.0
KNOWLEDGE_EMBEDDING_PROVIDER=deterministic
KNOWLEDGE_EMBEDDING_MODEL=deterministic-hash-v1
KNOWLEDGE_EMBEDDING_TIMEOUT_SECONDS=10.0
KNOWLEDGE_REFRESH_ENABLED=true
NEO4J_ENABLED=false
NEO4J_URL=http://neo4j:7474
NEO4J_USERNAME=neo4j
Expand Down Expand Up @@ -124,6 +128,15 @@ ENVIRONMENT=development
AUTO_TRANSITION_ENABLED=true
TRANSITION_STEP_SECONDS=1.0
MISSION_FLOW_V2_ENABLED=true
# Phase 22/23 agent execution features are disabled by default. RQCA live
# execution requires an explicit sandbox profile with Docker access.
TESTDATA_AGENT_ENABLED=false
RQCA_AGENT_ENABLED=false
RQCA_ENFORCEMENT_ENABLED=false
DOCKER_BIN=docker
DEPABS_EXECUTION_ENABLED=false
PORT_TWO_PHASE_ENABLED=false # Two-pod PORT execution: source extraction then target generation
LLM_SAFETY_BLOCK_ENABLED=false # Block outbound prompts containing secrets/PII (default: log only)
# Topology mode: condensed (default) | dedicated | full-dedicated
# condensed: shared pod workers + synthesized heartbeats (one compose profile)
# dedicated: one container per pod manager full-dedicated: one container per language specialist
Expand Down Expand Up @@ -213,7 +226,7 @@ ANTHROPIC_THINKING_MODE=enabled
ANTHROPIC_THINKING_BUDGET_TOKENS=8192
GEMINI_API_KEY=
GEMINI_BASE_URL=https://generativelanguage.googleapis.com/v1beta
GEMINI_MODEL=gemini-3.1-pro-preview
GEMINI_MODEL=gemini-3.5-flash
GEMINI_TIMEOUT_SECONDS=20
GEMINI_THINKING_BUDGET=-1
GEMINI_THINKING_LEVEL=medium
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ config/agent_api_keys.enc.yaml
*.age
*.sops.yaml
deploy/.local/

# Live API keys for local testing — never commit
test-keys/
Binary file added .secrets.baseline
Binary file not shown.
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AGENTS.md — theFactory / Holy Grail Refinery (HGR)

> Read this file fully before touching any file. When docs and code disagree, code is truth.
> Last validated: 2026-05-17 against actual codebase.
> Last validated: 2026-05-19 against actual codebase (Phase 27 Release Convergence).

---

Expand Down
Loading
Loading