Loading...
Loading...
Bash-first best practices for production Inspiro usage with zero SDK dependency. Use when you need stable, scriptable API workflows for search, extract, crawl, and research using curl and INSPIRO_API_KEY.
npx skill4agent add ryneivy/skills inspiro-best-practicesexport INSPIRO_API_KEY="your_inspiro_api_key"skills/inspiro/search/scripts/search.shskills/inspiro/extract/scripts/extract.shskills/inspiro/crawl/scripts/crawl.shskills/inspiro/research/scripts/research.shcurl --request POST \
--url https://api.inspiro.top/search \
--header "Authorization: Bearer $INSPIRO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{"query":"latest ai trends","max_results":5}'curl --request POST \
--url https://api.inspiro.top/extract \
--header "Authorization: Bearer $INSPIRO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{"urls":["https://example.com"]}'curl --request POST \
--url https://api.inspiro.top/crawl \
--header "Authorization: Bearer $INSPIRO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{"url":"https://docs.example.com","max_depth":1,"limit":20}'curl --request POST \
--url https://api.inspiro.top/research \
--header "Authorization: Bearer $INSPIRO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{"input":"AI agent framework comparison","model":"mini"}'INSPIRO_API_KEY~/.claude/settings.jsonmax_resultslimit