mirror of
https://github.com/awesome-opencode/awesome-opencode.git
synced 2026-08-18 04:54:29 +00:00
docs: auto-regenerate README and registry data
This commit is contained in:
parent
58c4431a5c
commit
832fc3b2e4
2 changed files with 87 additions and 0 deletions
39
README.md
39
README.md
|
|
@ -412,6 +412,15 @@
|
|||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>Opencode Log Sanitizer</b> <img src="https://badgen.net/github/stars/errhythm/opencode-log-sanitizer" height="14"/> - <i>Sanitizes pasted logs by redacting long strings, JWTs, bcrypt hashes, and base64 blobs</i></summary>
|
||||
<blockquote>
|
||||
Sanitizes pasted logs before sending them to AI by redacting long quoted strings, JWT tokens, bcrypt hashes, and base64 blobs to reduce token usage and remove irrelevant noise.
|
||||
<br><br>
|
||||
<a href="https://github.com/errhythm/opencode-log-sanitizer">🔗 <b>View Repository</b></a>
|
||||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>Opencode Mem</b> <img src="https://badgen.net/github/stars/tickernelz/opencode-mem" height="14"/> - <i>Persistent memory with vector database</i></summary>
|
||||
<blockquote>
|
||||
|
|
@ -556,6 +565,18 @@
|
|||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>OpenCode Workaholic</b> <img src="https://badgen.net/github/stars/RoderickQiu/opencode-workaholic" height="14"/> - <i>Enforce mandatory working time and prevents premature "done" responses</i></summary>
|
||||
<blockquote>
|
||||
- AI has an early-exit problem: it says "done" at 30 seconds while edge cases are untested, bugs remain, and docs are missing.
|
||||
- Workaholic enforces mandatory working time for AI until the timer hits zero.
|
||||
- Blocks premature "done" responses until timer expire, and require AI to call checkout() to end the task.
|
||||
|
||||
<br><br>
|
||||
<a href="https://github.com/RoderickQiu/opencode-workaholic">🔗 <b>View Repository</b></a>
|
||||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>Opencode Workspace</b> <img src="https://badgen.net/github/stars/kdcokenny/opencode-workspace" height="14"/> - <i>Multi-agent orchestration</i></summary>
|
||||
<blockquote>
|
||||
|
|
@ -1092,6 +1113,15 @@ Also available for bat and Ghostty in the same repository.
|
|||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>brood-box</b> <img src="https://badgen.net/github/stars/stacklok/brood-box" height="14"/> - <i>Hardware-isolated microVMs for coding agents</i></summary>
|
||||
<blockquote>
|
||||
Run AI coding agents (Claude Code, Codex, OpenCode) inside hardware-isolated microVMs with snapshot isolation, egress control, and MCP authorization.
|
||||
<br><br>
|
||||
<a href="https://github.com/stacklok/brood-box">🔗 <b>View Repository</b></a>
|
||||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>CLI Proxy API</b> <img src="https://badgen.net/github/stars/router-for-me/CLIProxyAPI" height="14"/> - <i>Multi-model proxy</i></summary>
|
||||
<blockquote>
|
||||
|
|
@ -1272,6 +1302,15 @@ Also available for bat and Ghostty in the same repository.
|
|||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>Opencode A2A</b> <img src="https://badgen.net/github/stars/Intelligent-Internet/opencode-a2a" height="14"/> - <i>Full A2A Protocol support for OpenCode.</i></summary>
|
||||
<blockquote>
|
||||
A production-ready A2A Protocol implementation that exposes OpenCode as a standardized Agent-to-Agent service, enabling seamless cross-agent collaboration and automated workflows.
|
||||
<br><br>
|
||||
<a href="https://github.com/Intelligent-Internet/opencode-a2a">🔗 <b>View Repository</b></a>
|
||||
</blockquote>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><b>Opencode Chat Export</b> <img src="https://badgen.net/github/stars/jjserenity/opencode-chat-export" height="14"/> - <i>MCP server to export chat history to Markdown</i></summary>
|
||||
<blockquote>
|
||||
|
|
|
|||
48
dist/registry.json
vendored
48
dist/registry.json
vendored
|
|
@ -565,6 +565,18 @@
|
|||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-log-sanitizer",
|
||||
"type": "plugins",
|
||||
"displayName": "Opencode Log Sanitizer",
|
||||
"repoUrl": "https://github.com/errhythm/opencode-log-sanitizer",
|
||||
"tagline": "Sanitizes pasted logs by redacting long strings, JWTs, bcrypt hashes, and base64 blobs",
|
||||
"description": "Sanitizes pasted logs before sending them to AI by redacting long quoted strings, JWT tokens, bcrypt hashes, and base64 blobs to reduce token usage and remove irrelevant noise.",
|
||||
"scope": [
|
||||
"global"
|
||||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-mem",
|
||||
"type": "plugins",
|
||||
|
|
@ -877,6 +889,18 @@
|
|||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-workaholic",
|
||||
"type": "plugins",
|
||||
"displayName": "OpenCode Workaholic",
|
||||
"repoUrl": "https://github.com/RoderickQiu/opencode-workaholic",
|
||||
"tagline": "Enforce mandatory working time and prevents premature \"done\" responses",
|
||||
"description": "- AI has an early-exit problem: it says \"done\" at 30 seconds while edge cases are untested, bugs remain, and docs are missing. \n- Workaholic enforces mandatory working time for AI until the timer hits zero.\n- Blocks premature \"done\" responses until timer expire, and require AI to call checkout() to end the task.\n",
|
||||
"scope": [
|
||||
"global"
|
||||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-workspace",
|
||||
"type": "plugins",
|
||||
|
|
@ -1269,6 +1293,18 @@
|
|||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "brood-box",
|
||||
"type": "projects",
|
||||
"displayName": "brood-box",
|
||||
"repoUrl": "https://github.com/stacklok/brood-box",
|
||||
"tagline": "Hardware-isolated microVMs for coding agents",
|
||||
"description": "Run AI coding agents (Claude Code, Codex, OpenCode) inside hardware-isolated microVMs with snapshot isolation, egress control, and MCP authorization.",
|
||||
"scope": [
|
||||
"global"
|
||||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "cli-proxy-api",
|
||||
"type": "projects",
|
||||
|
|
@ -1510,6 +1546,18 @@
|
|||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-a2a",
|
||||
"type": "projects",
|
||||
"displayName": "Opencode A2A",
|
||||
"repoUrl": "https://github.com/Intelligent-Internet/opencode-a2a",
|
||||
"tagline": "Full A2A Protocol support for OpenCode.",
|
||||
"description": "A production-ready A2A Protocol implementation that exposes OpenCode as a standardized Agent-to-Agent service, enabling seamless cross-agent collaboration and automated workflows.",
|
||||
"scope": [
|
||||
"global"
|
||||
],
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"productId": "opencode-chat-export",
|
||||
"type": "projects",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue