@happycastle/oh-my-openclaw 0.16.1 → 0.17.0

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.
@@ -44,10 +44,7 @@ export function createMockConfig(overrides) {
44
44
  todo_enforcer_cooldown_ms: 2000,
45
45
  todo_enforcer_max_failures: 5,
46
46
  comment_checker_enabled: true,
47
- notepad_dir: 'workspace/notepads',
48
- plans_dir: 'workspace/plans',
49
47
  checkpoint_dir: 'workspace/checkpoints',
50
- tmux_socket: '/tmp/openclaw-tmux-sockets/openclaw.sock',
51
48
  model_routing: undefined,
52
49
  webhook_bridge_enabled: false,
53
50
  gateway_url: 'http://127.0.0.1:18789',
package/dist/types.d.ts CHANGED
@@ -5,10 +5,7 @@ export interface PluginConfig {
5
5
  todo_enforcer_cooldown_ms: number;
6
6
  todo_enforcer_max_failures: number;
7
7
  comment_checker_enabled: boolean;
8
- notepad_dir: string;
9
- plans_dir: string;
10
8
  checkpoint_dir: string;
11
- tmux_socket: string;
12
9
  model_routing?: Partial<Record<string, {
13
10
  model: string;
14
11
  alternatives?: string[];
@@ -9,10 +9,7 @@ export function getConfig(api) {
9
9
  todo_enforcer_cooldown_ms: 2000,
10
10
  todo_enforcer_max_failures: 5,
11
11
  comment_checker_enabled: true,
12
- notepad_dir: join(wsDir, 'notepads'),
13
- plans_dir: join(wsDir, 'plans'),
14
12
  checkpoint_dir: join(wsDir, 'checkpoints'),
15
- tmux_socket: '/tmp/openclaw-tmux-sockets/openclaw.sock',
16
13
  model_routing: undefined,
17
14
  webhook_bridge_enabled: false,
18
15
  gateway_url: process.env.OPENCLAW_GATEWAY_URL ?? 'http://127.0.0.1:18789',
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "id": "oh-my-openclaw",
3
3
  "name": "Oh-My-OpenClaw",
4
- "description": "Multi-agent orchestration plugin \u2014 11 agents, category-based model routing, todo enforcer, ralph loop, agent setup CLI, and custom tools",
5
- "version": "0.15.3",
6
- "skills": ["skills"],
4
+ "description": "Multi-agent orchestration plugin 11 agents, category-based model routing, todo enforcer, ralph loop, agent setup CLI, and custom tools",
5
+ "version": "0.17.0",
6
+ "skills": [
7
+ "skills"
8
+ ],
7
9
  "configSchema": {
8
10
  "type": "object",
9
11
  "additionalProperties": false,
@@ -15,11 +17,11 @@
15
17
  "default": 10,
16
18
  "description": "Maximum ralph loop iterations per session (hard cap: 100)"
17
19
  },
18
- "todo_enforcer_enabled": {
19
- "type": "boolean",
20
- "default": false,
21
- "description": "Enable todo continuation injection on agent bootstrap"
22
- },
20
+ "todo_enforcer_enabled": {
21
+ "type": "boolean",
22
+ "default": false,
23
+ "description": "Enable todo continuation injection on agent bootstrap"
24
+ },
23
25
  "todo_enforcer_cooldown_ms": {
24
26
  "type": "integer",
25
27
  "minimum": 1,
@@ -37,26 +39,11 @@
37
39
  "default": true,
38
40
  "description": "Enable AI slop comment detection on tool results"
39
41
  },
40
- "notepad_dir": {
41
- "type": "string",
42
- "default": "workspace/notepads",
43
- "description": "Directory for wisdom accumulation notepads"
44
- },
45
- "plans_dir": {
46
- "type": "string",
47
- "default": "workspace/plans",
48
- "description": "Directory for plan storage"
49
- },
50
42
  "checkpoint_dir": {
51
43
  "type": "string",
52
44
  "default": "workspace/checkpoints",
53
45
  "description": "Directory for execution checkpoints"
54
46
  },
55
- "tmux_socket": {
56
- "type": "string",
57
- "default": "/tmp/openclaw-tmux-sockets/openclaw.sock",
58
- "description": "Path to the tmux socket for Gemini CLI integration"
59
- },
60
47
  "model_routing": {
61
48
  "type": "object",
62
49
  "description": "Custom category→model mappings. Override default model selection per category.",
@@ -79,6 +66,33 @@
79
66
  "model"
80
67
  ]
81
68
  }
69
+ },
70
+ "webhook_bridge_enabled": {
71
+ "type": "boolean",
72
+ "default": false,
73
+ "description": "Enable webhook bridge for proactive agent messaging (hooks/wake + hooks/agent)"
74
+ },
75
+ "gateway_url": {
76
+ "type": "string",
77
+ "default": "http://127.0.0.1:18789",
78
+ "description": "OpenClaw gateway URL for webhook bridge. Can also be set via OPENCLAW_GATEWAY_URL env var."
79
+ },
80
+ "hooks_token": {
81
+ "type": "string",
82
+ "default": "",
83
+ "description": "Authentication token for gateway webhook hooks. Can also be set via OPENCLAW_HOOKS_TOKEN env var. Auto-generated by omoc-setup."
84
+ },
85
+ "webhook_reminder_interval_ms": {
86
+ "type": "integer",
87
+ "minimum": 10000,
88
+ "default": 300000,
89
+ "description": "Interval between webhook bridge reminder checks (ms, default: 5 minutes)"
90
+ },
91
+ "webhook_subagent_stale_threshold_ms": {
92
+ "type": "integer",
93
+ "minimum": 30000,
94
+ "default": 600000,
95
+ "description": "Time before a tracked sub-agent is considered stale (ms, default: 10 minutes)"
82
96
  }
83
97
  }
84
98
  },
