Studio Inspector Core 1.4.0
Phase 6.1 read model, selection state, Block detection, and delegated Adapt actions — Core only, no UI.
Project 2 freeze: documentation reflects the shipped 1.4.0 surface through Phase 6.1. Inspector Overlay, visual selection UI, token probe, and every Phase 6.2+ stage are not started.
Shipped Core
- Read Model
- Selection state:
select/clearSelection - Explicit
data-velin-blockdetection - Adapt capabilities and available intents
- Sanitized audit read access
- Delegated safe actions and undo
Technical guides
- Read Model — privacy-safe semantic state
- Selection & Block Detection — Core state and marker rules
- Adapt Integration & Audit — delegated existing APIs
- AI Boundary & Security — forbidden surfaces
API
const inspector = createInspector({ root: document, blockCatalog });
inspector.select(element);
inspector.getInspectorState();
inspector.getAvailableIntents();
inspector.getBlockInfo();
inspector.getAudit();
inspector.applyIntent(intent);
inspector.undoLast();Architecture rule
createInspector() does not start Adapt and does not own validation/apply. It consumes getVelinAPI, the existing controller, events, and optional Block catalog.