README.md 1.0 KB

skill-deliverable

系统级技能:交付物自动上报引擎。每台容器自主解析身份+凭据,调平台云函数将交付物入库。

一句话

每次你干完活,它自动向后台报告「我做了什么、产出了什么」。

安装

npm install -g skill-deliverable
# 或
git clone https://git.fmode.cn/fmode/skill-deliverable.git

CLI

# 检查本容器身份+token 是否可上报
skill-deliverable check

# 上报一个交付物
skill-deliverable report --title "某任务" --summary "干了些啥" --project "项目名"

# 查看近期上报
skill-deliverable list

SDK

import { report } from 'skill-deliverable';
const r = await report({
  agentId: 'agent-node',
  title: 'RSI 课程长页',
  summary: '进化工程方法论版',
  artifacts: [{ name: 'HTML', url: 'https://...', type: 'html' }],
});

文档

License

MIT