feat: PIT Channel plugin v1.0.0 - complete implementation

This commit is contained in:
2026-03-14 15:54:30 +08:00
parent 431ebfc193
commit ade55c5016
27 changed files with 4063 additions and 0 deletions

64
package.json Normal file
View File

@@ -0,0 +1,64 @@
{
"name": "openclaw-pit-bot",
"version": "1.0.0",
"description": "PIT Bot Channel Plugin for OpenClaw - Connect to PIT Router for multi-agent support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"pit-bot",
"pit-router",
"channel-plugin",
"multi-agent",
"websocket"
],
"author": "小白 🐶",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/openclaw-pit-bot.git"
},
"bugs": {
"url": "https://github.com/your-org/openclaw-pit-bot/issues"
},
"homepage": "https://github.com/your-org/openclaw-pit-bot#readme",
"dependencies": {
"openclaw": "~2026.3.0",
"ws": "^8.18.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"openclaw": {
"pluginId": "pit-bot",
"minOpenClawVersion": "2026.3.0"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}