Security cleanup: Remove sensitive files, test scripts, and add .env.example

- Removed cortex demo/test files
- Removed test shell scripts
- Removed Claude AI persona scripts
- Fixed hardcoded URLs (dpsifr.workers.dev -> api.soulcraft.com)
- Fixed hardcoded paths in documentation
- Added .env.example for configuration
- Cleaned up temporary test files
This commit is contained in:
David Snelling 2025-08-12 07:52:11 -07:00
parent fbfe1ba9b8
commit c7cfabc1da
4 changed files with 68 additions and 15 deletions

View file

@ -16,7 +16,7 @@ import {
// Configuration from environment
const CUSTOMER_ID = process.env.CUSTOMER_ID || 'demo-test-auto';
const BRAIN_CLOUD_URL = process.env.BRAIN_CLOUD_URL || 'https://brain-cloud.dpsifr.workers.dev';
const BRAIN_CLOUD_URL = process.env.BRAIN_CLOUD_URL || 'https://api.soulcraft.com/brain-cloud';
class BrainCloudMCPServer {
constructor() {