Updates
Rolling release / release (push) Successful in 6m40s

This commit is contained in:
2026-09-12 07:22:47 -04:00
parent e4546f8e95
commit e9040d110a
30 changed files with 1688 additions and 444 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ export function createRuntimeTools({ computer } = {}) {
return [
{
name: 'jarvis_status',
description: 'Return the local Jarvis QVAC master status. Never claim cloud access.',
description: 'Return the local Jarvis QuantumVerse Automatic Computer master status.',
parameters: { type: 'object', properties: {} },
execute: () => ({
local: true,
@@ -14,7 +14,7 @@ export function createRuntimeTools({ computer } = {}) {
},
{
name: 'cu_status',
description: 'Return whether the explicit computer-use grant is active and its step budget.',
description: 'Return whether the user pressed Allow now for computer use, and the remaining step budget.',
parameters: { type: 'object', properties: {} },
execute: () => computer?.status?.() || { active: false, backend: 'none' },
},