-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "openclaw-taas-affinity",
"version": "0.5.2",
"description": "OpenClaw provider plugin — CloudSigma TaaS session affinity. Injects a stable X-Session-Id header per conversation so TaaS can pin the session to the same OAuth token / Bedrock region / Claude Code node, maximising prompt-cache hit rates.",
"type": "module",
"main": "dist/index.js",
"openclaw": {
"extensions": [
"./dist/index.js"
],
"providers": [
"cloudsigma",
"cloudsigma-staging"
],
"compat": {
"pluginApi": ">=2026.4.27",
"minGatewayVersion": "2026.4.27"
},
"build": {
"openclawVersion": "2026.4.27",
"pluginSdkVersion": "2026.4.27"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"typecheck": "tsc --noEmit",
"smoke": "node test/smoke.mjs",
"unit": "node --import tsx --test test/*.test.ts",
"test": "npm run typecheck && npm run smoke && npm run unit"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"cloudsigma",
"taas",
"session-affinity",
"provider"
],
"author": "CloudSigma",
"license": "MIT",
"peerDependencies": {
"openclaw": ">=2026.4.27"
},
"devDependencies": {
"@types/node": "^22.0.0",
"openclaw": "^2026.5.18",
"tsx": "^4.20.0",
"typescript": "^5.0.0"
},
"types": "dist/index.d.ts",
"files": [
"dist/",
"openclaw.plugin.json",
"README.md",
"LICENSE"
]
}