The essential vScript commands that form the foundation of every session and interaction.
vS.enter();vS.enter(mode: "creative");vS.enter("explorer");
Initializes a new vScript session. Can optionally set the initial mode or context for the session.
vS.0ath;vS.0ath("maxwell");
Establishes identity binding for the session. Essential for security and personalization.
vS.unlock();vS.unlock(level: 3);
Elevates session permissions or energy level. May require confirmation based on current state.
vS.setState("creative");vS.setState("crisis");vS.setState("static");
Sets the active state which influences how subsequent commands are interpreted and executed.
vS.inject("Hello, world");vS.inject("Multi-line content");vS.inject("Process this")!
Primary content insertion command. Behavior varies based on current state and punctuation.
vS.switch("design");vS.switch("development");
Changes the current topic or focus area while maintaining session state.
vS.rift();vS.rift#worklog;vS.rift#summary("lastHour");
Creates an immutable snapshot of the current state and context. Essential for session memory.
vS.echo();
Returns the current state and recent context for inspection and debugging.
vS.explain();vS.explain("session");vS.explain("lastAction");
Provides human-readable explanations of current state, recent actions, or specified scope.
vS.pause();
Temporarily suspends execution while preserving current state and context.
vS.recal();
Recenters the session state and corrects any drift from intended behavior.
Commands can be targeted to specific identities or tagged for routing and organization.
// Target specific identityvS.ping@ops("deploy queued");// Tag for routingvS.create#NewLink(@atrioc);// Combined targeting and taggingvS.notify@design#daily("mockups ready");