@supaku/agentfactory-server 0.7.11 → 0.7.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -23,6 +23,10 @@ Requires a Redis instance (works with Redis, Upstash, Vercel KV, or any Redis-co
|
|
|
23
23
|
| **TokenStorage** | OAuth token storage and retrieval |
|
|
24
24
|
| **RateLimit** | Token bucket rate limiting |
|
|
25
25
|
| **WorkerAuth** | API key verification for workers |
|
|
26
|
+
| **RedisEventBus** | Governor event bus backed by Redis Streams (consumer groups, MAXLEN trim) |
|
|
27
|
+
| **RedisEventDeduplicator** | Governor event dedup using SETNX with TTL |
|
|
28
|
+
| **RedisOverrideStorage** | Governor human override state (HOLD, PRIORITY) |
|
|
29
|
+
| **RedisProcessingStateStorage** | Top-of-funnel phase tracking (research, backlog-creation) |
|
|
26
30
|
|
|
27
31
|
## Quick Start
|
|
28
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supaku/agentfactory-server",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Webhook server and distributed worker pool for AgentFactory — Redis queues, issue locks, session management",
|
|
6
6
|
"author": "Supaku (https://supaku.com)",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"ioredis": "^5.4.2",
|
|
47
|
-
"@supaku/agentfactory": "0.7.
|
|
48
|
-
"@supaku/agentfactory-linear": "0.7.
|
|
47
|
+
"@supaku/agentfactory": "0.7.12",
|
|
48
|
+
"@supaku/agentfactory-linear": "0.7.12"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^22.5.4",
|