Table of Contents
Wiki Viewer Skill
Skill for browsing and reading the Organic community wiki. No API access needed — all reads are public.
Wiki: https://organic.eris.host | Discord: https://discord.gg/9sfuT7BJfE
Quick Read
Fetch any page raw (no auth required):
curl -s "https://organic.eris.host/doku.php?id=PAGE_ID&do=export_raw"
Key Pages
| Page ID | Description |
|---|---|
start | Wiki homepage / about |
| models | Model catalog |
| kimi-k25 | Kimi K2.5 details |
| glm-5 | GLM-5 details |
| glm-47-flash | GLM-4.7 Flash details |
| nemotron-3-super | Nemotron 3 Super details |
| nomic-embed-text-15 | Nomic embedding model |
| limits | Pricing and rate limits |
| prompt_caching | Cache behavior |
| faq | Frequently asked questions |
| when_will_synthetic_get_model_x | Model request FAQ |
| why_am_i_burning_through_my_credits_or_requests_so_quickly | Credit usage FAQ |
| harnesses | Integration guides |
| pi | Pi harness |
| tips | Pi tips |
| claude-code | Claude Code harness |
| zed | Zed harness |
| plexus | Plexus gateway |
| skill | API skill |
| wiki-editor | Wiki editing skill |
Sitemap
Browse all pages: https://organic.eris.host/start?do=index
Browse in Browser
Just navigate to: https://organic.eris.host/PAGE_ID
Python Helper
import subprocess def wiki_read(page_id): '''Fetch raw DokuWiki page content.''' url = f"https://organic.eris.host/doku.php?id={page_id}&do=export_raw" result = subprocess.run(["curl", "-s", url], capture_output=True, text=True) return result.stdout # Example content = wiki_read("models:glm-5") print(content)
Agent Prompt
Copy-paste to any agent:
Load organic-wiki-viewer skill.
This skill provides:
- Read any Organic wiki page: curl -s "https://organic.eris.host/doku.php?id={page}&do=export_raw"
- Key pages: models, limits, faq, harnesses, prompt_caching, infrastructure
- Sitemap: https://organic.eris.host/start?do=index
- No auth needed for reading
- For editing, use the wiki-editor skill instead
Want to Edit?
For writing/editing wiki pages, see wiki-editor. Wiki administrators must enable API access for your account.