This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== 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): <code bash> curl -s "https://organic.eris.host/doku.php?id=PAGE_ID&do=export_raw" </code> ===== Key Pages ===== ^ Page ID ^ Description ^ | ''start'' | Wiki homepage / about | | [[:models]] | Model catalog | | [[:models:kimi-k25]] | Kimi K2.5 details | | [[:models:glm-5]] | GLM-5 details | | [[:models:glm-47-flash]] | GLM-4.7 Flash details | | [[:models:nemotron-3-super]] | Nemotron 3 Super details | | [[:models:nomic-embed-text-15]] | Nomic embedding model | | [[:limits]] | Pricing and rate limits | | [[:prompt_caching]] | Cache behavior | | [[:faq]] | Frequently asked questions | | [[:faq:when_will_synthetic_get_model_x]] | Model request FAQ | | [[:faq:why_am_i_burning_through_my_credits_or_requests_so_quickly]] | Credit usage FAQ | | [[:harnesses]] | Integration guides | | [[:harnesses:pi]] | Pi harness | | [[:harnesses:pi:tips]] | Pi tips | | [[:harnesses:claude-code]] | Claude Code harness | | [[:harnesses:zed]] | Zed harness | | [[:plexus]] | Plexus gateway | | [[:skill]] | API skill | | [[: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'' Example: [[https://organic.eris.host/models:kimi-k25]] ===== Python Helper ===== <code python> 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) </code> ===== Agent Prompt ===== Copy-paste to any agent: <code> 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 </code> ===== Want to Edit? ===== For writing/editing wiki pages, see [[:skill:wiki-editor]]. Wiki administrators must enable API access for your account.