Files
wehub-resource-sync 426e9eeabd
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Waiting to run
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Waiting to run
Build Agent Image / build-and-push (push) Waiting to run
Chat shell gestures / Chat shell gesture + parity e2e (push) Waiting to run
ci / test (push) Waiting to run
ci / lint-and-format (push) Waiting to run
ci / build (push) Waiting to run
ci / dev-startup (push) Waiting to run
Cloud Gateway Discord / Test (push) Waiting to run
Cloud Gateway Webhook / Test (push) Waiting to run
Cloud Tests / lint-and-types (push) Waiting to run
Cloud Tests / unit-tests (push) Waiting to run
Cloud Tests / integration-tests (push) Waiting to run
Cloud Tests / e2e-tests (push) Blocked by required conditions
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
Deploy Apps Worker (Product 2) / Determine environment (push) Waiting to run
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Blocked by required conditions
Deploy Eliza Provisioning Worker / Determine environment (push) Waiting to run
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Blocked by required conditions
Dev Smoke / Classify changed paths (push) Waiting to run
Dev Smoke / bun run dev onboarding chat (push) Blocked by required conditions
Dev Smoke / Vite HMR dependency-level smoke (push) Blocked by required conditions
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Waiting to run
gitleaks / gitleaks (push) Waiting to run
Markdown Links / Relative Markdown Links (push) Waiting to run
Publish @elizaos/example-code / check_npm (push) Waiting to run
Publish @elizaos/example-code / publish_npm (push) Blocked by required conditions
Publish @elizaos/plugin-elizacloud / verify_version (push) Waiting to run
Publish @elizaos/plugin-elizacloud / publish_npm (push) Blocked by required conditions
Quality (Extended) / Homepage Build (PR smoke) (push) Waiting to run
Quality (Extended) / Comment-only diff guard (push) Waiting to run
Quality (Extended) / Format + Type Safety Ratchet (push) Waiting to run
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Waiting to run
Quality (Extended) / Develop Gate (lint) (push) Waiting to run
Sandbox Live Smoke / Sandbox live smoke (push) Waiting to run
Snap Build & Test / Build Snap (amd64) (push) Waiting to run
Snap Build & Test / Build Snap (arm64) (push) Waiting to run
supply-chain / sbom (push) Waiting to run
supply-chain / vulnerability-scan (push) Waiting to run
Build, Push & Deploy to Phala Cloud / build-and-push (push) Waiting to run
Test Packaging / Validate Packaging Configs (push) Waiting to run
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Waiting to run
Test Packaging / Pack & Test JS Tarballs (push) Waiting to run
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Waiting to run
UI Fixture E2E / ui-fixture-e2e (push) Waiting to run
UI Fixture E2E / fixture-e2e (push) Waiting to run
UI Story Gate / story-gate (push) Waiting to run
vault-ci / test (macos-latest) (push) Waiting to run
vault-ci / test (ubuntu-latest) (push) Waiting to run
vault-ci / test (windows-latest) (push) Waiting to run
vault-ci / app-core wiring tests (push) Waiting to run
verify-patches / verify patches/CHECKSUMS.sha256 (push) Waiting to run
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Waiting to run
Voice Benchmark Smoke / voice bench smoke summary (push) Blocked by required conditions
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Waiting to run
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Waiting to run
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Waiting to run
Test Packaging / Build & Test PyPI Package (push) Waiting to run
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:43:05 +08:00
..

@elizaos/capacitor-agent

Capacitor plugin for managing an embedded Eliza agent runtime from a WebView-based app. Provides a uniform Agent.* JavaScript API across iOS, Android, and web/desktop, with platform-specific native bridges and an HTTP-based web fallback.

What it does

  • Start / stop the agent runtime and poll its state.
  • Send chat messages (DM channel) and receive agent replies.
  • Forward arbitrary HTTP requests to the local agent API server via a path-only bridge.
  • Read the per-boot bearer token on Android local deployments.

The plugin handles three deployment shapes automatically:

Platform Mechanism
iOS remote/cloud HTTP to a configured API endpoint (reads ELIZA_IOS_API_BASE or equivalent)
iOS local / sideload WebView ITTP bridge (window.__ELIZA_BRIDGE__?.iosLocalAgentRequest)
Android local Reflection call into ElizaAgentService in the host app
Web / Electrobun HTTP fetch to the boot-config apiBase or relative URLs

