- Add intelligent-router.sh hook for automatic agent routing - Add AUTO-TRIGGER-SUMMARY.md documentation - Add FINAL-INTEGRATION-SUMMARY.md documentation - Complete Prometheus integration (6 commands + 4 tools) - Complete Dexto integration (12 commands + 5 tools) - Enhanced Ralph with access to all agents - Fix /clawd command (removed disable-model-invocation) - Update hooks.json to v5 with intelligent routing - 291 total skills now available - All 21 commands with automatic routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
74 lines
2.1 KiB
Markdown
74 lines
2.1 KiB
Markdown
---
|
|
title: "Browser Agent: Amazon Shopping Assistant"
|
|
---
|
|
|
|
import ExpandableImage from '@site/src/components/ExpandableImage';
|
|
|
|
# Browser Agent: Amazon Shopping Assistant
|
|
|
|
Automate web browsing tasks like shopping, research, and data collection with AI-powered browser control.
|
|
|
|
**Task:** `Can you go to amazon and add some snacks to my cart? I like trail mix, cheetos and maybe surprise me with something else?`
|
|
|
|
```bash
|
|
# Default agent has browser tools
|
|
dexto
|
|
```
|
|
|
|
<a href="https://youtu.be/C-Z0aVbl4Ik">
|
|
<ExpandableImage src="https://github.com/user-attachments/assets/3f5be5e2-7a55-4093-a071-8c52f1a83ba3" alt="Dexto: Amazon shopping agent demo" title="Browser Agent: Amazon Shopping Assistant" width={900} />
|
|
</a>
|
|
|
|
## What it does
|
|
|
|
The default Dexto agent includes browser automation tools powered by Puppeteer:
|
|
- Navigate websites
|
|
- Fill out forms
|
|
- Click buttons and links
|
|
- Extract information
|
|
- Make purchases (with approval)
|
|
- Screenshot and analyze pages
|
|
|
|
## How it works
|
|
|
|
The agent uses browser tools to:
|
|
1. Open websites in a real browser
|
|
2. Understand page content
|
|
3. Interact with elements (click, type, scroll)
|
|
4. Complete multi-step tasks
|
|
5. Return results or confirmations
|
|
|
|
## Use Cases
|
|
|
|
- **Shopping**: Find and add items to cart
|
|
- **Research**: Collect data from multiple sources
|
|
- **Form Filling**: Automate repetitive data entry
|
|
- **Price Comparison**: Check prices across sites
|
|
- **Booking**: Reserve hotels, flights, restaurants
|
|
- **Content Extraction**: Scrape information from websites
|
|
|
|
## Try it
|
|
|
|
```bash
|
|
# Use default agent (includes browser tools)
|
|
dexto
|
|
|
|
# Example prompts
|
|
"Find the cheapest wireless mouse on Amazon"
|
|
"Book a table at an Italian restaurant nearby for 2 people at 7pm"
|
|
"Compare prices for iPhone 15 on Best Buy and Amazon"
|
|
```
|
|
|
|
## Safety Features
|
|
|
|
- **Approval prompts** before purchases or sensitive actions
|
|
- **Session isolation** for security
|
|
- **Headless or visible mode** options
|
|
- **Screenshot capture** for verification
|
|
|
|
## Learn More
|
|
|
|
- [CLI Guide](/docs/guides/cli/overview)
|
|
- [Agent Configuration](/docs/guides/configuring-dexto/overview)
|
|
- [Tool Confirmation](/docs/guides/configuring-dexto/agent-yml#tool-confirmation)
|