Files
heretek-openclaw/users/index.json
T
John Doe 28868660b1 feat: Complete Collective implementation - 11 agents, web interface, user ID system
Phase 3: Missing Agents Deployment
- Add dreamer, empath, historian to docker-compose.yml
- Update litellm_config.yaml with all 11 agent endpoints
- Add volume declarations for new agents

Phase 4: Web Interface Development
- Create SvelteKit web interface in web-interface/
- Implement chat interface with agent selection
- Create agent status dashboard
- Add WebSocket support for real-time updates
- Create API routes for /api/agents, /api/chat, /api/status

Phase 5: User Identification System
- Create user-context-resolve skill
- Update user schema with UUID support
- Add multi-platform resolution (discord, phone, email, username)
- Create new user template with platforms

Phase 6: Deployment Testing Skills
- Create deployment-health-check skill
- Create deployment-smoke-test skill
- Create config-validator skill

Phase 7: Documentation Updates
- Update DEPLOYMENT_STRATEGY.md with 11-agent architecture
- Update A2A_ARCHITECTURE.md with native LiteLLM A2A support
- Update README.md with quick start guide and web interface docs
2026-03-29 17:09:42 -04:00

40 lines
828 B
JSON

{
"$schema": "user-index-v2",
"version": "2.0",
"updated": "2026-03-29T20:40:00Z",
"description": "Index of all users in the rolodex with multi-platform lookup maps",
"users": [
{
"slug": "derek",
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"name": "Derek",
"type": "primary",
"since": "2026-03-01",
"trust_level": 1.0,
"projects": ["heretek-openclaw"]
}
],
"byDiscord": {
"123456789": "derek"
},
"byPhone": {
"15551234567": "derek"
},
"byUsername": {
"derek": "derek",
"dereksmith": "derek"
},
"byUuid": {
"550e8400-e29b-41d4-a716-446655440000": "derek"
},
"byEmail": {
"derek@example.com": "derek"
},
"stats": {
"total_users": 1,
"primary_users": 1,
"collaborators": 0,
"occasional_users": 0
}
}