docs: auto-regenerate README and registry data

This commit is contained in:
github-actions[bot] 2026-06-25 22:44:18 +00:00
parent baac25dc81
commit 4f535e7cd2
2 changed files with 83 additions and 0 deletions

View file

@ -742,6 +742,15 @@ startup.
</blockquote>
</details>
<details>
<summary><b>Opencode Telemetry</b> <img src="https://badgen.net/github/stars/agostinilabsrl/opencode-telemetry" height="14"/> - <i>Passive cross-session telemetry to local SQLite; cost rollups across agent orchestration chains</i></summary>
<blockquote>
Logs every opencode session to a local SQLite database automatically — tokens, tool calls, skills, per-turn cost. Aggregates costs across orchestration chains (conductor + child sessions), offers turn-by-turn forensic inspection, and ships an `octm` CLI for reports without spending model tokens. Zero cloud, zero network, no message bodies stored.
<br><br>
<a href="https://github.com/agostinilabsrl/opencode-telemetry">🔗 <b>View Repository</b></a>
</blockquote>
</details>
<details>
<summary><b>OpenCode Throughput</b> <img src="https://badgen.net/github/stars/Howardzhangdqs/opencode-throughput" height="14"/> - <i>Real-time LLM performance monitoring</i></summary>
<blockquote>
@ -898,6 +907,21 @@ startup.
</blockquote>
</details>
<details>
<summary><b>OpenCodeRAG</b> <img src="https://badgen.net/github/stars/MrDoe/OpenCodeRAG" height="14"/> - <i>Local-first RAG plugin for semantic code search with tree-sitter chunking and LanceDB</i></summary>
<blockquote>
A local-first Retrieval-Augmented Generation plugin for OpenCode that enables semantic code
search across your workspace. Features AST-aware chunking via tree-sitter (19 languages),
incremental indexing with file-change detection, watch mode for live re-indexing, and
configurable embeddings via Ollama (default) or OpenAI. Includes a CLI (index, query, status,
clear) and an OpenCode plugin with a chunk retrieval tool + automatic chat.message file
suggestions. All processing stays local by default — no data leaves the machine.
<br><br>
<a href="https://github.com/MrDoe/OpenCodeRAG">🔗 <b>View Repository</b></a>
</blockquote>
</details>
<details>
<summary><b>OpenHax Codex</b> <img src="https://badgen.net/github/stars/open-hax/codex" height="14"/> - <i>OAuth authentication</i></summary>
<blockquote>
@ -1314,6 +1338,15 @@ Also available for bat and Ghostty in the same repository.
</blockquote>
</details>
<details>
<summary><b>deliberation</b> <img src="https://badgen.net/github/stars/antonbabenko/deliberation" height="14"/> - <i>Ask GPT, Gemini, Grok, or OpenRouter for a second opinion or a fix, as expert subagents over MCP</i></summary>
<blockquote>
Get a delegated second opinion or an actual fix from GPT (Codex), Gemini, Grok (xAI), or OpenRouter. Seven expert subagents - Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst, Researcher, and Debugger - plus the ask-gpt, ask-gemini, ask-grok, ask-openrouter, ask-all, and consensus commands. Each one can advise (read-only) or implement. ask-all asks every model at once and compares the answers; consensus runs an arbiter loop until the models agree.
<br><br>
<a href="https://github.com/antonbabenko/deliberation">🔗 <b>View Repository</b></a>
</blockquote>
</details>
<details>
<summary><b>Gem Team</b> <img src="https://badgen.net/github/stars/mubaidr/gem-team" height="14"/> - <i>Self-Learning Multi-agent orchestration harness for spec-driven development and automated verification.</i></summary>
<blockquote>

50
dist/registry.json vendored
View file

@ -23,6 +23,25 @@
],
"tags": []
},
{
"productId": "deliberation",
"type": "agents",
"displayName": "deliberation",
"repoUrl": "https://github.com/antonbabenko/deliberation",
"tagline": "Ask GPT, Gemini, Grok, or OpenRouter for a second opinion or a fix, as expert subagents over MCP",
"description": "Get a delegated second opinion or an actual fix from GPT (Codex), Gemini, Grok (xAI), or OpenRouter. Seven expert subagents - Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst, Researcher, and Debugger - plus the ask-gpt, ask-gemini, ask-grok, ask-openrouter, ask-all, and consensus commands. Each one can advise (read-only) or implement. ask-all asks every model at once and compares the answers; consensus runs an arbiter loop until the models agree.",
"scope": [
"global",
"project"
],
"tags": [
"mcp",
"subagents",
"second-opinion",
"code-review",
"multi-model"
]
},
{
"productId": "gem-team",
"type": "agents",
@ -1099,6 +1118,18 @@
],
"tags": []
},
{
"productId": "opencode-rag",
"type": "plugins",
"displayName": "OpenCodeRAG",
"repoUrl": "https://github.com/MrDoe/OpenCodeRAG",
"tagline": "Local-first RAG plugin for semantic code search with tree-sitter chunking and LanceDB",
"description": "A local-first Retrieval-Augmented Generation plugin for OpenCode that enables semantic code\nsearch across your workspace. Features AST-aware chunking via tree-sitter (19 languages),\nincremental indexing with file-change detection, watch mode for live re-indexing, and\nconfigurable embeddings via Ollama (default) or OpenAI. Includes a CLI (index, query, status,\nclear) and an OpenCode plugin with a chunk retrieval tool + automatic chat.message file\nsuggestions. All processing stays local by default — no data leaves the machine.\n",
"scope": [
"global"
],
"tags": []
},
{
"productId": "opencode-research-papers",
"type": "plugins",
@ -1231,6 +1262,25 @@
],
"tags": []
},
{
"productId": "opencode-telemetry",
"type": "plugins",
"displayName": "Opencode Telemetry",
"repoUrl": "https://github.com/agostinilabsrl/opencode-telemetry",
"tagline": "Passive cross-session telemetry to local SQLite; cost rollups across agent orchestration chains",
"description": "Logs every opencode session to a local SQLite database automatically — tokens, tool calls, skills, per-turn cost. Aggregates costs across orchestration chains (conductor + child sessions), offers turn-by-turn forensic inspection, and ships an `octm` CLI for reports without spending model tokens. Zero cloud, zero network, no message bodies stored.",
"scope": [
"global"
],
"tags": [
"telemetry",
"observability",
"cost-tracking",
"sqlite",
"local-first",
"orchestration"
]
},
{
"productId": "opencode-throughput",
"type": "plugins",