
News Shopping
- 173 installs
- 16 repo stars
- Updated July 14, 2026
- merit-systems/agentcash-skills
Connect agents to news feeds and shopping catalogs so they can research trends, compare products, and assist purchase decisions autonomously.
About
AgentCash news-shopping skill from merit-systems/agentcash-skills helps Claude integrate live news and product catalog APIs into agents for trend research, price comparison, and assisted shopping workflows with structured tool calls.
- News feed ingestion and summarization
- Product search and comparison flows
- Shopping assistant orchestration
- AgentCash commerce API usage
- Real-time external data fetching
News Shopping by the numbers
- 173 all-time installs (skills.sh)
- +2 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #3,104 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/merit-systems/agentcash-skills --skill news-shoppingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 173 |
|---|---|
| repo stars | ★ 16 |
| Last updated | July 14, 2026 |
| Repository | merit-systems/agentcash-skills ↗ |
What it does
Connect agents to news feeds and shopping catalogs so they can research trends, compare products, and assist purchase decisions autonomously.
Files
News & Shopping Search with Serper
Access Google News and Google Shopping through x402-protected endpoints.
Setup
See rules/getting-started.md for installation and wallet setup.
Quick Reference
| Task | Endpoint | Price | Description |
|---|---|---|---|
| News search | https://stableenrich.dev/api/serper/news | $0.04 | Google News search |
| Shopping search | https://stableenrich.dev/api/serper/shopping | $0.04 | Google Shopping search |
News Search
Search Google News for articles:
npx agentcash@latest fetch https://stableenrich.dev/api/serper/news -m POST -b '{"q": "artificial intelligence regulation"}'Parameters:
q- Search query (required)num- Number of results (default: 10)gl- Country code (e.g., "us", "uk", "de")hl- Language (e.g., "en", "es", "fr")tbs- Time filter (qdr:h, qdr:d, qdr:w, qdr:m, qdr:y)
Time Filters
| Filter | Meaning |
|---|---|
qdr:h | Past hour |
qdr:d | Past 24 hours |
qdr:w | Past week |
qdr:m | Past month |
qdr:y | Past year |
Example - news from past week:
npx agentcash@latest fetch https://stableenrich.dev/api/serper/news -m POST -b '{"q": "AI startups funding", "tbs": "qdr:w"}'Country/Language Filtering
npx agentcash@latest fetch https://stableenrich.dev/api/serper/news -m POST -b '{"q": "technology news", "gl": "uk", "hl": "en"}'Returns:
- Article title and snippet
- Source/publication name
- Published date
- Article URL
- Thumbnail image (if available)
Shopping Search
Search Google Shopping for products:
npx agentcash@latest fetch https://stableenrich.dev/api/serper/shopping -m POST -b '{"q": "wireless noise cancelling headphones"}'Parameters:
q- Search query (required)num- Number of results (default: 10)gl- Country code for pricing/availabilityhl- Language
Returns:
- Product title
- Price and currency
- Merchant/store name
- Product URL
- Rating (if available)
- Thumbnail image
Shopping with Location
Get local pricing and availability:
npx agentcash@latest fetch https://stableenrich.dev/api/serper/shopping -m POST -b '{"q": "MacBook Pro M3", "gl": "us"}'Workflows
News Monitoring
- [ ] (Optional) Check balance:
npx agentcash@latest balance - [ ] Search with appropriate time filter
- [ ] Review and summarize top stories
npx agentcash@latest fetch https://stableenrich.dev/api/serper/news -m POST -b '{"q": "company name OR competitor name", "tbs": "qdr:d", "num": 20}'Breaking News Research
- [ ] Search with
qdr:hfor past hour - [ ] Identify key sources and facts
- [ ] Note developing aspects
npx agentcash@latest fetch https://stableenrich.dev/api/serper/news -m POST -b '{"q": "breaking news topic", "tbs": "qdr:h"}'Product Research
- [ ] Define search criteria (category, price range)
- [ ] Search Google Shopping
- [ ] Compare prices across merchants
- [ ] Present top options with pros/cons
npx agentcash@latest fetch https://stableenrich.dev/api/serper/shopping -m POST -b '{"q": "ergonomic office chair under $500", "num": 20}'Price Comparison
- [ ] Use exact product name/model
- [ ] Compare merchant prices
- [ ] Note shipping and availability
npx agentcash@latest fetch https://stableenrich.dev/api/serper/shopping -m POST -b '{"q": "exact product name model number"}'Response Data
News Article Fields
title- Article headlinesnippet- Article excerptsource- Publication namedate- Published datelink- Article URLimageUrl- Thumbnail (if available)
Shopping Product Fields
title- Product nameprice- Price with currencysource- Merchant/storelink- Product URLrating- Star rating (if available)reviews- Number of reviewsimageUrl- Product imagedelivery- Shipping info (if available)
Tips
News Search
- Use quotes for exact phrases:
"climate change" - Use OR for alternatives:
AI OR "artificial intelligence" - Be specific to get relevant results
- Use time filters to avoid old news
Shopping Search
- Include brand/model for specific products
- Add "under $X" or "best" for filtered results
- Check
glparameter for accurate local pricing - More results = better price comparison
Cost Estimation
Both endpoints are $0.04 per call.
| Task | Calls | Cost |
|---|---|---|
| Quick news check | 1 | $0.04 |
| Daily news summary | 2-3 | $0.08-0.12 |
| Product research | 1-2 | $0.04-0.08 |
| Full market research | 3-5 | $0.12-0.20 |
Getting Started
Setup
1. Install the agentcash CLI:
npm install -g agentcash2. Check wallet:
npx agentcash@latest balance3. Fund wallet (if needed):
- Redeem invite:
npx agentcash@latest redeem YOUR_CODE - Or run
npx agentcash@latest accountsto get Base or Solana deposit links and wallet addresses
Troubleshooting
| Issue | Solution |
|---|---|
| "Command not found" | Run npm install -g agentcash |
| "Insufficient balance" | Fund wallet with USDC |
| "Payment failed" | Check balance, retry (transient errors) |