2707fca32b
Phase 1-5 complete per .agents/specs/u6u-core-mvp/: **Phase 1 — Cherry-pick & cleanup** - Create arcrun/ from cypher-executor, credentials, builtins, registry - Remove 9 InkStone Service Bindings (KBDB, REGISTRY, CLINIC_*, AICEO, MINI_ME) - Rewrite component-loader: 3-layer (builtin → WASM_BUCKET R2 → error) - Remove autoPublishMissing.ts, proxy.ts (AICEO), execution-logger.ts (KBDB) - Clean all KV namespace IDs and InkStone internal URLs from config files **Phase 2 — contract.yaml completeness** - Add credentials_required to gmail, google_sheets, telegram, line_notify - Add config_example to all 21 components with annotated field descriptions **Phase 3 — Credential injection** - Add credential-injector.ts: AES-GCM decrypt from CREDENTIALS_KV - Integrate into GraphExecutor before WASM execution - Structured errors with repair instructions when credential missing **Phase 4 — CLI (acr)** - cli/package.json: arcrun package, bin: acr, deps: commander/js-yaml/chalk/ora - 8 commands: init, creds push, push, run, validate, parts, list, logs - Standard mode: writes directly to user's CF KV via CF REST API - acr init: interactive setup with arcrun.dev API Key registration **Phase 5 — Open source release prep** - README.md: 5-minute quickstart, component table, workflow YAML syntax - CONTRIBUTING.md: TinyGo dev env, component scaffolding, submission flow - Security audit: no InkStone internal URLs/IDs in committed files - .gitignore: exclude credentials.yaml, .wrangler, *.wasm https://claude.ai/code/session_01BnCdSLVH8tUed9VrrPavgT
65 lines
1.9 KiB
YAML
65 lines
1.9 KiB
YAML
canonical_id: "set"
|
|
display_name: "設定變數"
|
|
category: "logic"
|
|
version: "v1"
|
|
wasi_target: "preview1"
|
|
stability: "floating"
|
|
runtime_compat:
|
|
- "cf-workers"
|
|
- "workerd"
|
|
- "wazero"
|
|
constraints:
|
|
max_size_kb: 2048
|
|
max_cold_start_ms: 50
|
|
no_network_syscall: true
|
|
no_filesystem_syscall: true
|
|
io_model: "stdin_stdout_json"
|
|
input_schema:
|
|
type: object
|
|
properties:
|
|
assignments:
|
|
type: array
|
|
description: 賦值清單,每筆含 key 與 value(與 values 擇一必填)
|
|
items:
|
|
type: object
|
|
required: [key, value]
|
|
properties:
|
|
key:
|
|
type: string
|
|
value: {}
|
|
values:
|
|
type: object
|
|
description: 鍵值對物件,與 assignments 擇一必填
|
|
context:
|
|
type: object
|
|
description: 上游傳入的上下文,設定結果會合併覆寫
|
|
output_schema:
|
|
type: object
|
|
properties:
|
|
success:
|
|
type: boolean
|
|
data:
|
|
type: object
|
|
description: context 加上所有設定後的變數
|
|
gherkin_tests:
|
|
- scenario: "用 assignments 設定變數"
|
|
given: '{"assignments":[{"key":"name","value":"Alice"}]}'
|
|
then_contains: '"name":"Alice"'
|
|
- scenario: "用 values 設定變數"
|
|
given: '{"values":{"name":"Bob","age":30}}'
|
|
then_contains: '"name":"Bob"'
|
|
- scenario: "未提供 assignments 或 values 時失敗"
|
|
given: '{"context":{"x":1}}'
|
|
then_contains: '{"success":false'
|
|
tags: [builtin, set, assign, variable, context]
|
|
description: "設定或覆寫變數,支援 assignments 陣列或 values 物件兩種格式,結果合併自 context。"
|
|
config_example: |
|
|
my_set: # 節點名稱(可自訂)
|
|
assignments: # 賦值清單(與 values 擇一必填)
|
|
- key: status
|
|
value: active
|
|
- key: count
|
|
value: 0
|
|
context: # 上游上下文,設定結果會合併覆寫(選填)
|
|
payload: "{{upstream.data}}"
|