Agent skill
allegro-monitor
Monitor Allegro.pl prices and get alerts when items drop below your threshold.
Install this agent skill to your Project
npx add-skill https://github.com/nexty5870/clawdis-allegro-skill/tree/main/allegro-monitor
Metadata
Additional technical details for this skill
- clawdis
-
{ "emoji": "\ud83d\uded2", "requires": { "tools": [ "clawdis_browser" ] } }
SKILL.md
Allegro Price Monitor
Monitor Allegro.pl listings for specific items and track price changes.
Overview
This skill uses browser automation to scrape Allegro search results and track prices over time. It's designed for hunting deals on specific items (like GPUs).
Since Allegro's API registration is currently closed, this skill uses clawdis_browser to:
- Open Allegro search page with the query
- Handle cookie consent if needed
- Sort by price (lowest first)
- Extract listing data: title, price, condition, seller, URL
- Filter and return results
Agent Instructions
When asked to check Allegro prices:
-
Use
clawdis_browserto open:https://allegro.pl/listing?string={query}&order=porder=psorts by price ascending
-
If you see a cookie consent dialog ("Dbamy o Twoją prywatność"), click "Ok, zgadzam się"
-
Take a snapshot and extract listings from
articleelements:- Title:
heading[level=2]text - Price: Look for
XXX,XX złpattern - Condition: After
Stan:label (Nowy, Używany, Uszkodzony, etc.) - URL: Link in the heading
- Seller: "Super Sprzedawca", "Firma", or "Prywatny sprzedawca"
- Title:
-
Filter results:
- Skip
Uszkodzony(damaged) items unless specifically requested - Apply max price filter if specified
- Apply condition filter if specified
- Skip
-
Report findings with: title, price, condition, and URL
Condition Reference
| Polish | English | Working? |
|---|---|---|
| Nowy | New | ✅ |
| Jak nowe | Like new | ✅ |
| Używany | Used | ✅ |
| Powystawowy | Ex-display | ✅ |
| Po zwrocie | After return | ⚠️ Check |
| Uszkodzony | Damaged | ❌ |
Example Queries
- "Check Allegro for RTX 3090 under 3000 PLN"
- "Find used PS5 controllers on Allegro"
- "Monitor Allegro for iPhone 15 Pro deals"
Cron Setup
For automated monitoring, create a cron job:
{
"name": "Item Price Monitor",
"schedule": { "kind": "cron", "expr": "0 9,14,19 * * *", "tz": "Europe/Warsaw" },
"sessionTarget": "isolated",
"wakeMode": "now",
"payload": {
"kind": "agentTurn",
"message": "Check Allegro for [ITEM]. Only working condition. Alert if under [PRICE] PLN.",
"deliver": false
}
}
Notes
- Allegro is Poland's largest marketplace (like eBay for Poland)
- Prices are in PLN (Polish Złoty)
- Best deals often come from "Super Sprzedawca" (Super Seller) accounts
- "Allegro Lokalnie" listings are local pickup / classifieds style
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
scaffold-exercises
Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.
migrate-to-shoehorn
Migrate test files from `as` type assertions to @total-typescript/shoehorn. Use when user mentions shoehorn, wants to replace `as` in tests, or needs partial test data.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
Didn't find tool you were looking for?