Agent skill
tokmanni
Search products on the Tokmanni webshop (tokmanni.fi). This skill uses the Klevu search API directly, requiring no browser. Use when the user asks to "search Tokmanni", "find products on tokmanni.fi", "tokmanni product search", "check Tokmanni prices", or mentions searching the Tokmanni store.
Install this agent skill to your Project
npx add-skill https://github.com/akaihola/skills-akaihola/tree/main/tokmanni
SKILL.md
Tokmanni Product Search
Search the Tokmanni product catalog using their internal Klevu REST API. No browser or authentication required.
Quick Start
Run the search script to find products:
./scripts/search.py "taskulamppu"
./scripts/search.py "pesuaine" --limit 20
./scripts/search.py "porakone" --json
./scripts/search.py "kahvinkeitin" --sort lth
How It Works
The Tokmanni webshop at tokmanni.fi uses a Klevu search backend. The search
script calls this API directly over HTTPS with JSON responses, bypassing the
need for a browser.
The API requires no authentication — only a public API key embedded in the Tokmanni website frontend.
Using the Search Script
Basic search
./scripts/search.py "search term"
Prints a formatted list of up to 10 products with name, brand, price, stock status, category, SKU, and product URL.
JSON output
./scripts/search.py "search term" --json
Outputs the raw API response as JSON for programmatic use.
Pagination
./scripts/search.py "search term" --limit 20 --offset 10
--limit N— Number of results (default: 10)--offset N— Starting position, 0-based (default: 0)
Sorting
./scripts/search.py "search term" --sort lth
rel— Relevance (default)lth— Price low to highhtl— Price high to low
Programmatic Use
Import the search functions in Python:
from scripts.search import search_products, extract_products
raw = search_products("lamppu", limit=5)
products = extract_products(raw)
for p in products:
print(p["name"], p.get("salePrice", "N/A"))
Key Product Fields
| Field | Description |
|---|---|
name |
Product name |
salePrice |
Current selling price (EUR) |
oldPrice |
Original price before discount |
item_brand_name |
Brand name |
category |
Product category |
sku |
Product SKU / EAN code |
inStock |
Stock status ("yes" / "no") |
url |
Full product URL |
cloudinary_image |
Product image URL (Cloudinary) |
Image URLs
Images are served via Cloudinary with full URLs in the cloudinary_image field:
https://res.cloudinary.com/tokmanni/image/upload/c_pad,b_white,f_auto,h_328,w_328/d_default.png/{sku}.jpg
API Reference
See references/api.md for full API documentation including endpoint details,
all parameters, and response structure.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
youtube-to-markdown
Convert a YouTube video into clean, readable Markdown using its free auto-generated captions (no paid API needed). Use when the user asks to "convert YouTube video to markdown", "get transcript from YouTube URL", "summarise this video", or wants to turn YouTube subtitles/captions into readable text. Prefer this over youtube-transcription when the video already has auto-generated subtitles — it's free and faster. Accepts YouTube URLs.
brave-search
Search the web using Brave Search API. Use when the user asks to "search the web", "look up current information", "find news about", "research a topic online", "check prices online", or needs up-to-date facts that may not be in the model's training data. Requires BRAVE_SEARCH_API_KEY. Supports structured web results (pages, FAQs, news, videos) and an optional AI summarizer.
verkkokauppa
Search products on the Verkkokauppa.com Finnish webshop. This skill uses the Verkkokauppa search API directly, requiring no browser. Use when the user asks to "search Verkkokauppa", "find products on verkkokauppa.com", "verkkokauppa product search", "check Verkkokauppa prices", or mentions searching the Verkkokauppa store.
clasohlson
Search products on the Clas Ohlson Finland webshop (clasohlson.com/fi/). This skill uses the Voyado Elevate (Apptus eSales) search API directly, requiring no browser. Use when the user asks to "search Clas Ohlson", "find products on clasohlson.com", "clas ohlson product search", "check Clas Ohlson prices", or mentions searching the Finnish Clas Ohlson store.
bauhaus
Search products on the Bauhaus webshop (bauhaus.fi). This skill uses the Algolia search API with automatic key refresh. Use when the user asks to "search Bauhaus", "find products on bauhaus.fi", "bauhaus product search", "check Bauhaus prices", or mentions searching the Bauhaus store.
library
Didn't find tool you were looking for?