1.2 KiB
1.2 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
Live Two-Way Chat - Real-time conversational AI with natural speech flow
Development Commands
# Install for development
pip install -e ".[dev]"
# Run tests
pytest
# Run a single test
pytest tests/test_file.py::test_name
Architecture
TODO: Describe the project architecture
Key Modules
TODO: List key modules and their purposes
Key Paths
- Source code:
src/live-two-way-chat/ - Tests:
tests/ - Documentation:
docs/(symlink to project-docs)
Documentation
Documentation for this project lives in the centralized docs system:
- Source:
~/PycharmProjects/project-docs/docs/projects/live-two-way-chat/ - Public URL:
https://pages.brrd.tech/rob/live-two-way-chat/
When updating documentation:
- Edit files in
docs/(the symlink) or the full path above - Use
public: truefrontmatter for public-facing docs - Use
<!-- PRIVATE_START -->/<!-- PRIVATE_END -->to hide sections - Run
~/PycharmProjects/project-docs/scripts/build-public-docs.sh live-two-way-chat --deployto publish
Do NOT create documentation files directly in this repository.