A skill for quickly reordering items from Amazon's Buy Again page using browser automation and 1Password integration.
/plugin marketplace add caseyg/caseys-claude/plugin install reorder-basics@cag-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
A skill for quickly reordering items from Amazon's Buy Again page using browser automation and 1Password integration.
This skill should be used when the user asks to "reorder", "buy again", or "repurchase" an item from Amazon. It automates the entire process of logging in, finding the item, confirming details, and completing the purchase.
op command available)/plugin install dev-browser@dev-browser-marketplace)If op command is not found, install it:
brew install --cask 1password-cli
Then the user needs to enable CLI integration in the 1Password app:
Use the 1Password CLI to retrieve Amazon credentials:
op item get "Amazon" --fields username,password --format json
If multiple Amazon entries exist, list them and ask the user which one to use:
op item list --tags amazon --format json
Use dev-browser to automate the login flow:
Handling 2FA (OTP):
If Amazon prompts for a one-time password, fetch it from 1Password:
op item get "Amazon" --otp
This returns the current TOTP code. Enter it in the OTP field.
Tip: Check the "Don't require OTP on this browser" checkbox if available to skip 2FA on future sessions.
Note: dev-browser maintains persistent state, so you can navigate and interact without re-establishing context between steps.
Matching Strategy:
Before proceeding, use AskUserQuestion to confirm:
If user confirms:
Provide the user with:
Note: The order confirmation number is sent via email rather than displayed prominently on the confirmation page.
op item get "Amazon" --otpThis skill uses the dev-browser plugin for browser automation. Invoke it via the Skill tool:
Skill: dev-browser:dev-browser
dev-browser provides:
And these Claude Code tools:
| Tool | Purpose |
|---|---|
Bash | Run 1Password CLI commands |
AskUserQuestion | Confirm details with user |
Skill | Invoke dev-browser for browser automation |
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.