com um clique
1password
Plan, validate, and use 1Password CLI setup for secret injection and auth. Use when tasks need 1Password CLI usage, secret references, op run/read/inject, or provisioning secrets via env vars/.env files and scripts.
Menu
Plan, validate, and use 1Password CLI setup for secret injection and auth. Use when tasks need 1Password CLI usage, secret references, op run/read/inject, or provisioning secrets via env vars/.env files and scripts.
Guidelines for applying Disney's 12 principles of animation to web interfaces. Use when implementing motion, reviewing animation quality, or designing micro-interactions. Triggers on tasks involving CSS animations, transitions, motion libraries, or UX feedback.
Apply 37signals/DHH Rails conventions when writing Ruby on Rails code. Use when building Rails applications, reviewing Rails code, or making architectural decisions. Covers various aspects of Rails application architecture, design and dependencies.
Implement 3D elements and effects using Three.js and React Three Fiber
Expert 4PL and supply chain guidance for logistics operations. Use when discussing supply chain strategy, warehouse management, transportation planning, inventory optimization, 3PL partner management, logistics KPIs, or business strategy for logistics companies. Tailored for the eddication.io platform including DriverConnect driver tracking, job dispatch, and CRM operations.
Apply timeless programming wisdom from "97 Things Every Programmer Should Know" when writing, reviewing, or refactoring code. Use for design decisions, code quality checks, professional development guidance, testing strategies, and workflow optimization.
On-demand A2UI templates for flowchart, form, dashboard, info cards, and gallery.
| name | 1password |
| description | Plan, validate, and use 1Password CLI setup for secret injection and auth. Use when tasks need 1Password CLI usage, secret references, op run/read/inject, or provisioning secrets via env vars/.env files and scripts. |
Follow the official CLI get-started steps. Don't guess install commands.
references/get-started.md (install + app integration + sign-in flow)references/cli-examples.md (real op examples)references/secret-references.md (what secret references are + how to resolve)references/secrets-environment-variables.md (env + .env usage with op run)references/secrets-scripts.md (script patterns using op run/read/inject)references/environment-variables.md (OP_* env vars and precedence)references/secret-reference-syntax.md (URI rules, attributes, variables)references/secrets-template-syntax.md (template/enclosure/variables rules)references/item-fields.md (built-in vs custom fields + types)references/item-template-json.md (template keys + sections/fields)references/vault-permissions.md (permission hierarchy + dependencies)references/user-states.md (user state meanings)references/item-create.md (create items safely, templates, assignments)references/item-edit.md (edit items safely, templates, caveats)references/ssh-keys.md (generate and retrieve SSH keys)references/cli-reference.md (command structure, IDs, caching, flags)references/best-practices.md (updates, least privilege, templates)references/commands-completion.md (shell completion)references/commands-inject.md (inject secrets into templates)references/commands-read.md (read secrets by reference)references/commands-run.md (run with env secrets)references/commands-signin.md (sign in via app integration)references/commands-signout.md (sign out behavior)references/commands-update.md (update op CLI)references/commands-whoami.md (active account info)references/management-account.md (account management commands)references/management-connect.md (Connect server commands)references/management-document.md (document item commands)references/management-events-api.md (Events API integration)references/management-group.md (group commands)references/management-item.md (item commands)references/management-plugin.md (shell plugin commands)references/management-service-account.md (service account commands)references/management-user.md (user commands)references/management-vault.md (vault commands)references/environments.md (Environments overview + requirements)references/environments-local-env-file.md (local .env mount destination)references/environments-cursor-hook-validate.md (Cursor hook validation flow)references/shell-plugins-homebrew.md (Homebrew plugin setup)references/shell-plugins-huggingface.md (Hugging Face plugin setup)references/shell-plugins-openai.md (OpenAI plugin setup)references/shell-plugins-cloudflare-workers.md (Cloudflare Workers plugin setup)op --version.op commands (no direct op calls outside tmux).op signin (expect app prompt).op whoami (must succeed before any secret read).--account or OP_ACCOUNT.op run for environment variables / .env files.op read for a single secret to stdout or a file.op inject for config/template files.op plugin run for shell plugin flows..env templates in source control; never commit resolved env files.The shell tool uses a fresh TTY per command. To avoid re-prompts and failures, always run op inside a dedicated tmux session with a fresh socket/session name.
Example (see tmux skill for socket conventions, do not reuse old session names):
SOCKET_DIR="${CLAWDBOT_TMUX_SOCKET_DIR:-${TMPDIR:-/tmp}/clawdbot-tmux-sockets}"
mkdir -p "$SOCKET_DIR"
SOCKET="$SOCKET_DIR/clawdbot-op.sock"
SESSION="op-auth-$(date +%Y%m%d-%H%M%S)"
tmux -S "$SOCKET" new -d -s "$SESSION" -n shell
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op signin --account my.1password.com" Enter
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op whoami" Enter
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op vault list" Enter
tmux -S "$SOCKET" capture-pane -p -J -t "$SESSION":0.0 -S -200
tmux -S "$SOCKET" kill-session -t "$SESSION"
op run / op inject over writing secrets to disk.op account add.op signin inside tmux and authorize in the app.op outside tmux; stop and ask if tmux is unavailable.## Outputs section describing delivered artifacts.## Inputs section listing what is missing.## When to use section explaining the correct trigger.schema_version: 1 if outputs are contract-bound.