beast-agent 1.7.0 → 1.8.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/bin/beast-agent.js +12 -0
- package/package.json +1 -1
- package/src/agent/engine.js +7 -7
- package/src/agent/llm.js +46 -34
- 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 +39 -9
- package/src/agent/tools.js +2340 -2273
- package/src/main.js +7048 -7106
- package/src/preload.js +188 -192
- package/src/renderer/i18n.js +1186 -1226
- package/src/renderer/index.html +0 -6
- package/src/renderer/renderer.js +7389 -7480
- package/src/renderer/style.css +3383 -3430
- package/src/agent/obscura.js +0 -292
package/src/renderer/index.html
CHANGED
|
@@ -205,12 +205,6 @@
|
|
|
205
205
|
<button class="tab" data-tab="update" data-i18n="tab_update">Güncelleme</button>
|
|
206
206
|
</nav>
|
|
207
207
|
<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
208
|
<button id="setClose" data-i18n="btn_close">Kapat</button>
|
|
215
209
|
<div id="setVersion" class="set-version">—</div>
|
|
216
210
|
</div>
|