FastReAct documentation index. Current version: v1.1.0
- README.md - Project overview and features
- CLAUDE.md - Development rules and constraints (MUST READ for developers)
- LICENSE - MIT License
- pyproject.toml - Project configuration and dependencies
- setup.py - Package setup script (version dynamically read from
__init__.py)
- .env.example - Environment variables template (copy to
.envand configure)
- src/ - FastReAct v1.1.0 source code (128 Python files)
- Core engine, tools, LLM providers, MCP integration
- Graph Agent, Tool Graph v2, SubGraph support
- Context management, streaming callbacks
- tests/ - Test suite (pytest)
- examples/ - Usage examples and demos
- demos/ - Demo scripts
- scripts/ - Utility and development scripts
- public/ - Web UI static files
See docs_archive/temp/ for v2.0 research:
nanobot_deep_analysis.md- nanobot architecture analysisfastreact_v2_final_plan.md- v2.0 implementation planfastreact_v2_architecture_final.md- Architecture designnanobot_to_fastreact_migration.md- Migration guidev2_phase_*.md- Phase-by-phase development documentation (Phases 1-7)
- fastreact-v2/ - v2.0 development directory
- Lightweight architecture based on nanobot
- 91.9% code reduction (4,139 lines vs 50,792 lines)
- Progressive loading, plugin system, MessageBus pattern
- docs_archive/v1_docs/ - Archived v1.0 specific docs
- CHANGELOG.md, INSTALLATION.md, CLI_TROUBLESHOOTING.md
- IEL.md, SESSION_RESUME.md, MCP integration docs
- Configuration guides, technical deep dives
- Development logs and sprint summaries
- docs_archive/bugfixes/ - Bug fix records
- docs_archive/sprints/ - Sprint summaries
FastReAct/
├── README.md # Project overview
├── DOCS_INDEX.md # Documentation index (this file)
├── CLAUDE.md # Development rules
├── LICENSE # MIT License
│
├── src/ # v1.1.0 source code
├── tests/ # Test suite
├── examples/ # Usage examples
├── demos/ # Demo scripts
├── scripts/ # Utility scripts
├── public/ # Web UI files
│
├── pyproject.toml # Project configuration
├── setup.py # Package setup
├── .env.example # Environment template
│
├── fastreact-v2/ # v2.0 development directory
│
└── docs_archive/ # Archived documentation
├── v1_docs/ # v1.0 specific docs
├── temp/ # v2.0 research & planning
├── bugfixes/ # Bug fix records
└── sprints/ # Sprint summaries
- Single Source of Truth - Keep one canonical doc per topic
- Archive, Don't Delete - Move outdated docs to
docs_archive/ - No Emojis - Use text markers:
[OK],[ERROR],[WARNING] - UTF-8 Encoding - Specify for all file operations
- Cross-Platform - Use
pathlib.Path, never hardcode paths
Version: 1.1.0
Location: src/fastreact/__init__.py
Read By: pyproject.toml, setup.py
Do NOT manually edit version in other files - All version reading is dynamic from __init__.py.
Last Updated: 2026-02-10