원클릭으로
1password
// 1Password CLI - manage secrets, vaults, items, inject credentials into commands. Use when user mentions '1password', 'op', 'secrets management', or wants to manage passwords and secrets via CLI.
// 1Password CLI - manage secrets, vaults, items, inject credentials into commands. Use when user mentions '1password', 'op', 'secrets management', or wants to manage passwords and secrets via CLI.
AWS CLI - manage S3, EC2, Lambda, IAM, CloudFormation and other AWS services. Use when user mentions 'aws', 'amazon web services', 's3', 'ec2', 'lambda', or wants to interact with AWS.
Azure CLI - manage VMs, web apps, functions, storage, AKS, and other Azure services. Use when user mentions 'az', 'azure', or wants to interact with Microsoft Azure.
Clerk authentication CLI - set up auth, pull environment variables. Use when user mentions 'clerk', 'clerk auth', or wants to configure Clerk authentication.
Container platform CLI - build images, run containers, manage compose stacks, volumes, networks. Use when user mentions 'docker', 'container', 'docker compose', or wants to manage containers.
Drizzle ORM toolkit CLI - generate migrations, push schema, introspect databases, run studio. Use when user mentions 'drizzle', 'drizzle-kit', or wants to manage database schema with Drizzle ORM.
Figma Code Connect CLI - connect design components to code, publish connections, parse Figma files. Use when user mentions 'figma', 'code connect', 'figma cli', or wants to link Figma designs to code.
| name | 1password |
| description | 1Password CLI - manage secrets, vaults, items, inject credentials into commands. Use when user mentions '1password', 'op', 'secrets management', or wants to manage passwords and secrets via CLI. |
| category | productivity |
| install_command | brew install 1password-cli |
| binary | op |
brew install 1password-cli
Verify installation:
op --version
Use --format json for machine-readable output.
op signin
For service accounts, set the OP_SERVICE_ACCOUNT_TOKEN environment variable.
| Command | Description |
|---|---|
op item list | List all items |
op item list --vault <vault> | List items in a specific vault |
op item get <name-or-id> | Get an item by name or ID |
op item get <name> --fields label=password | Get a specific field from an item |
op item create --category login --title <title> --vault <vault> | Create a new item |
op item edit <name> password=newvalue | Edit an item field |
op item delete <name> | Delete an item |
| Command | Description |
|---|---|
op vault list | List all vaults |
op vault get <name> | Get vault details |
op vault create <name> | Create a new vault |
op vault delete <name> | Delete a vault |
| Command | Description |
|---|---|
op document list | List all documents |
op document get <name> | Download a document |
op document create <file> --title <title> | Upload a document |
op document delete <name> | Delete a document |
| Command | Description |
|---|---|
op inject -i template.env -o .env | Inject secrets from a template into a file |
op run -- <command> | Run a command with secrets injected as env vars |
op run --env-file .env -- <command> | Run with secrets from env file |
op read "op://vault/item/field" | Read a single secret reference |
| Command | Description |
|---|---|
op account list | List configured accounts |
op account get | Get current account details |
op whoami | Show current signed-in user |
| Flag | Description |
|---|---|
--format json | Output as JSON |
--vault <vault> | Specify vault |
--account <account> | Specify account |
--cache | Enable response caching |
--no-newline | Do not append newline to output |