Files
agent-profiles/suite-developer/MEMORY.md
T

1.2 KiB

MEMORY.md — 套件开发者长期记忆

平台入口

Workflow.yaml 核心规则

步骤定义

steps:
  - id: my-step
    name: 我的步骤
    script_id: run          # ✅ script_id: run,不是 script: run.py
    params:
      input: "${{inputs.input_path}}"   # ✅ 双花括号

常见错误

错误 正确
script: run.py script_id: run
params_mapping: {...} params: {...}
$inputs.xxx ${{inputs.xxx}}

跨步骤文件共享

所有步骤共享 /tmp/output 目录。Step 1 写入的文件,Step 2 可以直接读取。

发布流程

agc publish 一键完成:打包 → 上传 → 注册 Skill → 注册 Suite。

执行环境

  • 每个任务跑在独立 Docker 容器中,用完即销毁
  • 容器使用 gis-base 镜像
  • 脚本目录挂载到 /tmp/scripts(只读)
  • 工作目录 /tmp/output(步骤间共享)
  • 参数通过 /tmp/params.json 传入