# Send 1Password Web UI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "1password-ui",
    "name": "1Password Web UI",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/maverick-software/1password-ui",
    "canonicalUrl": "https://clawhub.ai/maverick-software/1password-ui",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/1password-ui",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-ui",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "CHANGELOG.md",
      "INSTALL_INSTRUCTIONS.md",
      "package.json",
      "scripts/op-helper.py",
      "reference/1password-settings.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "1password-ui",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T00:06:22.486Z",
      "expiresAt": "2026-05-06T00:06:22.486Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-ui",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-ui",
        "contentDisposition": "attachment; filename=\"1password-ui-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "1password-ui"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/1password-ui"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/1password-ui",
    "downloadUrl": "https://openagent3.xyz/downloads/1password-ui",
    "agentUrl": "https://openagent3.xyz/skills/1password-ui/agent",
    "manifestUrl": "https://openagent3.xyz/skills/1password-ui/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/1password-ui/agent.md"
  }
}
```
## Documentation

### 1Password UI Extension

Adds a 1Password tab to the OpenClaw Control dashboard under the Tools group. Browse vaults, manage credential mappings for skills, and handle authentication — all from the web UI.

### Features

FeatureDescriptionDashboard Tab"1Password" under Tools in sidebarConnection StatusSee signed-in account, CLI/Connect modeSign In FlowAuthenticate directly from the UIDocker SupportWorks with 1Password Connect for containersCredential MappingsMap 1Password items to skill configs

### Agent Installation Prompt

To install this skill, give your agent this prompt:

Install the 1password-ui skill from ClawHub.

The skill is at: ~/clawd/skills/1password-ui/
Follow INSTALL_INSTRUCTIONS.md step by step.

Summary of changes needed:
1. Copy 1password-backend.ts to src/gateway/server-methods/1password.ts
2. Register handlers in server-methods.ts
3. Add "1password" tab to navigation.ts (TAB_GROUPS, Tab type, TAB_PATHS, icon, title, subtitle)
4. Add state variables to app.ts
5. Copy 1password-views.ts to ui/src/ui/views/1password.ts
6. Add view rendering to app-render.ts
7. Add tab loading to app-settings.ts
8. Build and restart: pnpm build && pnpm ui:build && clawdbot gateway restart

### For Local Installations (Ubuntu/Windows/macOS)

1Password CLI (op):
# macOS/Linux
brew install 1password-cli

# Or from https://1password.com/downloads/command-line/



CLI Integration enabled in 1Password app:

Settings → Developer → "Integrate with 1Password CLI" ✓

### For Docker Installations

See Docker Setup below.

### Sign In

Open OpenClaw Dashboard → Tools → 1Password
Click Sign In with 1Password
Authorize in the 1Password app popup (or run op signin in terminal)
Status shows "Connected" with your account

### Credential Mappings

Once signed in, you can map 1Password items to skills:

Skills like Pipedream can read credentials from 1Password
Mappings are stored in ~/clawd/config/1password-mappings.json
Format: { "skillId": { "item": "Item Name", "vault": "Private", "fields": {...} } }

### Example: Pipedream with 1Password

# Store Pipedream credentials in 1Password
op item create --category="API Credential" --title="Pipedream Connect" \\
  --vault="Private" \\
  "client_id[text]=your_client_id" \\
  "client_secret[password]=your_client_secret" \\
  "project_id[text]=proj_xxxxx"

# Use in token refresh
PIPEDREAM_1PASSWORD_ITEM="Pipedream Connect" python3 ~/clawd/scripts/pipedream-token-refresh.py

### Gateway RPC Methods

MethodDescription1password.statusGet CLI/Connect status, signed-in account1password.signinTrigger sign-in flow1password.signoutSign out of current session1password.vaultsList available vaults1password.itemsList items in a vault1password.getItemGet item field structure (not values)1password.readSecretRead a secret (backend only)1password.mappings.listGet skill → 1Password mappings1password.mappings.setCreate/update a mapping1password.mappings.deleteRemove a mapping1password.mappings.testTest if a mapping works

### Docker Setup (1Password Connect)

For Docker-based OpenClaw installations, use 1Password Connect instead of the CLI.

### Step 1: Deploy 1Password Connect

# docker-compose.yml
services:
  op-connect-api:
    image: 1password/connect-api:latest
    ports:
      - "8080:8080"
    volumes:
      - ./1password-credentials.json:/home/opuser/.op/1password-credentials.json:ro
      - op-data:/home/opuser/.op/data

  op-connect-sync:
    image: 1password/connect-sync:latest
    volumes:
      - ./1password-credentials.json:/home/opuser/.op/1password-credentials.json:ro
      - op-data:/home/opuser/.op/data

volumes:
  op-data:

### Step 2: Get Credentials

Go to my.1password.com → Integrations → Secrets Automation
Create a Connect server
Download 1password-credentials.json
Create an access token

### Step 3: Configure OpenClaw

services:
  clawdbot:
    environment:
      - OP_CONNECT_HOST=http://op-connect-api:8080
      - OP_CONNECT_TOKEN=your-access-token

The UI automatically detects Connect mode.

### Files Included

1password-ui/
├── SKILL.md                      # This file
├── INSTALL_INSTRUCTIONS.md       # Step-by-step installation
├── CHANGELOG.md                  # Version history
├── package.json                  # Skill metadata
├── reference/
│   ├── 1password-backend.ts      # Gateway RPC handlers
│   ├── 1password-views.ts        # UI view (Lit template)
│   ├── 1password-settings.ts     # Tab loading logic
│   └── 1password-plugin.ts       # Plugin registration (optional)
└── scripts/
    └── op-helper.py              # CLI/Connect bridge for skills

### ✅ Safe by Design

AspectImplementationSecrets not in UIgetItem and items return field names only, never valuesNo network installersNo curl | sh or remote scripts — all code is localManual installationRequires explicit code edits, no automated patchingMapping file perms1password-mappings.json should be 0600 (contains references, not secrets)CLI authUses 1Password app integration for biometric auth when available

### ⚠️ Documented Risks

RiskMitigationreadSecret RPC availableThe 1password.readSecret method IS exposed via gateway RPC. This is intentional — skills need to read secrets. Security relies on: (1) 1Password requiring user auth, (2) gateway access control (loopback-only by default).Gateway exposureAll 1password.* methods are RPC calls. If you expose your gateway to the network, protect it with authentication.Connect tokenIn Docker mode, OP_CONNECT_TOKEN grants vault access. Keep it secure like any API key.

### File Security

# Recommended permissions for mapping file
chmod 600 ~/clawd/config/1password-mappings.json

### "1Password CLI Not Found"

brew install 1password-cli
# or download from 1password.com/downloads/command-line/

### "Not signed in"

op signin
op whoami  # verify

### Sign-in fails / "authorization denied"

Unlock the 1Password app
Enable CLI integration: Settings → Developer → "Integrate with 1Password CLI"

### Docker: "connection refused"

docker ps | grep op-connect  # check containers running

### Docker: "401 unauthorized"

Verify OP_CONNECT_TOKEN is set correctly
Check token hasn't expired

### Support

ClawHub: clawhub.ai/skills/1password-ui
1Password CLI: developer.1password.com/docs/cli
1Password Connect: developer.1password.com/docs/connect
OpenClaw Discord: discord.com/invite/clawd

### v1.1.0 (2025-02-11)

Full working implementation with dashboard UI
Sign-in flow from web interface
CLI and Connect mode support
Credential mapping system

### v1.0.0 (2025-02-11)

Initial release with reference implementations
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maverick-software
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T00:06:22.486Z
- Expires at: 2026-05-06T00:06:22.486Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/1password-ui)
- [Send to Agent page](https://openagent3.xyz/skills/1password-ui/agent)
- [JSON manifest](https://openagent3.xyz/skills/1password-ui/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/1password-ui/agent.md)
- [Download page](https://openagent3.xyz/downloads/1password-ui)