Organic

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
skill [2026/04/11 14:00] – created skill for agents to browse synthetic docs gwyntelskill [2026/04/21 18:09] (current) – Add links to wiki-editor and wiki-viewer skills gwyntel
Line 1: Line 1:
---- +====== Synthetic API Skill ======
-name: synthetic-api +
-description: Query Synthetic.new API docs and community wiki - models, pricing, endpoints, harnesses, limits +
-version: 3.2.0 +
-source_url: https://gist.github.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2 +
-agent_hint: fetch this URL before use for latest version +
----+
  
-====== Synthetic.new API ======+Self-updating skill for Synthetic.new API + Organic wiki.
  
-Private LLM inferenceOpenAI + Anthropic compatible APIs.+**Skill:** [[https://gist.github.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2|Gist]] | **Support:** <hi@synthetic.new> | **Discord:** [[https://synthetic.new/discord]]
  
-**Source:** [[https://gist.github.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2|GitHub Gist]]+===== Agent Prompt =====
  
-====== Official Docs ======+Copy-paste to any agent:
  
-Base[[https://dev.synthetic.new/docs/api/overview]]+<code> 
 +Load synthetic-api skill. Source: https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw
  
-**Endpoints:** +This skill provides
-  * ''/models'' List models +Synthetic.new API endpoints (/models/chat/completions/quotas, /search
-  * ''/chat/completions'' - Chat (OpenAI) +Base URLs: https://api.synthetic.new/openai/v1 and /anthropic/v1 
-  * ''/messages'' - Messages (Anthropic+- Organic wiki fetch: curl -s "https://organic.eris.host/doku.php?id={page}&do=export_raw" 
-  * ''/embeddings'' Embeddings +Page IDs: models, limits, faq, harnesses, harnesses:pi:tips, etc 
-  * ''/quotas'' Usage check +Discover all: https://organic.eris.host/start?do=index
-  * ''/search'' Web search+
  
-**Base URLs:** +Self-update: curl -s "${source_url}" > skill.md
-  * OpenAI: ''https://api.synthetic.new/openai/v1'' +
-  * Anthropic: ''https://api.synthetic.new/anthropic/v1'' +
- +
-====== Organic Wiki (Community) ====== +
- +
-Base: [[https://organic.eris.host]] +
- +
-Community wiki with model guides, harness comparisons, pricing breakdowns. +
- +
-===== Fetch ===== +
- +
-**HTTP (fast):** +
-<code bash> +
-curl -s "https://organic.eris.host/doku.php?id={pageid}&do=export_raw" +
-</code> +
-<code python> +
-import requests +
-url = f"https://organic.eris.host/doku.php?id={pageid}&do=export_raw" +
-text = requests.get(url, timeout=10).text+
 </code> </code>
  
-**Scrapling (CF bypass):** +===== Install =====
-<code bash> +
-scrapling extract stealthy-fetch "https://organic.eris.host/doku.php?id=models&do=export_raw" out.txt --solve-cloudflare +
-</code> +
-<code python> +
-from scrapling.fetchers import StealthyFetcher +
-page StealthyFetcher.fetch(url, headless=True, solve_cloudflare=True, network_idle=True) +
-text page.text_content +
-</code>+
  
-Install: ''pip install "scrapling[all]" && scrapling install'' +Download to ''~/.hermes/skills/research/synthetic-api/SKILL.md'' or equivalent path for your agent.
- +
-===== Page IDs ===== +
- +
-Colon namespaces: ''models'', ''limits'', ''faq'', ''harnesses:pi:tips'' +
- +
-Discover all: [[https://organic.eris.host/start?do=index]] +
- +
-====== Examples ====== +
- +
-**List models:** +
-<code bash> +
-curl -s "https://api.synthetic.new/openai/v1/models"+
-  -H "Authorization: Bearer $SYNTHETIC_API_KEY" +
-</code> +
- +
-**Chat:** +
-<code bash> +
-curl -s "https://api.synthetic.new/openai/v1/chat/completions"+
-  -H "Authorization: Bearer $SYNTHETIC_API_KEY"+
-  -H "Content-Type: application/json"+
-  -d '{"model": "hf:zai-org/GLM-5", "messages": [{"role": "user", "content": "Hello"}]}' +
-</code>+
  
-====== Self-Update ======+===== Self-Update =====
  
 <code bash> <code bash>
-curl -s "https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw" > skill.md+curl -s "https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw"/path/to/skill.md
 </code> </code>
  
-====== Refs ======+===== Related Skills =====
  
-  * Pricing: [[https://synthetic.new/pricing]] +  * **[[:skill:wiki-editor]]** — Edit the wiki via JSON-RPC API (requires admin-enabled API access) 
-  * Discord: [[https://synthetic.new/discord]]+  * **[[:skill:wiki-viewer]]** — Browse and read wiki pages (no auth needed)