Defined in src/skills.metta; bridge code lives in src/agentverse.py.
Both skills delegate to a fixed Agentverse address. They depend on network access and the remote agent being reachable.
(tavily-search "query")Send a research query to a dedicated Tavily-backed search agent on Agentverse and return its reply.
query— the search string.
A compact string of web search results: a few links with short snippets.
(tavily-search "OpenCog Hyperon")
(tavily-search "recent papers on Non-Axiomatic Logic")- Output quality depends on the remote agent, not on OmegaClaw itself.
- For a lighter-weight, direct-backend search, see
searchin reference-skills-communication.md.
(technical-analysis "TICKER")Send a ticker symbol to a remote technical-analysis agent and return its chart-oriented summary.
TICKER— a stock ticker symbol, quoted.
A string containing the remote analysis.
(technical-analysis "AMZN")
(technical-analysis "NVDA")- Remote-only — requires network and a reachable Agentverse target.
- The bridge implementation is in
src/agentverse.py::technical_analysis.
See tutorial-06-remote-agentverse-skills.md for the pattern, and reference-python-bridges.md for the bridge surface.