Capacitor methods

import { Agent } from "@elizaos/capacitor-agent";

// Start the agent
const status = await Agent.start({ mode: "cloud" });

// Get status
const status = await Agent.getStatus();
// status.state: "not_started" | "starting" | "running" | "stopped" | "error"

// Chat
const reply = await Agent.chat({ text: "Hello" });
// reply.text, reply.agentName

// Forward a request
const result = await Agent.request({
  path: "/api/status",
  method: "GET",
  timeoutMs: 5000,
});

// Stop the agent
await Agent.stop();

// Read local agent token (Android only)
const { available, token } = await Agent.getLocalAgentToken();

Installation

This is a Capacitor plugin distributed as part of the elizaOS monorepo. Add it as a dependency in your Capacitor app, then run npx cap sync to install the native modules.

npm install @elizaos/capacitor-agent
npx cap sync

iOS (CocoaPods)

The pod is named ElizaosCapacitorAgent. It is registered automatically via capacitor.config after pod install. Minimum deployment target: iOS 13.0 (note: local ITTP mode requires iOS 14+).

Android

The plugin is registered automatically. The host app must implement ElizaAgentService and register it in AndroidManifest.xml. The plugin locates it via reflection (no direct Gradle dependency).

Configuration

iOS endpoint (remote/cloud mode)

Set one of the following in your capacitor.config.json (under the Agent plugin key), Info.plist, or environment:

  • ELIZA_AGENT_API_BASE / ELIZA_IOS_API_BASE / ELIZA_MOBILE_API_BASE — HTTP/HTTPS base URL of the agent API server
  • ELIZA_AGENT_API_TOKEN / ELIZA_IOS_API_TOKEN / ELIZA_MOBILE_API_TOKEN — optional bearer token
  • ELIZA_IOS_RUNTIME_MODE / VITE_ELIZA_IOS_RUNTIME_MODE — set to local / ios-local / sideload-local to activate local ITTP mode instead of HTTP

Example capacitor.config.json fragment:

{
  "plugins": {
    "Agent": {
      "apiBase": "https://your-eliza-host.example.com",
      "apiToken": "your-bearer-token"
    }
  }
}

Web / Electrobun

  • boot-config apiBase (window.__ELIZAOS_APP_BOOT_CONFIG__) — API server base URL; falls back to relative URLs on http:/https: origins.
  • window.__ELIZA_API_TOKEN__ — bearer token; falls back to sessionStorage.eliza_api_token.

Exported types

interface AgentStatus {
  state: "not_started" | "starting" | "running" | "stopped" | "error";
  agentName: string | null;
  port: number | null;
  startedAt: number | null; // epoch ms
  error: string | null;
}

interface ChatResult {
  text: string;
  agentName: string;
}

interface AgentStartOptions {
  apiBase?: string;
  mode?: "remote-mac" | "cloud" | "cloud-hybrid" | "local" | string;
}

interface AgentRequestOptions {
  path: string;       // must start with /, not an absolute URL
  method?: string;
  headers?: Record<string, string>;
  body?: string | null;
  timeoutMs?: number;
}

interface AgentRequestResult {
  status: number;
  statusText: string;
  headers: Record<string, string>;
  body: string;
}

Building

bun run --cwd plugins/plugin-native-agent build   # tsc + rollup → dist/
bun run --cwd plugins/plugin-native-agent watch   # tsc --watch

Limitations

  • Agent.request only accepts path-only URLs (must start with /). Absolute URLs are rejected by all implementations.
  • Request and response bodies are capped at 10 MB.
  • iOS local mode (Agent.chat / Agent.request via ITTP) requires window.__ELIZA_BRIDGE__?.iosLocalAgentRequest to be installed by the host WebView. If it is absent, a 503 is returned.
  • The Android bridge uses reflection; renaming or unregistering ElizaAgentService breaks all Android calls silently at runtime.
  • The chat method maintains one conversation per session (lazily created via POST /api/conversations). The conversation ID is not persisted across app restarts.