First Commit

This commit is contained in:
MangoPig
2026-06-05 02:49:10 +01:00
commit 29760dc85e
7 changed files with 92 additions and 0 deletions

0
.gitignore vendored Normal file
View File

59
Base/opencode.jsonc Normal file
View File

@@ -0,0 +1,59 @@
{
"$schema": "https://opencode.ai/config.json",
// == General Settings ==
"autoupdate": "notify",
"plugin": [
// Third Party Plugins
"./plugins/opencode-md-table-formatter",
"@tarquinen/opencode-dcp@latest", // currently resolves to 3.1.9
"opencode-agent-skills@0.7.0", // known-good pinned version currently working
// "envsitter-guard@latest", // last cached version seen: 0.0.4
"./plugins/opencode-smart-title",
"cc-safety-net", // currently cached at 0.8.2
"@plannotator/opencode@latest", // currently resolves to 0.19.24
// Custom Local Plugins
"./plugins/opencode-chroma-mem",
"./plugins/opencode-diva"
],
// == Personal Settings ==
"username": "MangoPig",
"default_agent": "General",
"agent": {
"plan": {
"disable": true
},
"build": {
"disable": true
}
},
"provider": {
"openrouter": {
"whitelist": ["qwen/qwen3.6-plus:free"]
}
},
"enabled_providers": ["A100-Ollama", "azure-cognitive-services", "openrouter", "Taobao-Claude"],
"mcp": {
"cloudflare": {
"type": "remote",
"url": "https://mcp.cloudflare.com/mcp",
"enabled": true
},
"time": {
"type": "local",
"command": ["docker", "run", "-i", "--rm", "-e", "LOCAL_TIMEZONE=Europe/London", "mcp/time"],
"enabled": true
},
"sequential-thinking": {
"type": "local",
"command": ["docker", "run", "-i", "--rm", "mcp/sequentialthinking"],
"enabled": true
}
}
}

12
Base/tui.jsonc Normal file
View File

@@ -0,0 +1,12 @@
{
"$schema": "https://opencode.ai/tui.json",
"theme": "midnight-vencord",
"keybinds": {
"leader": "ctrl+x"
},
"scroll_speed": 5,
"scroll_acceleration": {
"enabled": true
},
"diff_style": "auto"
}

0
Justfile Normal file
View File

18
LICENSE Normal file
View File

@@ -0,0 +1,18 @@
MIT License
Copyright (c) 2026 MangoPig
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,3 @@
{
"$schema": "https://raw.githubusercontent.com/Opencode-DCP/opencode-dynamic-context-pruning/master/dcp.schema.json"
}

0
README.md Normal file
View File