4d477c67c0
- createAgent() API for building agent CLIs - Context builder: reads CAS chain, builds AgentContext - Extract: LLM-based structured output extraction - StepNode writer: writes to CAS without touching threads.yaml - Stdout: outputs StepNode hash Refs #309, #314
34 lines
624 B
JSON
34 lines
624 B
JSON
{
|
|
"name": "@uncaged/uwf-agent-kit",
|
|
"version": "0.1.0",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/json-cas": "workspace:^",
|
|
"@uncaged/json-cas-fs": "workspace:^",
|
|
"@uncaged/uwf-protocol": "workspace:^",
|
|
"dotenv": "^16.6.1",
|
|
"yaml": "^2.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|