Files
blackroad-tools/collab_presence/vscode-extension/package.json
Alexa Louise 79ff3dbb74 Initial extraction from blackroad-prism-console
BlackRoad Tools - ERP, CRM, manifest profiler, and DevOps utilities:

Core Tools:
- manifest_profile.py (937 lines) - Kubernetes manifest analysis
- pully.py (735 lines) - Pull request automation
- build_cluster_manifests.py (515 lines) - K8s cluster builders
- erp.py (478 lines) - Enterprise resource planning
- crm.py (405 lines) - Customer relationship management
- build_metaverse_roster.py (331 lines) - Agent roster management
- storage.py (305 lines) - Storage abstractions
- agent_test_pipeline.py (304 lines) - Test automation
- holo_cli.py (259 lines) - Holographic display CLI

DevOps Scripts:
- orin_bootstrap.sh - Jetson Orin setup
- install_self_heal_pack.sh - Self-healing infrastructure
- deploy_openwebui.sh - OpenWebUI deployment
- triton_setup.sh - NVIDIA Triton setup

Subdirectories:
- branch-cleanup/ - Git branch management
- kpis/ - KPI dashboards
- metrics/ - Metrics collection
- miners/ - Data mining tools
- pulse/ - Health monitoring
- tools-adapter/ - Integration adapters

11,351 lines of Python across 116 code files.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 08:39:17 -06:00

34 lines
917 B
JSON

{
"name": "blackroad-collab-presence",
"displayName": "BlackRoad Presence Bus",
"description": "Streams cursor + focus telemetry to the BlackRoad collaboration presence bus.",
"publisher": "blackroad",
"version": "0.1.0",
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": ["*"],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "BlackRoad Presence Bus",
"properties": {
"blackroadPresence.agent": {
"type": "string",
"default": "codex",
"description": "Display name for this VS Code session on the presence bus"
},
"blackroadPresence.busUrl": {
"type": "string",
"default": "http://127.0.0.1:9000",
"description": "Base URL for the presence bus server"
}
}
}
},
"dependencies": {
"socket.io-client": "^4.7.5"
}
}