feat: Add Semantic API Search as built-in skill#77
feat: Add Semantic API Search as built-in skill#77peter-j-thompson wants to merge 4 commits intoConway-Research:mainfrom
Conversation
|
Hey @0xSigil! Updated the SKILL.md to v1.2.0 — now includes documentation for both Discovery and Execution modes, batch queries, preflight checks, and auto-discovery. Here's a quick demo of what an automaton agent gets with this skill: # Discovery: "What API do I use to send marketing emails?"
curl -s https://semanticapi.dev/api/query \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_KEY" \
-d '{"query": "send marketing emails"}'
# Returns: Resend API → POST /emails/batch
# + auth setup URL, code snippets, alternative providers (SendGrid, Mailgun)The agent gets the exact endpoint, required params, auth instructions, and working code snippets — for 163+ providers. If the provider isn't in our catalog, auto-discovery finds it live from the web. Happy to answer any questions or adjust the skill definition! |
- Added CLI interface (pip install semanticapi-cli) - Updated provider count: 163 providers, 771 capabilities - Added MCP server interface - Added batch queries and preflight endpoints - Expanded provider category examples - Version bump to 1.3.0
|
Hey @0xSigil — quick update on what's new since the last comment: CLI Tool (PyPI:
Server Improvements
x402 Micropayments (LIVE)
The skill definition in this PR is current with all of the above. Let us know if you have any questions or want to take it for a spin! |
Summary
Adds semantic_api_search as a built-in skill for the automaton framework.
What it does
pip install semanticapi-clifor terminal usagepip install semanticapi-mcpfor Claude Desktop / ChatGPTChanges
skills/semantic-api/SKILL.md— no existing files modifiedSkill repo
Full source and provider registry: https://github.com/peter-j-thompson/semantic-api-skill
Links