@tea-agent/loop-agent 0.28.12 → 0.29.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/AGENTS.md +1 -1
- package/CHANGELOG.md +61 -15
- package/dist/commands/client-recovery.js +56 -1
- package/dist/commands/init-upgrade.js +186 -21
- package/dist/executors/dag-pi-executor.js +49 -2
- package/dist/executors/shell-executor.js +135 -0
- package/dist/worker/console/app-data.js +132 -11
- package/dist/worker/console/chat/pi-runtime.js +24 -42
- package/dist/worker/console/chat/resource-loader.js +11 -20
- package/dist/worker/console/chat/routes.js +7 -8
- package/dist/worker/console/chat/runtime-context.js +1 -1
- package/dist/worker/console/chat/tools.js +67 -54
- package/dist/worker/console/operation-runner.js +15 -1
- package/dist/worker/console/operation-store.js +70 -49
- package/dist/worker/console/operator-actions.js +57 -1
- package/dist/worker/console/static/assets/index-Cwx-ZVEQ.js +29 -0
- package/dist/worker/console/static/favicon.svg +37 -0
- package/dist/worker/console/static/index.html +2 -1
- package/dist/workflows/dag/backend-test-scenario-param.js +846 -0
- package/dist/workflows/dag/backend-test-writer-completeness.js +418 -0
- package/dist/workflows/dag/init-hybrid.js +20 -6
- package/dist/workflows/dag/node-execution.js +31 -2
- package/dist/workflows/dag/retry-policy.js +55 -18
- package/dist/workflows/dag/types.js +1 -0
- package/dist/workflows/dag/validate.js +38 -3
- package/docs/operations/README.md +1 -1
- package/docs/templates/README.md +1 -1
- package/docs/templates/agent-dag.schema.json +3 -3
- package/docs/templates/backend-test-dag.json +36 -11
- package/docs/templates/init-managed-agents.md +1 -1
- package/harness.json +2 -2
- package/package.json +2 -1
- package/dist/worker/console/static/assets/index-BfRgtLF4.js +0 -29
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="64" viewBox="4 0 88 64">
|
|
2
|
+
<title>Loop Agent Horizontal Mobius</title>
|
|
3
|
+
<style>
|
|
4
|
+
.loop-ink { stroke: #26251e; }
|
|
5
|
+
@media (prefers-color-scheme: dark) {
|
|
6
|
+
.loop-ink { stroke: #f7f7f4; }
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
<defs>
|
|
10
|
+
<mask id="horizontal-handoff" maskUnits="userSpaceOnUse" x="4" y="0" width="88" height="64">
|
|
11
|
+
<rect x="4" width="88" height="64" fill="#ffffff" />
|
|
12
|
+
<path
|
|
13
|
+
d="m46 32 6 6.5"
|
|
14
|
+
fill="none"
|
|
15
|
+
stroke="#000000"
|
|
16
|
+
stroke-linecap="round"
|
|
17
|
+
stroke-width="13.5"
|
|
18
|
+
/>
|
|
19
|
+
</mask>
|
|
20
|
+
</defs>
|
|
21
|
+
<path
|
|
22
|
+
class="loop-ink"
|
|
23
|
+
d="M12 32c0-16 16-20 28-6l17 18c11 11 27 5 27-12S68 9 57 20L39 39C28 51 12 48 12 32Z"
|
|
24
|
+
fill="none"
|
|
25
|
+
stroke-linecap="round"
|
|
26
|
+
stroke-linejoin="round"
|
|
27
|
+
stroke-width="11"
|
|
28
|
+
mask="url(#horizontal-handoff)"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="m46.5 32.5 5 5.5"
|
|
32
|
+
fill="none"
|
|
33
|
+
stroke="#f54e00"
|
|
34
|
+
stroke-linecap="round"
|
|
35
|
+
stroke-width="9.5"
|
|
36
|
+
/>
|
|
37
|
+
</svg>
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
7
|
<title>Loop 操作台 · Operator Console</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-Cwx-ZVEQ.js"></script>
|
|
8
9
|
<link rel="stylesheet" crossorigin href="/assets/index-Yyn3ynVv.css">
|
|
9
10
|
</head>
|
|
10
11
|
<body>
|