@lota-sdk/core 0.4.6 → 0.4.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lota-sdk/core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@chat-adapter/slack": "^4.23.0",
|
|
33
33
|
"@chat-adapter/state-ioredis": "^4.23.0",
|
|
34
34
|
"@logtape/logtape": "^2.0.5",
|
|
35
|
-
"@lota-sdk/shared": "0.4.
|
|
35
|
+
"@lota-sdk/shared": "0.4.7",
|
|
36
36
|
"@mendable/firecrawl-js": "^4.18.1",
|
|
37
37
|
"@surrealdb/node": "^3.0.3",
|
|
38
38
|
"ai": "^6.0.145",
|
|
@@ -10,6 +10,8 @@ const EXECUTION_PLAN_AGENT_PROTOCOL_PROMPT = `<execution-plan-protocol>
|
|
|
10
10
|
- During plan-triggered turns, use the dedicated result-submission tool.
|
|
11
11
|
- Treat the active execution runs in <execution-plan-state> as authoritative for whether a plan already exists.
|
|
12
12
|
- If contracts or criteria materially change, replace the plan.
|
|
13
|
+
- Never append status labels in brackets to plan or node titles (e.g. "[blocked]", "[failed]", "[running]"). Use plain prose to describe status.
|
|
14
|
+
- Never expose raw run IDs (planRun:..., Run: UUID) in user-facing messages. Reference plans by their title only.
|
|
13
15
|
</execution-plan-protocol>`
|
|
14
16
|
|
|
15
17
|
function toExecutionPlanPromptSummaries(plans: SerializableExecutionPlan[]): ExecutionPlanPromptSummary[] {
|