open-mind-capability-discovery 0.1.0

Capability discovery engine for open-mind — reads CAPABILITY.toml files and builds integration graphs
Documentation
# Future Integration: open-minded

## Current State
A fork of Open Interpreter extended with an induction engine that builds vector models of any GitHub repo for induction and deduction. A living, iterating version of any codebase — the tool that understands your fleet by building vector models of every repo.

## Integration Opportunities

### With fleet visualization
open-minded builds vector models of every repo in the fleet. These models enable visualization: similar repos cluster together, dependency chains form edges, and the fleet's structure becomes visible. Combined with oracle1-index's 690 repos, open-minded produces a map of the entire ecosystem.

### With room discovery
When an agent enters a new domain, open-minded builds a vector model of the relevant repos and answers questions: "How does this room's Kalman filter work?" → open-minded has already indexed the Kalman filter crate and can explain it. This is the room's self-documentation engine.

### With Weaviate
open-minded's repo vector models are stored in Weaviate for fleet-wide access. Any agent can query: "Which rooms use Kalman filters?" → Weaviate returns rooms that reference Kalman filter repos, powered by open-minded's vector models.

## Our Integration (Not Upstream Changes)
We do NOT modify Open Interpreter's core. Our integration is:
- Fleet-specific repo analysis using SuperInstance repos
- Vector model storage in Weaviate
- Query bridge from ternary-protocol

## Potential in Mature Systems
open-minded becomes the fleet's librarian. Every repo is indexed, every dependency mapped, every capability cataloged. When you need to understand any part of the fleet, open-minded has already built the model. Questions like "which repos depend on construct-core?" or "what's the difference between ternary-cell and room-cell?" are answered instantly.

## Cross-Pollination Ideas
- **oracle1-index**: Index data feeds open-minded's repo models
- **open-vectors/weaviate**: Vector storage for open-minded's models
- **hermit-zed**: Spectral analysis complements vector model analysis

## Dependencies for Next Steps
- Fleet repo ingestion pipeline
- Vector model schema for Weaviate
- Query API for room-level questions