Q•Agent is a modular and extensible Python agent designed to operate as a thinking engine, idea organizer, and symbolic command executor for your PC.
Alpha: not ready for general testing. Expect frequent breaking changes, incomplete features, and critical bugs. Use at your own risk and avoid production environments.
- Context-oriented core (inspired by symbolic reasoning)
- Basic affective and episodic memories (initial scope)
- Modular command interface (built-ins + dynamic modules)
- Suggestion/reflection mode (experimental)
- Extensible via external modules
Note: The “CMind” layer (advanced reasoning/planning) is under active development. Some capabilities mentioned are roadmap goals, not finalized promises.
- [In progress] CMind decision layer (planning and verification)
- [Next] Safe execution policies and traceability
- [Next] Module marketplace with signing/verification
- Contributing: see CONTRIBUTING.md
- Security policy: see SECURITY.md
- Status/roadmap: see docs/STATUS.md and docs/roadmap.md
- Issue/PR templates in .github/
.
├── core/ # Core (memory, IO, reflection, routing)
├── modules/ # First-party modules
├── store/ # Download/import utilities for external modules
├── docs/ # Project docs (architecture, API, security)
├── main.py # Entrypoint
├── requirements.txt
└── README.mdgit clone https://github.com/Q-YZX0/QarzAI
cd QarzAI
python -m venv .venv
.venv\Scripts\activate # Windows
# source .venv/bin/activate # Linux/Mac
pip install -r requirements.txt
python main.py