@@ -39,7 +39,6 @@ phenix.ai_agent verbosity=verbose original_files="data.mtz sequence.fa"
3939| Document | Description |
4040| ----------| -------------|
4141| [ guides/USER_DIRECTIVES.md] ( guides/USER_DIRECTIVES.md ) | How to guide the agent with natural language |
42- | [ guides/ERROR_RECOVERY.md] ( guides/ERROR_RECOVERY.md ) | Automatic error recovery system |
4342
4443### For Developers
4544
@@ -48,7 +47,6 @@ phenix.ai_agent verbosity=verbose original_files="data.mtz sequence.fa"
4847| [ OVERVIEW.md] ( OVERVIEW.md ) | Technical overview, architecture, data flow |
4948| [ reference/ARCHITECTURE.md] ( reference/ARCHITECTURE.md ) | Deep-dive into components and transport |
5049| [ reference/API_REFERENCE.md] ( reference/API_REFERENCE.md ) | V2 JSON API specification |
51- | [ reference/AGENT_LOGIC.md] ( reference/AGENT_LOGIC.md ) | Auto-generated program and workflow reference |
5250| [ reference/VALIDATION.md] ( reference/VALIDATION.md ) | Validation system documentation |
5351| [ guides/ADDING_PROGRAMS.md] ( guides/ADDING_PROGRAMS.md ) | How to add new PHENIX programs |
5452| [ guides/TESTING.md] ( guides/TESTING.md ) | Testing guide and conventions |
@@ -61,14 +59,6 @@ phenix.ai_agent verbosity=verbose original_files="data.mtz sequence.fa"
6159| [ project/CHANGELOG.md] ( project/CHANGELOG.md ) | Version history and release notes |
6260| [ project/THOUGHT_EXPERIMENT.md] ( project/THOUGHT_EXPERIMENT.md ) | Example workflow traces (v110, updated through v112) |
6361| [ project/TRANSPARENCY_LOGGING.md] ( project/TRANSPARENCY_LOGGING.md ) | Event system design and implementation |
64- | [ implementation/PROGRAM_CONFIG_ROBUSTNESS.md] ( implementation/PROGRAM_CONFIG_ROBUSTNESS.md ) | Plan for robust program configuration |
65-
66- ### Historical Design Documents
67-
68- These documents describe the design and implementation of features that are now complete:
69-
70- | Document | Description |
71- | ----------| -------------|
7262
7363
7464---
@@ -303,17 +293,8 @@ python3 agent/session_tools.py --dir /path/to/session --show
303293### Documentation Generation
304294
305295``` bash
306- # Generate agent logic reference (programs, workflows, rules)
307- python3 agent/docs_tools.py > docs/reference/AGENT_LOGIC.md
308- python3 agent/docs_tools.py --format text # Plain text output
309- python3 agent/docs_tools.py --output AGENT_LOGIC.md # Write to file
310-
311296# Generate safety checks documentation
312297python3 agent/generate_safety_docs.py > docs/SAFETY_CHECKS.md
313-
314- # Generate decision logic documentation (from JSON configs)
315- python3 agent/generate_logic_doc.py > AGENT_LOGIC.md
316- python3 agent/generate_logic_doc.py --format text # Plain text output
317298```
318299
319300### RAG Documentation Database
@@ -492,20 +473,16 @@ improved_agent_v2/
492473 ├── SAFETY_CHECKS.md # Auto-generated safety checks
493474 ├── guides/ # How-to guides
494475 │ ├── USER_DIRECTIVES.md # Natural language guidance
495- │ ├── ERROR_RECOVERY.md # Automatic error recovery
496476 │ ├── ADDING_PROGRAMS.md # Adding new PHENIX programs
497477 │ └── TESTING.md # Testing guide
498478 ├── reference/ # API and logic reference
499479 │ ├── ARCHITECTURE.md # Component deep-dive
500480 │ ├── API_REFERENCE.md # V2 JSON API spec
501- │ ├── AGENT_LOGIC.md # Auto-generated program/workflow ref
502481 │ └── VALIDATION.md # Validation system
503482 ├── project/ # Design history and changelog
504483 │ ├── CHANGELOG.md # Version history
505484 │ ├── THOUGHT_EXPERIMENT.md # Example workflow traces
506485 │ └── TRANSPARENCY_LOGGING.md # Event system design
507- └── implementation/ # Implementation plans
508- └── PROGRAM_CONFIG_ROBUSTNESS.md
509486```
510487
511488---
0 commit comments