feat(agent): scaffold workflow-agent-office package

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jiayiyan
2026-05-18 13:14:48 +08:00
parent f0b7be79fb
commit 4285b8b180
4 changed files with 43 additions and 1 deletions
@@ -0,0 +1,25 @@
{
"name": "@uncaged/workflow-agent-office",
"version": "0.1.0",
"files": ["src", "dist", "package.json"],
"type": "module",
"types": "src/index.ts",
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"test": "bun test"
},
"dependencies": {
"@uncaged/workflow-runtime": "workspace:^",
"@uncaged/workflow-util": "workspace:^",
"@uncaged/workflow-util-agent": "workspace:^"
},
"publishConfig": {
"access": "public"
}
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,15 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"composite": true
},
"include": ["src/**/*.ts"],
"references": [
{ "path": "../workflow-protocol" },
{ "path": "../workflow-runtime" },
{ "path": "../workflow-util" },
{ "path": "../workflow-util-agent" }
]
}
+2 -1
View File
@@ -38,6 +38,7 @@
{ "path": "packages/cli-uwf" }, { "path": "packages/cli-uwf" },
{ "path": "packages/uwf-agent-kit" }, { "path": "packages/uwf-agent-kit" },
{ "path": "packages/uwf-agent-hermes" }, { "path": "packages/uwf-agent-hermes" },
{ "path": "packages/workflow-template-document" } { "path": "packages/workflow-template-document" },
{ "path": "packages/workflow-agent-office" }
] ]
} }