Company Profile
completed已从资料库装载 Toolplane。
Workflow Alpha 继续作为当前 MVP 的核心画布,默认路径保持真实 API、保存与预演能力,同时补齐 empty / error demo 状态壳,完成模块一的前端稳定化。
正在加载工作流...
Nodes
4
Edges
3
Estimated Credits
12
Workflow Blueprint
Nodes
4
Edges
3
Estimated Credits
12
正在加载工作流...
最近保存:尚未保存
当前状态:加载中
资料库和目标站点已经通过真实 API 暴露给工作流,下一步会把它们放进节点配置抽屉。
这一版先把工作流最核心的几个节点跑起来,后续再把 Autofill、抓取、 发布、同步等能力逐步插件化。
读取公司资料、品牌摘要和 Autofill 复用字段。
根据目标站点规则生成字段值,并准备浏览器执行任务。
在高风险字段提交前做一次人工审核。
汇总运行状态、截图、字段来源、点数消耗和审计记录。
拖动节点、手动连线,然后把 Autofill 节点嵌进真实业务流。
Selected Node
点击画布中的节点后,这里会展示该节点的输入输出合同、配置摘要和风险等级。
Demo Run
已从资料库装载 Toolplane。
将使用 Directory Submission 与 目录站点模板 生成 4 个字段候选。
待人工确认 2 项检查2 项来自策略门禁。
确认通过后输出到 runs ledger。
Control Plane JSON
{
"workflowId": "workflow_alpha",
"version": 1,
"status": "draft",
"nodes": [
{
"id": "profile-1",
"kind": "profile",
"title": "Company Profile",
"position": {
"x": 80,
"y": 180
},
"configSummary": "默认绑定 Toolplane 主资料。",
"config": {
"profileId": "profile_toolplane",
"profileLabel": "Toolplane"
},
"creditCost": 0
},
{
"id": "autofill-1",
"kind": "autofill",
"title": "Autofill Job",
"position": {
"x": 400,
"y": 180
},
"configSummary": "Directory Submission · 目录站点模板 · 已映射 4 个字段 · 预计消耗 12 credits。",
"config": {
"targetId": "target_directory",
"targetLabel": "Directory Submission",
"promptPreset": "directory_submit",
"fieldMappings": [
{
"targetFieldKey": "company_name",
"targetFieldLabel": "Company Name",
"sourceType": "profile_field",
"sourceKey": "company_name",
"reviewRequired": false
},
{
"targetFieldKey": "website",
"targetFieldLabel": "Website",
"sourceType": "profile_field",
"sourceKey": "website",
"reviewRequired": false
},
{
"targetFieldKey": "short_description",
"targetFieldLabel": "Short Description",
"sourceType": "profile_field",
"sourceKey": "short_description",
"reviewRequired": false
},
{
"targetFieldKey": "contact_email",
"targetFieldLabel": "Contact Email",
"sourceType": "profile_field",
"sourceKey": "contact_email",
"reviewRequired": false
}
]
},
"creditCost": 12
},
{
"id": "review-1",
"kind": "review",
"title": "Manual Review",
"position": {
"x": 720,
"y": 180
},
"configSummary": "法务、付款、承诺类字段需人工通过。",
"config": {
"reviewFields": [
"legal_commitment",
"payment_terms"
]
},
"creditCost": 0
},
{
"id": "result-1",
"kind": "result",
"title": "Run Result",
"position": {
"x": 1040,
"y": 180
},
"configSummary": "写入 workflow_runs、run_steps 与 credit ledger。",
"config": {
"resultSink": "runs_ledger"
},
"creditCost": 0
}
],
"edges": [
{
"id": "edge-profile-autofill",
"source": "profile-1",
"target": "autofill-1"
},
{
"id": "edge-autofill-review",
"source": "autofill-1",
"target": "review-1"
},
{
"id": "edge-review-result",
"source": "review-1",
"target": "result-1"
}
]
}