@plasm_lang/vercel-agent 0.3.63
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 +235 -0
- package/agent/.plasm/archives/runs/runs/pr2d5c4a99707b4c19b650553d50229a1d600d28e3d98a9c58f18e5026cecc86ca.json +64 -0
- package/agent/.plasm/archives/runs/runs/pr2e0c0d8ad443c63c82da7435ee1a002b0e0fa718b640263c0a9d3e6e5944812f.json +64 -0
- package/agent/.plasm/archives/runs/runs/pr2faedb8354f40ee6d828e3af07b421fda9ccda973a4f7347fce3639f03a0a869.json +64 -0
- package/agent/.plasm/archives/runs/runs/pr586b47c55547b0702c572bce4255558b22dbe5e682d6359169577e0ea75fe98f.json +64 -0
- package/agent/.plasm/archives/runs/runs/pr76212356445e3b00fcf256835aaec18bac68576324b90d0be92d47f0b4a862a7.json +56 -0
- package/agent/.plasm/archives/runs/runs/pr9ec805d689e00db9270a9539858f2fb7216c24acbfea943d450e37b641149da1.json +64 -0
- package/agent/.plasm/archives/runs/runs/prc3c0c4ba2e28fc94ed6d37b6796e277a7997d9cb3184640d14c35c98bc6d136f.json +64 -0
- package/agent/.plasm/archives/runs/runs/prf04de32522f2fdcb17818907d91bccce7dcaecbd1259041cc448d447b6993244.json +64 -0
- package/agent/.plasm/archives/traces/traces/local/00000000000000000000000000000000/records.ndjson +1 -0
- package/agent/.plasm/archives/traces/traces/local/00000000000000000000000000000000/summary.json +13 -0
- package/agent/.plasm/discovery/manifest.json +126 -0
- package/agent/.plasm/sessions/TGlzdCBwcm9kdWN0cyBmcm9tIHRoZSBleGVjdXRlX3RpbnkgY2F0YWxvZw.json +44 -0
- package/agent/.plasm/sessions/TGlzdCBwcm9kdWN0cyBmcm9tIHRoZSBleGVjdXRlX3RpbnkgY2F0YWxvZw.teaching.tsv +23 -0
- package/agent/.plasm/sessions/bGlzdCBleGVjdXRlX3RpbnkgcHJvZHVjdHM.json +151 -0
- package/agent/.plasm/sessions/bGlzdCBleGVjdXRlX3RpbnkgcHJvZHVjdHM.teaching.tsv +131 -0
- package/agent/.plasm/sessions/bGlzdCBleGVjdXRlX3RpbnkgcHJvZHVjdHMgYXN5bmMgdHJhbnNwb3J0.json +44 -0
- package/agent/.plasm/sessions/bGlzdCBleGVjdXRlX3RpbnkgcHJvZHVjdHMgYXN5bmMgdHJhbnNwb3J0.teaching.tsv +23 -0
- package/agent/.plasm/stubs/.gitkeep +0 -0
- package/agent/.plasm/stubs/execute_tiny.ts +107 -0
- package/agent/agent.ts +52 -0
- package/agent/catalogs/README.md +15 -0
- package/agent/channels/.gitkeep +0 -0
- package/agent/channels/execute-tiny-webhook.ts +59 -0
- package/agent/channels/health.ts +16 -0
- package/agent/hooks/.gitkeep +0 -0
- package/agent/hooks/trace-log.ts +10 -0
- package/agent/instructions.md +25 -0
- package/agent/schedules/.gitkeep +0 -0
- package/agent/schedules/ping.ts +13 -0
- package/agent/skills/.gitkeep +0 -0
- package/agent/skills/plasm-authoring.md +8 -0
- package/agent/subagents/.gitkeep +0 -0
- package/agent/subagents/tiny/agent.ts +28 -0
- package/bin/plasm-agent.mjs +18 -0
- package/package.json +77 -0
- package/scripts/plasm-node.mjs +19 -0
- package/scripts/resolve-ts-extension.mjs +18 -0
- package/src/archive/adapters.ts +27 -0
- package/src/archive/index.ts +99 -0
- package/src/archive/local-run-archive.ts +90 -0
- package/src/archive/local-trace-archive.ts +91 -0
- package/src/archive/paths.ts +15 -0
- package/src/archive/postgres-kv-adapter.ts +72 -0
- package/src/archive/prod-archive-store.ts +143 -0
- package/src/archive/resolve-backend.ts +60 -0
- package/src/archive/run-id.ts +23 -0
- package/src/archive/types.ts +75 -0
- package/src/archive/vercel-blob-adapter.ts +21 -0
- package/src/archive/vercel-kv-adapter.ts +24 -0
- package/src/authoring/channel-dispatch.ts +44 -0
- package/src/authoring/context.ts +34 -0
- package/src/authoring/define-channel.ts +83 -0
- package/src/authoring/define-hook.ts +51 -0
- package/src/authoring/define-schedule.ts +64 -0
- package/src/authoring/define-skill.ts +38 -0
- package/src/authoring/hook-runner.ts +18 -0
- package/src/authoring/schedule-manager.ts +118 -0
- package/src/authoring/slot-loader.ts +253 -0
- package/src/authoring/subagent-loader.ts +121 -0
- package/src/catalog/loader.ts +71 -0
- package/src/cli/build.ts +54 -0
- package/src/cli/dev.ts +60 -0
- package/src/cli/info.ts +12 -0
- package/src/cli/init.ts +372 -0
- package/src/cli/link.ts +68 -0
- package/src/cli/project-root.ts +57 -0
- package/src/define-agent.ts +150 -0
- package/src/dev/client/ansi.ts +36 -0
- package/src/dev/client/http-session.ts +180 -0
- package/src/dev/client/repl.ts +92 -0
- package/src/dev/client/slash.ts +119 -0
- package/src/dev/dev-session.ts +153 -0
- package/src/dev/http.ts +29 -0
- package/src/dev/server.ts +147 -0
- package/src/dev/session-routes.ts +185 -0
- package/src/discovery/project-walker.ts +272 -0
- package/src/engine/connect-auth.ts +135 -0
- package/src/engine/create-host-transport.ts +7 -0
- package/src/engine/fixture-mock-transport.ts +54 -0
- package/src/engine/host-transport-bridge.ts +32 -0
- package/src/engine/host-transport.ts +84 -0
- package/src/engine/napi-binding.ts +265 -0
- package/src/evals/define-eval.ts +56 -0
- package/src/evals/run-eval.ts +136 -0
- package/src/gateway-model.ts +43 -0
- package/src/index.ts +296 -0
- package/src/instrumentation.ts +56 -0
- package/src/load-env.ts +63 -0
- package/src/operator/routes.ts +287 -0
- package/src/operator/types.ts +63 -0
- package/src/operator/ui-shell.ts +134 -0
- package/src/project-info.ts +229 -0
- package/src/runtime/agent-runtime.ts +469 -0
- package/src/runtime/compaction.ts +81 -0
- package/src/runtime/logical-session.ts +72 -0
- package/src/runtime/plasm-agent.ts +199 -0
- package/src/server/plasm-handler.ts +331 -0
- package/src/session-state.ts +135 -0
- package/src/state/define-state.ts +57 -0
- package/src/state/fs-state-adapter.ts +72 -0
- package/src/state/kv-state-adapter.ts +62 -0
- package/src/state/postgres-state-adapter.ts +116 -0
- package/src/stubs/capability-invoke-shape.ts +135 -0
- package/src/stubs/catalog-client.ts +170 -0
- package/src/stubs/catalog-hash.ts +11 -0
- package/src/stubs/catalog-introspection.ts +121 -0
- package/src/stubs/cgs-ts-types.ts +164 -0
- package/src/stubs/domain-parser.ts +203 -0
- package/src/stubs/generator.ts +390 -0
- package/src/stubs/input-type-to-ts.ts +233 -0
- package/src/stubs/plasm-value-emitter.ts +162 -0
- package/src/stubs/program-builder.ts +82 -0
- package/src/stubs/stub-symbols.ts +89 -0
- package/src/symbol-registry.ts +74 -0
- package/src/telemetry/plasm-spans.ts +83 -0
- package/src/tools/descriptions.ts +94 -0
- package/src/tools/format.ts +29 -0
- package/src/tools/harness-tools.ts +65 -0
- package/src/tools/plasm-tools.ts +104 -0
- package/src/workflow/world-bootstrap.ts +52 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"run_id": "prf04de32522f2fdcb17818907d91bccce7dcaecbd1259041cc448d447b6993244",
|
|
3
|
+
"plan_commit_ref": "pc0",
|
|
4
|
+
"catalog_cgs_hash": "unknown",
|
|
5
|
+
"entry_id": "execute_tiny",
|
|
6
|
+
"logical_session_ref": "l_ckAW2uHtX26s8qO9v7kcOQ",
|
|
7
|
+
"intent": "list execute_tiny products",
|
|
8
|
+
"ok": true,
|
|
9
|
+
"message": "## return_1 (1 rows)\n\n```tsv\nid\tname\tcategory_id\np1\tWidget\tc1\n```\n",
|
|
10
|
+
"results": [
|
|
11
|
+
{
|
|
12
|
+
"category_id": "c1",
|
|
13
|
+
"id": "p1",
|
|
14
|
+
"name": "Widget"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"_meta": {
|
|
18
|
+
"plasm": {
|
|
19
|
+
"steps": [
|
|
20
|
+
{
|
|
21
|
+
"artifact_path": "/execute/plasm_node/agent/artifacts/pr618fa533cbea0347b2851027f5f8c10ba0e917720f1092e10ef883317588e747",
|
|
22
|
+
"artifact_uri": "plasm://r/1",
|
|
23
|
+
"canonical_artifact_uri": "plasm://execute/plasm_node/agent/run/pr618fa533cbea0347b2851027f5f8c10ba0e917720f1092e10ef883317588e747",
|
|
24
|
+
"column_schema": {
|
|
25
|
+
"columns": [
|
|
26
|
+
{
|
|
27
|
+
"kind": "field",
|
|
28
|
+
"name": "id",
|
|
29
|
+
"wire_type": "string"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"kind": "field",
|
|
33
|
+
"name": "name",
|
|
34
|
+
"wire_type": "string"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"kind": "field",
|
|
38
|
+
"name": "category_id",
|
|
39
|
+
"wire_type": "entity_ref"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"entity_type": "Product",
|
|
43
|
+
"entry_id": "execute_tiny"
|
|
44
|
+
},
|
|
45
|
+
"display": "Query(Product all) cap=product_list",
|
|
46
|
+
"node_id": "return_1",
|
|
47
|
+
"request_fingerprints": [
|
|
48
|
+
"82a7cf2c3c0a53508da7d4ecdfc7bb81bbbe64f4f97aaadf5cc3ecf37eab2eeb",
|
|
49
|
+
"ae0d94da47e504b2d3366a4ae791d69911d1611f1f6fdb7266bc8d088f949b8e"
|
|
50
|
+
],
|
|
51
|
+
"return_label": "return_1",
|
|
52
|
+
"row_count": 1,
|
|
53
|
+
"run_id": "pr618fa533cbea0347b2851027f5f8c10ba0e917720f1092e10ef883317588e747",
|
|
54
|
+
"run_step": 1
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"request_fingerprints": [
|
|
58
|
+
"82a7cf2c3c0a53508da7d4ecdfc7bb81bbbe64f4f97aaadf5cc3ecf37eab2eeb",
|
|
59
|
+
"ae0d94da47e504b2d3366a4ae791d69911d1611f1f6fdb7266bc8d088f949b8e"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"archived_at": "2026-06-21T17:04:58.269Z"
|
|
64
|
+
}
|
package/agent/.plasm/archives/traces/traces/local/00000000000000000000000000000000/records.ndjson
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"at_ms":1782067589544,"kind":"plasm","name":"plasm.live_run","attributes":{"intent":"list execute_tiny products","logical_session_ref":"l_ckAW2uHtX26s8qO9v7kcOQ","plan_commit_ref":"pc0","run_id":"pr9ec805d689e00db9270a9539858f2fb7216c24acbfea943d450e37b641149da1","ok":true,"trace_id":"00000000000000000000000000000000"}}
|
package/agent/.plasm/archives/traces/traces/local/00000000000000000000000000000000/summary.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"trace_id": "00000000000000000000000000000000",
|
|
3
|
+
"tenant_id": "local",
|
|
4
|
+
"logical_session_ref": "l_ckAW2uHtX26s8qO9v7kcOQ",
|
|
5
|
+
"intent": "list execute_tiny products",
|
|
6
|
+
"status": "completed",
|
|
7
|
+
"started_at_ms": 1782067589544,
|
|
8
|
+
"ended_at_ms": 1782067589553,
|
|
9
|
+
"project_slug": "main",
|
|
10
|
+
"totals": {
|
|
11
|
+
"tool_calls": 1
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"builtAt": "2026-06-21T19:16:31.865Z",
|
|
3
|
+
"projectRoot": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent",
|
|
4
|
+
"agentRoot": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent",
|
|
5
|
+
"stubs": [
|
|
6
|
+
{
|
|
7
|
+
"entryId": "execute_tiny",
|
|
8
|
+
"catalogCgsHash": "aee3d865ff02b2ac8f0c168915a63dfe8f57c87f00fab3e03c87fcec72f5eb84",
|
|
9
|
+
"outPath": "agent/.plasm/stubs/execute_tiny.ts"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"discovery": {
|
|
13
|
+
"agentRoot": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent",
|
|
14
|
+
"instructions": {
|
|
15
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/instructions.md",
|
|
16
|
+
"kind": "markdown"
|
|
17
|
+
},
|
|
18
|
+
"catalogs": [
|
|
19
|
+
{
|
|
20
|
+
"name": "execute_tiny",
|
|
21
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/catalogs/execute_tiny"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"skills": [
|
|
25
|
+
{
|
|
26
|
+
"name": "plasm-authoring",
|
|
27
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/skills/plasm-authoring.md",
|
|
28
|
+
"kind": "markdown"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"channels": [
|
|
32
|
+
{
|
|
33
|
+
"name": "execute-tiny-webhook",
|
|
34
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/channels/execute-tiny-webhook.ts",
|
|
35
|
+
"kind": "typescript"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "health",
|
|
39
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/channels/health.ts",
|
|
40
|
+
"kind": "typescript"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"schedules": [
|
|
44
|
+
{
|
|
45
|
+
"name": "ping",
|
|
46
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/schedules/ping.ts",
|
|
47
|
+
"kind": "typescript"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"hooks": [
|
|
51
|
+
{
|
|
52
|
+
"name": "trace-log",
|
|
53
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/hooks/trace-log.ts",
|
|
54
|
+
"kind": "typescript"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"subagents": [
|
|
58
|
+
{
|
|
59
|
+
"name": "tiny",
|
|
60
|
+
"path": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/subagents/tiny",
|
|
61
|
+
"agentPath": "/Users/ryan/code/plasm/plasm-oss/packages/plasm-agent/agent/subagents/tiny/agent.ts"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"diagnostics": []
|
|
65
|
+
},
|
|
66
|
+
"loadedSlots": {
|
|
67
|
+
"skills": [
|
|
68
|
+
{
|
|
69
|
+
"name": "plasm-authoring",
|
|
70
|
+
"path": "skills/plasm-authoring.md",
|
|
71
|
+
"kind": "markdown"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"channels": [
|
|
75
|
+
{
|
|
76
|
+
"name": "execute-tiny-webhook",
|
|
77
|
+
"path": "channels/execute-tiny-webhook.ts",
|
|
78
|
+
"routes": [
|
|
79
|
+
{
|
|
80
|
+
"method": "POST",
|
|
81
|
+
"path": "/channel/execute-tiny/products"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "health",
|
|
87
|
+
"path": "channels/health.ts",
|
|
88
|
+
"routes": [
|
|
89
|
+
{
|
|
90
|
+
"method": "GET",
|
|
91
|
+
"path": "/channel/health"
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"schedules": [
|
|
97
|
+
{
|
|
98
|
+
"name": "ping",
|
|
99
|
+
"path": "schedules/ping.ts",
|
|
100
|
+
"cron": "*/5 * * * *"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"hooks": [
|
|
104
|
+
{
|
|
105
|
+
"name": "trace-log",
|
|
106
|
+
"path": "hooks/trace-log.ts",
|
|
107
|
+
"on": [
|
|
108
|
+
"run:complete",
|
|
109
|
+
"plan:commit"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"subagents": [
|
|
114
|
+
{
|
|
115
|
+
"name": "tiny",
|
|
116
|
+
"path": "subagents/tiny",
|
|
117
|
+
"model": "anthropic/claude-sonnet-4.6"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
"diagnostics": [],
|
|
122
|
+
"engine": {
|
|
123
|
+
"native": true,
|
|
124
|
+
"mode": "napi"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"intent": "List products from the execute_tiny catalog",
|
|
3
|
+
"logicalSessionRef": "l_IqBV8aJcW1OgFiGUTvJzVg",
|
|
4
|
+
"logicalSessionId": "22a055f1-a25c-5b53-a016-21944ef27356",
|
|
5
|
+
"tenantScope": "local",
|
|
6
|
+
"seeds": [
|
|
7
|
+
{
|
|
8
|
+
"api": "execute_tiny",
|
|
9
|
+
"entity": "Product"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"teachingTsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category",
|
|
13
|
+
"waves": [
|
|
14
|
+
{
|
|
15
|
+
"entryId": "execute_tiny",
|
|
16
|
+
"entities": [
|
|
17
|
+
"Product"
|
|
18
|
+
],
|
|
19
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
20
|
+
"at": "2026-06-21T16:06:07.896Z"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"entryId": "execute_tiny",
|
|
24
|
+
"entities": [
|
|
25
|
+
"Product"
|
|
26
|
+
],
|
|
27
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
28
|
+
"at": "2026-06-21T16:32:25.414Z"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"planCommits": [
|
|
32
|
+
{
|
|
33
|
+
"ref": "pc0",
|
|
34
|
+
"program": "e1[p2,p3]",
|
|
35
|
+
"at": "2026-06-21T16:06:19.229Z"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"ref": "pc0",
|
|
39
|
+
"program": "e1[p2,p3]",
|
|
40
|
+
"at": "2026-06-21T16:32:30.722Z"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"updatedAt": "2026-06-21T16:32:30.722Z"
|
|
44
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
plasm_expr Meaning
|
|
2
|
+
v2 str
|
|
3
|
+
v1 ref:Category · str
|
|
4
|
+
p2 v2 · id
|
|
5
|
+
p3 v2 · name
|
|
6
|
+
p1 v1 · category_id
|
|
7
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
8
|
+
e1 → [e1]
|
|
9
|
+
e1(p2) → e1
|
|
10
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
11
|
+
e1.p1 relation e1 → Category
|
|
12
|
+
|
|
13
|
+
plasm_expr Meaning
|
|
14
|
+
v2 str
|
|
15
|
+
v1 ref:Category · str
|
|
16
|
+
p2 v2 · id
|
|
17
|
+
p3 v2 · name
|
|
18
|
+
p1 v1 · category_id
|
|
19
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
20
|
+
e1 → [e1]
|
|
21
|
+
e1(p2) → e1
|
|
22
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
23
|
+
e1.p1 relation e1 → Category
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"intent": "list execute_tiny products",
|
|
3
|
+
"logicalSessionRef": "l_ckAW2uHtX26s8qO9v7kcOQ",
|
|
4
|
+
"logicalSessionId": "724016da-e1ed-5f6e-acf2-a3bdbfb91c39",
|
|
5
|
+
"tenantScope": "local",
|
|
6
|
+
"seeds": [
|
|
7
|
+
{
|
|
8
|
+
"api": "execute_tiny",
|
|
9
|
+
"entity": "Product"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"teachingTsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category",
|
|
13
|
+
"waves": [
|
|
14
|
+
{
|
|
15
|
+
"entryId": "execute_tiny",
|
|
16
|
+
"entities": [
|
|
17
|
+
"Product"
|
|
18
|
+
],
|
|
19
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
20
|
+
"at": "2026-06-21T15:52:18.068Z"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"entryId": "execute_tiny",
|
|
24
|
+
"entities": [
|
|
25
|
+
"Product"
|
|
26
|
+
],
|
|
27
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
28
|
+
"at": "2026-06-21T15:52:31.389Z"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"entryId": "execute_tiny",
|
|
32
|
+
"entities": [
|
|
33
|
+
"Product"
|
|
34
|
+
],
|
|
35
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
36
|
+
"at": "2026-06-21T16:03:02.081Z"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"entryId": "execute_tiny",
|
|
40
|
+
"entities": [
|
|
41
|
+
"Product"
|
|
42
|
+
],
|
|
43
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
44
|
+
"at": "2026-06-21T16:16:30.660Z"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"entryId": "execute_tiny",
|
|
48
|
+
"entities": [
|
|
49
|
+
"Product"
|
|
50
|
+
],
|
|
51
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
52
|
+
"at": "2026-06-21T16:31:29.432Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"entryId": "execute_tiny",
|
|
56
|
+
"entities": [
|
|
57
|
+
"Product"
|
|
58
|
+
],
|
|
59
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
60
|
+
"at": "2026-06-21T16:32:16.237Z"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"entryId": "execute_tiny",
|
|
64
|
+
"entities": [
|
|
65
|
+
"Product"
|
|
66
|
+
],
|
|
67
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
68
|
+
"at": "2026-06-21T16:37:13.055Z"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"entryId": "execute_tiny",
|
|
72
|
+
"entities": [
|
|
73
|
+
"Product"
|
|
74
|
+
],
|
|
75
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
76
|
+
"at": "2026-06-21T16:53:54.759Z"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"entryId": "execute_tiny",
|
|
80
|
+
"entities": [
|
|
81
|
+
"Product"
|
|
82
|
+
],
|
|
83
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
84
|
+
"at": "2026-06-21T17:04:58.256Z"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"entryId": "execute_tiny",
|
|
88
|
+
"entities": [
|
|
89
|
+
"Product"
|
|
90
|
+
],
|
|
91
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
92
|
+
"at": "2026-06-21T18:46:20.805Z"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"entryId": "execute_tiny",
|
|
96
|
+
"entities": [
|
|
97
|
+
"Product"
|
|
98
|
+
],
|
|
99
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
100
|
+
"at": "2026-06-21T18:46:29.537Z"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"planCommits": [
|
|
104
|
+
{
|
|
105
|
+
"ref": "pc0",
|
|
106
|
+
"program": "e1",
|
|
107
|
+
"at": "2026-06-21T15:52:31.392Z"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"ref": "pc0",
|
|
111
|
+
"program": "e1",
|
|
112
|
+
"at": "2026-06-21T16:03:02.084Z"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"ref": "pc0",
|
|
116
|
+
"program": "e1",
|
|
117
|
+
"at": "2026-06-21T16:16:30.663Z"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"ref": "pc0",
|
|
121
|
+
"program": "e1",
|
|
122
|
+
"at": "2026-06-21T16:31:29.447Z"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"ref": "pc0",
|
|
126
|
+
"program": "e1",
|
|
127
|
+
"at": "2026-06-21T16:32:16.242Z"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"ref": "pc0",
|
|
131
|
+
"program": "e1",
|
|
132
|
+
"at": "2026-06-21T16:37:13.062Z"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"ref": "pc0",
|
|
136
|
+
"program": "e1",
|
|
137
|
+
"at": "2026-06-21T16:53:54.773Z"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"ref": "pc0",
|
|
141
|
+
"program": "e1",
|
|
142
|
+
"at": "2026-06-21T17:04:58.261Z"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"ref": "pc0",
|
|
146
|
+
"program": "e1",
|
|
147
|
+
"at": "2026-06-21T18:46:29.541Z"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"updatedAt": "2026-06-21T18:46:29.541Z"
|
|
151
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
plasm_expr Meaning
|
|
2
|
+
v2 str
|
|
3
|
+
v1 ref:Category · str
|
|
4
|
+
p2 v2 · id
|
|
5
|
+
p3 v2 · name
|
|
6
|
+
p1 v1 · category_id
|
|
7
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
8
|
+
e1 → [e1]
|
|
9
|
+
e1(p2) → e1
|
|
10
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
11
|
+
e1.p1 relation e1 → Category
|
|
12
|
+
|
|
13
|
+
plasm_expr Meaning
|
|
14
|
+
v2 str
|
|
15
|
+
v1 ref:Category · str
|
|
16
|
+
p2 v2 · id
|
|
17
|
+
p3 v2 · name
|
|
18
|
+
p1 v1 · category_id
|
|
19
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
20
|
+
e1 → [e1]
|
|
21
|
+
e1(p2) → e1
|
|
22
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
23
|
+
e1.p1 relation e1 → Category
|
|
24
|
+
|
|
25
|
+
plasm_expr Meaning
|
|
26
|
+
v2 str
|
|
27
|
+
v1 ref:Category · str
|
|
28
|
+
p2 v2 · id
|
|
29
|
+
p3 v2 · name
|
|
30
|
+
p1 v1 · category_id
|
|
31
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
32
|
+
e1 → [e1]
|
|
33
|
+
e1(p2) → e1
|
|
34
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
35
|
+
e1.p1 relation e1 → Category
|
|
36
|
+
|
|
37
|
+
plasm_expr Meaning
|
|
38
|
+
v2 str
|
|
39
|
+
v1 ref:Category · str
|
|
40
|
+
p2 v2 · id
|
|
41
|
+
p3 v2 · name
|
|
42
|
+
p1 v1 · category_id
|
|
43
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
44
|
+
e1 → [e1]
|
|
45
|
+
e1(p2) → e1
|
|
46
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
47
|
+
e1.p1 relation e1 → Category
|
|
48
|
+
|
|
49
|
+
plasm_expr Meaning
|
|
50
|
+
v2 str
|
|
51
|
+
v1 ref:Category · str
|
|
52
|
+
p2 v2 · id
|
|
53
|
+
p3 v2 · name
|
|
54
|
+
p1 v1 · category_id
|
|
55
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
56
|
+
e1 → [e1]
|
|
57
|
+
e1(p2) → e1
|
|
58
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
59
|
+
e1.p1 relation e1 → Category
|
|
60
|
+
|
|
61
|
+
plasm_expr Meaning
|
|
62
|
+
v2 str
|
|
63
|
+
v1 ref:Category · str
|
|
64
|
+
p2 v2 · id
|
|
65
|
+
p3 v2 · name
|
|
66
|
+
p1 v1 · category_id
|
|
67
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
68
|
+
e1 → [e1]
|
|
69
|
+
e1(p2) → e1
|
|
70
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
71
|
+
e1.p1 relation e1 → Category
|
|
72
|
+
|
|
73
|
+
plasm_expr Meaning
|
|
74
|
+
v2 str
|
|
75
|
+
v1 ref:Category · str
|
|
76
|
+
p2 v2 · id
|
|
77
|
+
p3 v2 · name
|
|
78
|
+
p1 v1 · category_id
|
|
79
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
80
|
+
e1 → [e1]
|
|
81
|
+
e1(p2) → e1
|
|
82
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
83
|
+
e1.p1 relation e1 → Category
|
|
84
|
+
|
|
85
|
+
plasm_expr Meaning
|
|
86
|
+
v2 str
|
|
87
|
+
v1 ref:Category · str
|
|
88
|
+
p2 v2 · id
|
|
89
|
+
p3 v2 · name
|
|
90
|
+
p1 v1 · category_id
|
|
91
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
92
|
+
e1 → [e1]
|
|
93
|
+
e1(p2) → e1
|
|
94
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
95
|
+
e1.p1 relation e1 → Category
|
|
96
|
+
|
|
97
|
+
plasm_expr Meaning
|
|
98
|
+
v2 str
|
|
99
|
+
v1 ref:Category · str
|
|
100
|
+
p2 v2 · id
|
|
101
|
+
p3 v2 · name
|
|
102
|
+
p1 v1 · category_id
|
|
103
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
104
|
+
e1 → [e1]
|
|
105
|
+
e1(p2) → e1
|
|
106
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
107
|
+
e1.p1 relation e1 → Category
|
|
108
|
+
|
|
109
|
+
plasm_expr Meaning
|
|
110
|
+
v2 str
|
|
111
|
+
v1 ref:Category · str
|
|
112
|
+
p2 v2 · id
|
|
113
|
+
p3 v2 · name
|
|
114
|
+
p1 v1 · category_id
|
|
115
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
116
|
+
e1 → [e1]
|
|
117
|
+
e1(p2) → e1
|
|
118
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
119
|
+
e1.p1 relation e1 → Category
|
|
120
|
+
|
|
121
|
+
plasm_expr Meaning
|
|
122
|
+
v2 str
|
|
123
|
+
v1 ref:Category · str
|
|
124
|
+
p2 v2 · id
|
|
125
|
+
p3 v2 · name
|
|
126
|
+
p1 v1 · category_id
|
|
127
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
128
|
+
e1 → [e1]
|
|
129
|
+
e1(p2) → e1
|
|
130
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
131
|
+
e1.p1 relation e1 → Category
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"intent": "list execute_tiny products async transport",
|
|
3
|
+
"logicalSessionRef": "l_HfEmAKdjUTqgzZdXHWtTLg",
|
|
4
|
+
"logicalSessionId": "1df12600-a763-513a-a0cd-97571d6b532e",
|
|
5
|
+
"tenantScope": "local",
|
|
6
|
+
"seeds": [
|
|
7
|
+
{
|
|
8
|
+
"api": "execute_tiny",
|
|
9
|
+
"entity": "Product"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"teachingTsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n\nplasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category",
|
|
13
|
+
"waves": [
|
|
14
|
+
{
|
|
15
|
+
"entryId": "execute_tiny",
|
|
16
|
+
"entities": [
|
|
17
|
+
"Product"
|
|
18
|
+
],
|
|
19
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
20
|
+
"at": "2026-06-21T16:37:13.414Z"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"entryId": "execute_tiny",
|
|
24
|
+
"entities": [
|
|
25
|
+
"Product"
|
|
26
|
+
],
|
|
27
|
+
"tsv": "plasm_expr\tMeaning\nv2\tstr\nv1\tref:Category · str\np2\tv2 · id\np3\tv2 · name\np1\tv1 · category_id\ne1[p2,p3,p1]\t→ e1 · projection · Minimal product for execute tool tests\ne1\t→ [e1]\ne1(p2)\t→ e1\ne1~\"text\"[p2,p1,p3]\t→ [e1] · rows: p2,p1,p3\ne1.p1\trelation e1 → Category\n",
|
|
28
|
+
"at": "2026-06-21T16:53:55.866Z"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"planCommits": [
|
|
32
|
+
{
|
|
33
|
+
"ref": "pc0",
|
|
34
|
+
"program": "e1",
|
|
35
|
+
"at": "2026-06-21T16:37:13.416Z"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"ref": "pc0",
|
|
39
|
+
"program": "e1",
|
|
40
|
+
"at": "2026-06-21T16:53:55.879Z"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"updatedAt": "2026-06-21T16:53:55.879Z"
|
|
44
|
+
}
|
package/agent/.plasm/sessions/bGlzdCBleGVjdXRlX3RpbnkgcHJvZHVjdHMgYXN5bmMgdHJhbnNwb3J0.teaching.tsv
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
plasm_expr Meaning
|
|
2
|
+
v2 str
|
|
3
|
+
v1 ref:Category · str
|
|
4
|
+
p2 v2 · id
|
|
5
|
+
p3 v2 · name
|
|
6
|
+
p1 v1 · category_id
|
|
7
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
8
|
+
e1 → [e1]
|
|
9
|
+
e1(p2) → e1
|
|
10
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
11
|
+
e1.p1 relation e1 → Category
|
|
12
|
+
|
|
13
|
+
plasm_expr Meaning
|
|
14
|
+
v2 str
|
|
15
|
+
v1 ref:Category · str
|
|
16
|
+
p2 v2 · id
|
|
17
|
+
p3 v2 · name
|
|
18
|
+
p1 v1 · category_id
|
|
19
|
+
e1[p2,p3,p1] → e1 · projection · Minimal product for execute tool tests
|
|
20
|
+
e1 → [e1]
|
|
21
|
+
e1(p2) → e1
|
|
22
|
+
e1~"text"[p2,p1,p3] → [e1] · rows: p2,p1,p3
|
|
23
|
+
e1.p1 relation e1 → Category
|
|
File without changes
|