@@ -108,30 +122,40 @@
108
122
  "description": "Detect and flag AI-generated slop comments",
109
123
  "group": "Quality"
110
124
  },
111
- "notepad_dir": {
112
- "label": "Notepads Directory",
113
- "description": "Path for wisdom accumulation notepads",
114
- "group": "Storage"
115
- },
116
- "plans_dir": {
117
- "label": "Plans Directory",
118
- "description": "Path for execution plan storage",
119
- "group": "Storage"
120
- },
121
125
  "checkpoint_dir": {
122
126
  "label": "Checkpoints Directory",
123
127
  "description": "Path for execution checkpoint files",
124
128
  "group": "Storage"
125
129
  },
126
- "tmux_socket": {
127
- "label": "Tmux Socket Path",
128
- "description": "Socket path for Gemini CLI tmux integration",
129
- "group": "Integration"
130
- },
131
130
  "model_routing": {
132
131
  "label": "Model Routing",
133
132
  "description": "Custom category→model mappings for task delegation",
134
133
  "group": "Model Routing"
134
+ },
135
+ "webhook_bridge_enabled": {
136
+ "label": "Webhook Bridge",
137
+ "description": "Enable proactive agent messaging via gateway webhooks",
138
+ "group": "Webhook"
139
+ },
140
+ "gateway_url": {
141
+ "label": "Gateway URL",
142
+ "description": "OpenClaw gateway URL for webhook bridge",
143
+ "group": "Webhook"
144
+ },
145
+ "hooks_token": {
146
+ "label": "Hooks Token",
147
+ "description": "Authentication token for gateway webhook hooks (auto-generated by omoc-setup)",
148
+ "group": "Webhook"
149
+ },
150
+ "webhook_reminder_interval_ms": {
151
+ "label": "Reminder Interval (ms)",
152
+ "description": "How often to check for stale sub-agents and send reminders",
153
+ "group": "Webhook"
154
+ },
155
+ "webhook_subagent_stale_threshold_ms": {
156
+ "label": "Stale Threshold (ms)",
157
+ "description": "Time before a sub-agent is considered stale and triggers a reminder",
158
+ "group": "Webhook"
135
159
  }
136
160
  }
137
161
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@happycastle/oh-my-openclaw",
3
- "version": "0.16.1",
3
+ "version": "0.17.0",
4
4
  "description": "Oh-My-OpenClaw plugin — multi-agent orchestration, todo enforcer, ralph loop, and custom tools for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",