@v8v/core
v1.0.0
Published
V8V — Cross-platform voice orchestration framework with native on-device STT, intent matching, and action routing (LOCAL, MCP, Remote webhooks).
Maintainers
Readme
@v8v/core
Cross-platform voice orchestration framework for Web/JS/TS.
@v8v/core ships a single bundled file (v8v-core.bundle.js) that exposes window.V8V in browsers.
Install
npm install @v8v/coreBrowser Usage
<script src="node_modules/@v8v/core/v8v-core.bundle.js"></script>
<script>
const agent = new V8V.VoiceAgentJs('en');
agent.onTranscript((text) => console.log('Heard:', text));
agent.registerPhrase('todo.add', 'en', 'add *');
agent.start();
</script>API Highlights
VoiceAgentJsregisterPhrase(intent, language, phrase)registerMcpAction(intent, language, phrases, serverUrl, toolName)registerWebhookAction(intent, language, phrases, webhookUrl)onTranscript,onIntent,onError,onUnhandledstart(),stop(),destroy()
Docs
- Main repo: https://github.com/alimomin1998/v8v
- Full documentation: https://github.com/alimomin1998/v8v#readme
