Standard Library

Core Commands

The essential vScript commands organized by category—from initialization to meta operations.

Initialization & State

vS.enter()
Initialize session
1
2
vS.enter();
vS.enter(mode:collaborative);

Initializes a new vScript session with optional context mode.

vS.bootstrap!
Self-initialize from base state
1
vS.bootstrap!

Force immediate initialization with full system bootstrap.

vS.exit()
End session gracefully
1
vS.exit();

Terminates the current vScript session and saves state.

Execution & Control

vS.run(script)
Execute a script/ritual
1
vS.run(script);
vS.execute(command)!
Force immediate execution
1
vS.execute(command)!
vS.await(condition)
Pause until condition met
1
vS.await(condition);
vS.loop(iterations)
Repeat operation
1
vS.loop(iterations);
vS.break()
Exit loop
1
vS.break();

State Management

vS.set(key:value)
Set state variable
1
vS.set(key:value);
vS.get(key)
Retrieve state value
1
vS.get(key);
vS.state(snapshot)
Capture current state
1
vS.state(snapshot);
vS.load(state)
Restore previous state
1
vS.load(state);
vS.clear()
Reset all state
1
vS.clear();

Context & Routing

vS.route(@position #channel)
Route to specific location
1
vS.route(@position #channel);
vS.inject(content)
Inject content into context
1
vS.inject(content);
vS.context(domain)
Switch context domain
1
vS.context(domain);
vS.scope(boundary)
Define operational scope
1
vS.scope(boundary);

Memory & Recall

vS.recall(query)
Search memory
1
vS.recall(query);
vS.remember(key, value)
Store to memory
1
vS.remember(key, value);
vS.forget(key)
Delete from memory
1
vS.forget(key);
vS.compress()
Condense memory
1
vS.compress();

Reflection & Analysis

vS.reflect(mode)
Self-examination
1
vS.reflect(mode);
vS.analyze(target)
Deep analysis
1
vS.analyze(target);
vS.inspect(object)
Detailed inspection
1
vS.inspect(object);
vS.trace(path)
Follow execution path
1
vS.trace(path);
vS.observe(entity)
Watch state changes
1
vS.observe(entity);

Communication

vS.speak(output)
Generate output
1
vS.speak(output);
vS.listen(input)
Receive input
1
vS.listen(input);
vS.prompt(message)
Request user input
1
vS.prompt(message);
vS.respond(content)
Send response
1
vS.respond(content);

Meta Operations

vS.plan(name, notes)
Create execution plan
1
vS.plan(name, notes);
vS.bundle(domains, strategy)
Bundle operations
1
vS.bundle(domains, strategy);
vS.boost(entity)
Amplify signal/entity
1
vS.boost(entity);
vS.save(checkpoint)
Create checkpoint
1
vS.save(checkpoint);
vS.restore(checkpoint)
Restore from checkpoint
1
vS.restore(checkpoint);