Explore vScript through interactive examples and see how symbolic protocols work in practice.
vS.0ath; // identity bindvS.enter(mode:"creative"); // session startvS.inject("Design alt.party header");vS.rift#worklog; // capture receipt
This example shows the fundamental vScript session lifecycle: identity binding, context setting, content injection, and state capture.
vS.compose("Poster v2 ready");vS.notify@design#update("check figma");vS.ping@ops("deploy queued");
Demonstrates how vScript can target specific identities (@design, @ops) and route messages through channels (#update).
vS.enter("creative");vS.inject("Generate concept art");vS.setState("crisis");vS.inject("Fix critical bug")! // forced executionvS.recal(); // recenter state
Shows how the same inject command behaves differently in 'creative' vs 'crisis' states, and how punctuation (!) forces execution.
vS.enter[protected];vS.inject("Sensitive operation");vS.rift#secure;vS.flush!; // push despite guards
Demonstrates sealed execution contexts [protected] and secure operations for sensitive tasks.
vS.enter("creative");vS.inject("Design poster");vS.rift#portfolio;
Manage creative projects with state-aware execution and automatic portfolio logging.
vS.notify@team#standup;vS.ping@ops("ready");
Route messages to specific team members and channels with contextual targeting.
vS.setState("crisis");vS.inject("Fix bug")!vS.notify@all#urgent;
Handle urgent situations with forced execution and emergency broadcast capabilities.
Start implementing vScript in your own projects and discover the power of symbolic protocols.