# Send 1Password Cli For Agents 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-cli",
    "name": "1Password Cli For Agents",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sichengchen/1password-cli",
    "canonicalUrl": "https://clawhub.ai/sichengchen/1password-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/1password-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "1password-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-28T23:48:14.173Z",
      "expiresAt": "2026-05-05T23:48:14.173Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=1password-cli",
        "contentDisposition": "attachment; filename=\"1password-cli-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "1password-cli"
      },
      "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-cli"
    },
    "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-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/1password-cli",
    "agentUrl": "https://openagent3.xyz/skills/1password-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/1password-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/1password-cli/agent.md"
  }
}
```
## Documentation

### 1Password CLI for Agents

This skill allows agents to securely access and manage secrets using the 1Password CLI (op) and a Service Account. It provides commands for reading, writing, and managing items within a dedicated vault.

### Prerequisites

Install 1Password CLI:

macOS: brew install --cask 1password-cli
Linux/Windows: See official docs.


Create a Service Account:

Go to 1Password Developer Portal.
Create a Service Account and grant it access to a specific vault (e.g., "Agent Vault").
Copy the Service Account Token.


Set Environment Variable:

Set OP_SERVICE_ACCOUNT_TOKEN in your environment (e.g., .env file or export in shell).
For OpenClaw, you can add OP_SERVICE_ACCOUNT_TOKEN=... to .env.

### Usage

All commands require the OP_SERVICE_ACCOUNT_TOKEN to be set.

### 1. Check Authentication

Verify the service account is working:

op whoami

### 2. List Vaults

List vaults accessible to the service account:

op vault list

### 3. Read an Item

Get details of an item (JSON format is best for parsing):

op item get "Item Name" --vault "Vault Name" --format json

Or get a specific field (e.g., password):

op read "op://Vault Name/Item Name/password"

### 4. Create an Item

Create a login item:

op item create --category login --title "My Service" --url "https://example.com" --vault "Vault Name" username="myuser" password="mypassword"

Create a secure note:

op item create --category "Secure Note" --title "API Key" --vault "Vault Name" notes="my-secret-key"

### 5. Edit an Item

Update a password:

op item edit "Item Name" password="newpassword" --vault "Vault Name"

### 6. Delete an Item

op item delete "Item Name" --vault "Vault Name"

### Tips for Agents

Always use JSON output: Add --format json to op commands for structured data that is easier to parse.
Security: Never print the OP_SERVICE_ACCOUNT_TOKEN or retrieved secrets to the console unless explicitly asked.
Vaults: If multiple vaults are available, specify the --vault flag to avoid ambiguity.
Rate Limits: Service accounts have rate limits. Cache results if possible or retry with backoff.

### Troubleshooting

"You are not currently signed in": Ensure OP_SERVICE_ACCOUNT_TOKEN is set correctly.
"account is not authorized": Check that the service account has permission for the specific vault and operation (read/write).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sichengchen
- Version: 0.1.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-28T23:48:14.173Z
- Expires at: 2026-05-05T23:48:14.173Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/1password-cli)
- [Send to Agent page](https://openagent3.xyz/skills/1password-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/1password-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/1password-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/1password-cli)