Files
openhuman/src/utils/tauriCommands.ts
T
Steven EnamakelandGitHub bfaabd3b86 fix/rename (#20)
* chore: update AlphaHuman version to 0.49.3 and configure updater plugin in tauri.conf.json

- Bumped the AlphaHuman package version in Cargo.lock to 0.49.3.
- Added updater configuration in tauri.conf.json to enable automatic updates with specified endpoints.

* refactor: rename AlphaHuman to OpenHuman across the codebase

- Updated all instances of "AlphaHuman" to "OpenHuman" in comments, tooltips, and constants to reflect the new branding.
- Adjusted relevant documentation and prompts to ensure consistency with the new name.

* refactor: update documentation and configurations to reflect OpenHuman branding

- Replaced all instances of "AlphaHuman" with "OpenHuman" in documentation, comments, and configuration files to ensure consistency with the new branding.
- Updated deep link URLs and related authentication flows to use the new "openhuman://" scheme.
- Adjusted paths and references in the skills system and other related files to align with the new project name.te

* refactor: standardize OpenHuman references and update configurations

- Replaced all instances of "AlphaHuman" with "OpenHuman" across documentation, comments, and configuration files to maintain branding consistency.
- Updated URLs and paths to reflect the new "openhuman://" scheme.
- Adjusted environment variable names and related settings to align with the new project identity.
- Enhanced documentation for clarity and accuracy regarding the OpenHuman framework.r

* chore: update subproject commit reference in skills directory

* refactor: update backend URL to reflect new service domain

- Changed default backend URL from "https://api.openhuman.xyz" to "https://api.tinyhumans.ai" in both JavaScript and Rust configuration files.
- Ensured consistency across the codebase regarding the new backend service endpoint.

* feat: introduce identity and migration modules for OpenHuman

- Added a new identity module to support AIEOS v1.1 JSON format, including structures for identity, psychology, linguistics, motivations, capabilities, physicality, history, and interests.
- Implemented a migration module to facilitate data migration from OpenClaw memory, including SQLite and Markdown sources, with detailed reporting on migration statistics and warnings.
- Established utility functions for handling multimodal content and image processing within the OpenHuman framework.
- Enhanced the agent system with new dispatcher and classifier functionalities to improve tool management and message classification.

* chore: remove Android project files and configurations

- Deleted various Android project files including .editorconfig, .gitignore, build.gradle.kts, gradle.properties, and others to clean up the project structure.
- Removed all related resources, layouts, and source files from the Android app directory to streamline the codebase.
- This cleanup is part of a larger effort to refactor and simplify the project structure.

* refactor: update login flow and remove Telegram integration

- Removed the TelegramLoginButton component and its references from the OAuthLoginSection, streamlining the login options.
- Updated the AppRoutes to remove the login route, reflecting changes in the authentication flow.
- Enhanced the RotatingTetrahedronCanvas component with improved geometry and lighting effects for better visual presentation.
- Adjusted the TypewriterGreeting component's styling for consistency.
- Cleaned up the Welcome page to integrate the OAuthLoginSection directly, improving user experience.

* chore: update subproject commit reference in skills directory

* chore: update test configurations and improve test assertions

- Modified test scripts in package.json to use a specific Vitest configuration file for consistency.
- Updated assertions in loader tests to ensure loading durations are non-negative.
- Enhanced tool loading tests to clarify expected behavior regarding localStorage and cache management.
- Adjusted agent tool registry tests to improve error handling and ensure accurate statistics.
- Refined device detection tests to reflect updated fallback URLs.

* fix: enhance parameter formatting and remove unused components

- Updated the `formatParameters` function to handle cases where schema properties are empty, returning a more informative response.
- Deleted the `DownloadScreen` component and associated device detection utilities to streamline the codebase and remove unused functionality.
- Adjusted tests to reflect changes in the tool loading and agent tool registry, ensuring accuracy in assertions.

* chore: simplify Vitest configuration by removing unused include patterns

- Updated the Vitest configuration to remove unnecessary test file patterns, streamlining the test setup for better clarity and maintainability.

* refactor: update paths and comments for AI configuration and file watching

- Modified Vite configuration to ignore only the `src-tauri` directory.
- Updated logging messages to reflect the correct path for writing AI configuration files.
- Adjusted fetch calls in the file watcher to use the new path for `TOOLS.md`.
- Revised comments and logic in Rust code to clarify the handling of AI configuration file paths, including legacy fallback options.

* chore: remove unused updater secrets from GitHub Actions workflow

- Deleted UPDATER_GIST_URL and UPDATER_GIST_ID environment variables from the package-and-publish workflow, streamlining the configuration.

* chore: comment out Vitest thresholds for clarity

- Commented out the thresholds section in the Vitest configuration to improve clarity and maintainability, as it is currently not in use.

* ran formatter

* chore: update updater public key in tauri configuration

- Replaced the existing public key in the updater plugin configuration with a new value to ensure proper functionality and security.

* chore: update ESLint configuration and refactor components

- Added `localStorage` and `sessionStorage` as readonly globals in ESLint configuration for better linting support.
- Removed unused imports from `SkillsPanel.tsx` to clean up the code.
- Changed the type of `watcherInterval` in `file-watcher.ts` for improved type safety.
- Refactored toast management logic in `Intelligence.tsx` to enhance clarity and maintainability.
- Simplified import statements in `IntelligenceProvider.tsx` for consistency.
- Streamlined object property shorthand in `agentToolRegistry.ts` for cleaner code.

* refactor: improve error handling and type safety in Intelligence component

- Enhanced toast notification logic to defer state updates, preventing potential issues with setState in effects.
- Updated the source filter dispatch to use a more specific type for improved type safety.

* refactor: enhance type safety across various components and services

- Updated type definitions from `any` to `unknown` in multiple files to improve type safety and prevent potential runtime errors.
- Refactored state management in `TauriCommandsPanel` to use more specific types.
- Adjusted context and parameters in several interfaces to ensure consistent typing.
- Added ESLint directive to `polyfills.ts` for intentional global assignments.
- Streamlined type handling in utility functions and API responses for better clarity and maintainability.

* refactor: streamline import statements and improve code clarity

- Consolidated import statements in `agentToolRegistry.ts` and `intelligenceSlice.ts` for better readability.
- Simplified the `createTestStore` function in `test-utils.tsx` to enhance code conciseness.
- Cleaned up the `isExecutionStepProgressEvent` function in `intelligence-chat-api.ts` for improved clarity and maintainability.
2026-03-26 17:04:46 -07:00

656 lines
16 KiB
TypeScript

/**
* Tauri Commands
*
* Helper functions for invoking Tauri commands from the frontend.
*/
import { isTauri as coreIsTauri, invoke } from '@tauri-apps/api/core';
import { injectOpenClawContext } from '../lib/ai/openclaw-injector';
// Check if we're running in Tauri
export const isTauri = (): boolean => {
// Tauri v2: prefer the official runtime check over window globals.
return coreIsTauri();
};
/**
* Exchange a login token for a session token
*/
export async function exchangeToken(
backendUrl: string,
token: string
): Promise<{ sessionToken: string; user: object }> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('exchange_token', { backendUrl, token });
}
/**
* Get the current authentication state from Rust
*/
export async function getAuthState(): Promise<{ is_authenticated: boolean; user: object | null }> {
if (!isTauri()) {
return { is_authenticated: false, user: null };
}
return await invoke('get_auth_state');
}
/**
* Get the session token from secure storage
*/
export async function getSessionToken(): Promise<string | null> {
if (!isTauri()) {
return null;
}
return await invoke('get_session_token');
}
/**
* Logout and clear session
*/
export async function logout(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('logout');
}
/**
* Store session in secure storage
*/
export async function storeSession(token: string, user: object): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('store_session', { token, user });
}
/**
* Show the main window
*/
export async function showWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('show_window');
}
/**
* Hide the main window
*/
export async function hideWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('hide_window');
}
/**
* Toggle window visibility
*/
export async function toggleWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('toggle_window');
}
/**
* Check if window is visible
*/
export async function isWindowVisible(): Promise<boolean> {
if (!isTauri()) {
return true; // In browser, window is always visible
}
return await invoke('is_window_visible');
}
/**
* Minimize the window
*/
export async function minimizeWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('minimize_window');
}
/**
* Maximize or unmaximize the window
*/
export async function maximizeWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('maximize_window');
}
/**
* Close the window (minimizes to tray on macOS)
*/
export async function closeWindow(): Promise<void> {
if (!isTauri()) {
return;
}
await invoke('close_window');
}
/**
* Set the window title
*/
export async function setWindowTitle(title: string): Promise<void> {
if (!isTauri()) {
document.title = title;
return;
}
await invoke('set_window_title', { title });
}
// --- Memory Commands ---
/**
* Initialise the TinyHumans memory client in Rust with the user's JWT token
* (sourced from `authSlice.token` in Redux). Call this after login and after
* Redux Persist rehydration.
*/
export async function syncMemoryClientToken(token: string): Promise<void> {
console.debug(
'[memory] syncMemoryClientToken: entry (token_present=%s, is_tauri=%s)',
!!token,
isTauri()
);
if (!isTauri() || !token) {
console.debug('[memory] syncMemoryClientToken: exit — skipped (not Tauri or empty token)');
return;
}
try {
console.debug(
'[memory] syncMemoryClientToken: payload → init_memory_client { jwtToken: <redacted, len=%d> }',
token.length
);
await invoke('init_memory_client', { jwtToken: token });
console.info('[memory] syncMemoryClientToken: exit — ok');
} catch (err) {
console.warn('[memory] syncMemoryClientToken: exit — error:', err);
}
}
export interface MemoryDebugDocument {
documentId: string;
namespace: string;
title?: string;
raw: unknown;
}
export async function memoryListDocuments(namespace?: string): Promise<unknown> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('memory_list_documents', { namespace });
}
export async function memoryListNamespaces(): Promise<string[]> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('memory_list_namespaces');
}
export async function memoryDeleteDocument(
documentId: string,
namespace: string
): Promise<unknown> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('memory_delete_document', { documentId, namespace });
}
export async function memoryQueryNamespace(
namespace: string,
query: string,
maxChunks?: number
): Promise<string> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('memory_query_namespace', { namespace, query, maxChunks });
}
export async function memoryRecallNamespace(
namespace: string,
maxChunks?: number
): Promise<string | null> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('memory_recall_namespace', { namespace, maxChunks });
}
// --- OpenHuman Commands ---
export type DoctorSeverity = 'Ok' | 'Warn' | 'Error';
export type ModelProbeOutcome = 'Ok' | 'Skipped' | 'AuthOrAccess' | 'Error';
export type IntegrationStatus = 'Available' | 'Active' | 'ComingSoon';
export type IntegrationCategory =
| 'Chat'
| 'AiModel'
| 'Productivity'
| 'MusicAudio'
| 'SmartHome'
| 'ToolsAutomation'
| 'MediaCreative'
| 'Social'
| 'Platform';
export type ModelRefreshSource = 'Live' | 'CacheFresh' | 'CacheStaleFallback';
export type ServiceState = 'Running' | 'Stopped' | 'NotInstalled' | { Unknown: string };
export type HardwareTransport = 'Native' | 'Serial' | 'Probe' | 'None';
export interface CommandResponse<T> {
result: T;
logs: string[];
}
export interface SkillSnapshot {
skill_id: string;
name: string;
status: unknown;
tools: Array<{ name: string; description: string; input_schema?: unknown }>;
error?: string | null;
state?: Record<string, unknown>;
}
export interface DoctorReport {
items: { severity: DoctorSeverity; category: string; message: string }[];
summary: { ok: number; warnings: number; errors: number };
}
export interface ModelProbeReport {
entries: { provider: string; outcome: ModelProbeOutcome; message?: string | null }[];
summary: { ok: number; skipped: number; auth_or_access: number; errors: number };
}
export interface IntegrationInfo {
name: string;
description: string;
category: IntegrationCategory;
status: IntegrationStatus;
setup_hints: string[];
}
export interface ModelRefreshResult {
provider: string;
models: string[];
source: ModelRefreshSource;
cache_age_secs?: number | null;
warnings: string[];
}
export interface MigrationStats {
from_sqlite: number;
from_markdown: number;
imported: number;
skipped_unchanged: number;
renamed_conflicts: number;
}
export interface MigrationReport {
source_workspace: string;
target_workspace: string;
dry_run: boolean;
stats: MigrationStats;
warnings: string[];
}
export interface DiscoveredDevice {
name: string;
detail?: string | null;
device_path?: string | null;
transport: HardwareTransport;
}
export interface HardwareIntrospect {
path: string;
vid?: number | null;
pid?: number | null;
board_name?: string | null;
architecture?: string | null;
memory_map_note: string;
}
export interface ServiceStatus {
state: ServiceState;
unit_path?: string | null;
label: string;
details?: string | null;
}
export interface AgentServerStatus {
running: boolean;
url: string;
}
export interface ConfigSnapshot {
config: Record<string, unknown>;
workspace_dir: string;
config_path: string;
}
export interface ModelSettingsUpdate {
api_key?: string | null;
api_url?: string | null;
default_provider?: string | null;
default_model?: string | null;
default_temperature?: number | null;
}
export interface MemorySettingsUpdate {
backend?: string | null;
auto_save?: boolean | null;
embedding_provider?: string | null;
embedding_model?: string | null;
embedding_dimensions?: number | null;
}
export interface GatewaySettingsUpdate {
host?: string | null;
port?: number | null;
require_pairing?: boolean | null;
allow_public_bind?: boolean | null;
}
export interface RuntimeSettingsUpdate {
kind?: string | null;
reasoning_enabled?: boolean | null;
}
export interface BrowserSettingsUpdate {
enabled?: boolean | null;
}
export interface RuntimeFlags {
browser_allow_all: boolean;
log_prompts: boolean;
}
export interface TunnelConfig {
provider: string;
cloudflare?: { token: string } | null;
tailscale?: { funnel?: boolean; hostname?: string | null } | null;
ngrok?: { auth_token: string; domain?: string | null } | null;
custom?: {
start_command: string;
health_url?: string | null;
url_pattern?: string | null;
} | null;
}
export async function openhumanGetConfig(): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_get_config');
}
export async function openhumanUpdateModelSettings(
update: ModelSettingsUpdate
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_model_settings', { update });
}
export async function openhumanUpdateMemorySettings(
update: MemorySettingsUpdate
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_memory_settings', { update });
}
export async function openhumanUpdateGatewaySettings(
update: GatewaySettingsUpdate
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_gateway_settings', { update });
}
export async function openhumanUpdateTunnelSettings(
tunnel: TunnelConfig
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_tunnel_settings', { tunnel });
}
export async function openhumanUpdateRuntimeSettings(
update: RuntimeSettingsUpdate
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_runtime_settings', { update });
}
export async function openhumanUpdateBrowserSettings(
update: BrowserSettingsUpdate
): Promise<CommandResponse<ConfigSnapshot>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_update_browser_settings', { update });
}
export async function openhumanGetRuntimeFlags(): Promise<CommandResponse<RuntimeFlags>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_get_runtime_flags');
}
export async function openhumanSetBrowserAllowAll(
enabled: boolean
): Promise<CommandResponse<RuntimeFlags>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_set_browser_allow_all', { enabled });
}
export async function openhumanAgentChat(
message: string,
providerOverride?: string,
modelOverride?: string,
temperature?: number
): Promise<CommandResponse<string>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
let processedMessage = message;
try {
processedMessage = injectOpenClawContext(message);
} catch (error) {
console.warn('[OpenClaw] Injection failed in agentChat:', error);
}
return await invoke('openhuman_agent_chat', {
message: processedMessage,
providerOverride,
modelOverride,
temperature,
});
}
export async function openhumanEncryptSecret(plaintext: string): Promise<CommandResponse<string>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_encrypt_secret', { plaintext });
}
export async function openhumanDecryptSecret(ciphertext: string): Promise<CommandResponse<string>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_decrypt_secret', { ciphertext });
}
export async function openhumanDoctorReport(): Promise<CommandResponse<DoctorReport>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_doctor_report');
}
export async function openhumanDoctorModels(
providerOverride?: string,
useCache = true
): Promise<CommandResponse<ModelProbeReport>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_doctor_models', { providerOverride, useCache });
}
export async function openhumanListIntegrations(): Promise<CommandResponse<IntegrationInfo[]>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_list_integrations');
}
export async function openhumanGetIntegrationInfo(
name: string
): Promise<CommandResponse<IntegrationInfo>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_get_integration_info', { name });
}
export async function openhumanModelsRefresh(
providerOverride?: string,
force = false
): Promise<CommandResponse<ModelRefreshResult>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_models_refresh', { providerOverride, force });
}
export async function openhumanMigrateOpenclaw(
sourceWorkspace?: string,
dryRun = true
): Promise<CommandResponse<MigrationReport>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_migrate_openclaw', { sourceWorkspace, dryRun });
}
export async function openhumanHardwareDiscover(): Promise<CommandResponse<DiscoveredDevice[]>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_hardware_discover');
}
export async function openhumanHardwareIntrospect(
path: string
): Promise<CommandResponse<HardwareIntrospect>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_hardware_introspect', { path });
}
export async function openhumanServiceInstall(): Promise<CommandResponse<ServiceStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_service_install');
}
export async function openhumanServiceStart(): Promise<CommandResponse<ServiceStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_service_start');
}
export async function openhumanServiceStop(): Promise<CommandResponse<ServiceStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_service_stop');
}
export async function openhumanServiceStatus(): Promise<CommandResponse<ServiceStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_service_status');
}
export async function openhumanServiceUninstall(): Promise<CommandResponse<ServiceStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_service_uninstall');
}
export async function openhumanAgentServerStatus(): Promise<CommandResponse<AgentServerStatus>> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('openhuman_agent_server_status');
}
export async function runtimeListSkills(): Promise<SkillSnapshot[]> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('runtime_list_skills');
}
export async function runtimeIsSkillEnabled(skillId: string): Promise<boolean> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
return await invoke('runtime_is_skill_enabled', { skill_id: skillId });
}
export async function runtimeEnableSkill(skillId: string): Promise<void> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
await invoke('runtime_enable_skill', { skill_id: skillId });
}
export async function runtimeDisableSkill(skillId: string): Promise<void> {
if (!isTauri()) {
throw new Error('Not running in Tauri');
}
await invoke('runtime_disable_skill', { skill_id: skillId });
}