beast-agent 1.7.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/bin/beast-agent.js +12 -0
- package/package.json +1 -1
- package/src/agent/engine.js +19 -10
- package/src/agent/llm.js +46 -34
- package/src/agent/mcp.js +427 -0
- package/src/agent/scripts/stealthsearch.py +30 -0
- package/src/agent/searxng.js +325 -0
- package/src/agent/seeds/brainstorming/SKILL.md +90 -0
- package/src/agent/seeds/dispatching-parallel-agents/SKILL.md +120 -0
- package/src/agent/seeds/executing-plans/SKILL.md +60 -0
- package/src/agent/seeds/subagent-driven-development/SKILL.md +167 -0
- package/src/agent/seeds/systematic-debugging/SKILL.md +131 -0
- package/src/agent/seeds/test-driven-development/SKILL.md +152 -0
- package/src/agent/seeds/verification-before-completion/SKILL.md +63 -0
- package/src/agent/seeds/writing-plans/SKILL.md +162 -0
- package/src/agent/seeds/writing-skills/SKILL.md +229 -0
- package/src/agent/skills.js +41 -10
- package/src/agent/tools.js +2340 -2273
- package/src/main.js +7085 -7106
- package/src/preload.js +192 -192
- package/src/renderer/i18n.js +1220 -1226
- package/src/renderer/index.html +2 -6
- package/src/renderer/renderer.js +7461 -7480
- package/src/renderer/style.css +3388 -3430
- package/src/agent/obscura.js +0 -292
package/src/renderer/index.html
CHANGED
|
@@ -196,6 +196,7 @@
|
|
|
196
196
|
<button class="tab" data-tab="email" data-i18n="tab_email">E-posta</button>
|
|
197
197
|
<button class="tab" data-tab="integrations" data-i18n="tab_integrations">Entegrasyonlar</button>
|
|
198
198
|
<button class="tab" data-tab="websearch" data-i18n="tab_websearch">Web Arama</button>
|
|
199
|
+
<button class="tab" data-tab="mcp" data-i18n="tab_mcp">MCP</button>
|
|
199
200
|
<button class="tab" data-tab="events" data-i18n="tab_events">Olay Merkezi</button>
|
|
200
201
|
<button class="tab" data-tab="cron" data-i18n="tab_cron">Cron</button>
|
|
201
202
|
<button class="tab" data-tab="usage" data-i18n="tab_usage">Maliyet · Limit</button>
|
|
@@ -205,12 +206,6 @@
|
|
|
205
206
|
<button class="tab" data-tab="update" data-i18n="tab_update">Güncelleme</button>
|
|
206
207
|
</nav>
|
|
207
208
|
<div class="set-tabs-foot">
|
|
208
|
-
<div id="beastCodeBox" class="beast-code" data-i18n-title="bc_label" title="Beast Kodu">
|
|
209
|
-
<div class="bc-row">
|
|
210
|
-
<code id="beastCode" class="bc-value">—</code>
|
|
211
|
-
<button id="bcCopy" class="bc-copy" data-i18n="bc_copy">Kopyala</button>
|
|
212
|
-
</div>
|
|
213
|
-
</div>
|
|
214
209
|
<button id="setClose" data-i18n="btn_close">Kapat</button>
|
|
215
210
|
<div id="setVersion" class="set-version">—</div>
|
|
216
211
|
</div>
|
|
@@ -225,6 +220,7 @@
|
|
|
225
220
|
<div id="tab-email" class="pane" hidden></div>
|
|
226
221
|
<div id="tab-integrations" class="pane" hidden></div>
|
|
227
222
|
<div id="tab-websearch" class="pane" hidden></div>
|
|
223
|
+
<div id="tab-mcp" class="pane" hidden></div>
|
|
228
224
|
<div id="tab-events" class="pane" hidden></div>
|
|
229
225
|
<div id="tab-usage" class="pane" hidden></div>
|
|
230
226
|
<div id="tab-logs" class="pane" hidden></div>
|