graphiti/conductor.json
Daniel Chalef 0f23f2bb8b Add Conductor workspace configuration
This adds Conductor integration to automate workspace setup and testing.

Configuration includes:
- Setup script that runs automatically when creating new workspaces
- Automated dependency installation using uv with frozen lock file
- Environment file linking from root repository
- Workspace-specific Makefile using virtualenv directly
- Run script for executing the test suite via "Run" button

The setup script:
- Verifies prerequisites (uv, Python 3.10+)
- Copies necessary files and creates symlinks to source code
- Installs all 185 development dependencies
- Links .env file and validates OPENAI_API_KEY
- Provides helpful error messages for missing prerequisites

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-01 18:42:28 -07:00

7 lines
119 B
JSON

{
"scripts": {
"setup": "./conductor-setup.sh",
"run": "make test"
},
"runScriptMode": "nonconcurrent"
}