first commit

This commit is contained in:
lingyuzeng
2026-03-22 13:16:22 +08:00
commit ba7d42da13
23 changed files with 3541 additions and 0 deletions

23
package.json Executable file
View File

@@ -0,0 +1,23 @@
{
"name": "openclaw-ollama-toolcall-proxy",
"version": "1.0.0",
"description": "A proxy layer between OpenClaw and Ollama to rewrite XML tool calls into structured tool_calls.",
"main": "dist/index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"dotenv": "^16.4.5",
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}