@godmode-team/godmode 1.1.0 → 1.3.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.
package/README.md CHANGED
@@ -1,146 +1,88 @@
1
- # GodMode Plugin for OpenClaw
1
+ # GodMode Personal AI Operating System
2
2
 
3
- GodMode is a commercial OpenClaw plugin that adds:
3
+ GodMode is a premium OpenClaw plugin that transforms your self-hosted AI into a personal operating system. It adds deep onboarding, daily operating rhythms, trust tracking, team workspaces, and coding orchestration on top of OpenClaw's powerful infrastructure.
4
4
 
5
- - Personal operating dashboard at `/godmode`
6
- - Goal/project/task/people data handlers
7
- - My Day (`agentLog.*`) and workspace tooling
8
- - Optional Lifetracks generation endpoints
5
+ ## What You Get
6
+
7
+ - **Guided Onboarding** Interactive setup wizard that interviews you, audits your existing configuration, and builds your personalized AI operating environment
8
+ - **Daily Operating Rhythm** — Morning briefs with calendar + intelligence, Focus Pulse for priority tracking, evening capture and processing
9
+ - **Consciousness Sync** — Your AI maintains a living context document that updates hourly, keeping it aware of your schedule, tasks, and current state
10
+ - **Trust Tracker** — Rate your AI's outputs, and it learns your preferences over time. The compounding feedback loop is what makes GodMode irreplaceable
11
+ - **Second Brain** — Markdown-based knowledge management with semantic search across all your files
12
+ - **Team Workspaces** — Git-backed collaboration with member roles, shared memory, and automatic sync
13
+ - **Coding Orchestration** — Dispatch code tasks to isolated worktrees with automated validation gates, PR creation, and completion notifications
14
+ - **Safety Gates** — Built-in guardrails that prevent prompt injection, credential leaks, and runaway agent loops
15
+ - **Support Chat** — Built-in AI support agent that knows the full system and can troubleshoot issues
9
16
 
10
17
  ## Requirements
11
18
 
12
- - Node 22+
13
- - OpenClaw `>=2026.0.0`
19
+ - Node.js 22+
20
+ - OpenClaw `>=2026.2.0`
21
+ - A GodMode license key
14
22
 
15
- ## Install
23
+ ## Quick Start
16
24
 
17
- From npm:
25
+ ### 1. Install the plugin
18
26
 
19
27
  ```bash
20
28
  openclaw plugins install @godmode-team/godmode
21
29
  ```
22
30
 
23
- From a local clone:
24
-
25
- ```bash
26
- pnpm install
27
- pnpm build
28
- openclaw plugins install --link /absolute/path/to/godmode-plugin
29
- ```
30
-
31
- ## Configure
32
-
33
- Set required license key:
31
+ ### 2. Activate your license
34
32
 
35
33
  ```bash
36
- openclaw config set plugins.entries.godmode.config.licenseKey "GM-..."
34
+ openclaw config set plugins.entries.godmode.config.licenseKey "GM-YOUR-KEY-HERE"
37
35
  openclaw config set plugins.entries.godmode.enabled true
38
36
  ```
39
37
 
40
- Optional workspace root:
38
+ ### 3. Restart the gateway
41
39
 
42
40
  ```bash
43
- openclaw config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
44
- ```
45
-
46
- Enable coding orchestration:
47
-
48
- ```bash
49
- openclaw config set plugins.entries.godmode.config.coding.enabled true
50
- openclaw config set plugins.entries.godmode.config.coding.maxParallelWriters 1
41
+ openclaw gateway restart
51
42
  ```
52
43
 
53
- Restart gateway after config changes:
44
+ ### 4. Open GodMode
54
45
 
55
- ```bash
56
- openclaw gateway restart
57
- ```
46
+ Navigate to `http://localhost:18789/godmode` in your browser. The setup wizard will walk you through everything else.
58
47
 
59
- ## Verify
48
+ ## Verify Installation
60
49
 
61
50
  ```bash
62
51
  openclaw plugins list
63
52
  curl -fsS http://127.0.0.1:18789/godmode/health
64
53
  ```
65
54
 
66
- Then open `http://127.0.0.1:18789/godmode`.
55
+ ## Configuration
67
56
 
68
- ## Build
57
+ ### Workspace root (default: `~/godmode`)
69
58
 
70
59
  ```bash
71
- pnpm build
72
- ```
73
-
74
- Build outputs:
75
-
76
- - `dist/index.js` (plugin runtime entry)
77
- - `dist/godmode-ui/*` (UI assets)
78
-
79
- `pnpm build` bundles UI from the first available source:
80
-
81
- 1. `--ui-dir <path>` passed to `scripts/bundle-ui.mjs`
82
- 2. `GODMODE_UI_DIR=<path>`
83
- 3. `ui/dist` (in-repo Vite build output)
84
- 4. `assets/godmode-ui` (committed fallback snapshot)
85
-
86
- Build the UI:
87
-
88
- ```bash
89
- pnpm build:ui
90
- pnpm build
60
+ openclaw config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
91
61
  ```
92
62
 
93
- To refresh fallback assets (recommended before release):
63
+ ### Coding orchestration
94
64
 
95
65
  ```bash
96
- pnpm ui:sync
66
+ openclaw config set plugins.entries.godmode.config.coding.enabled true
67
+ openclaw config set plugins.entries.godmode.config.coding.maxParallelWriters 1
97
68
  ```
98
69
 
99
- ## Optional Features
100
-
101
- Lifetracks endpoints require a generation module. Set:
70
+ ### Focus Pulse (daily priority tracking)
102
71
 
103
72
  ```bash
104
- export GODMODE_LIFETRACK_MODULE=/absolute/path/to/lifetrack/index.js
73
+ openclaw config set plugins.entries.godmode.config.focusPulse.enabled true
105
74
  ```
106
75
 
107
- Agent log writer startup integration is optional and auto-detected when the
108
- host runtime exposes the expected module.
109
-
110
- ## Consciousness Sync (Gold Icon)
111
-
112
- The gold heart-brain icon in chat is a manual consciousness sync trigger.
113
- Legacy pre-plugin consciousness flows are retired; this heartbeat + manual flush path is the canonical system.
114
-
115
- - UI action: click icon (or press `Cmd/Ctrl+Shift+H`)
116
- - RPC method: `godmode.consciousness.flush`
117
- - Backend action: runs `~/godmode/scripts/consciousness-sync.sh`
118
- - Result: regenerates `~/godmode/memory/CONSCIOUSNESS.md` and returns status to UI
119
-
120
- The plugin also exposes read-only fetch:
76
+ ## Consciousness Sync
121
77
 
122
- - RPC method: `godmode.consciousness.read`
123
- - Result: returns current `CONSCIOUSNESS.md` content and timestamp
78
+ The gold heart-brain icon in chat triggers a manual consciousness sync. Press `Cmd/Ctrl+Shift+H` or click the icon to force an immediate refresh of your AI's awareness context.
124
79
 
125
- By default in the GodMode runtime, `CONSCIOUSNESS.md` is refreshed by a
126
- separate heartbeat cron (typically hourly), while the gold icon forces an
127
- immediate sync on demand.
80
+ By default, consciousness syncs automatically every hour via a background heartbeat.
128
81
 
129
- ## Coding Orchestration
82
+ ## Support
130
83
 
131
- The `coding_task` agent tool is the single entry point for all code work. It:
84
+ Having trouble? Open the built-in support chat from the Setup tab, or reach out to your account admin.
132
85
 
133
- 1. Creates an isolated git worktree and branch per task
134
- 2. Spawns a Claude Code agent directly in the worktree
135
- 3. Runs validation gates (lint, typecheck, test) on completion
136
- 4. Creates a PR and optionally auto-merges
137
- 5. Sends iMessage completion notifications
86
+ ## License
138
87
 
139
- Agents must use `coding_task` running `claude -p` via `exec` is blocked by the spawn gate.
140
-
141
- Check coding task status:
142
-
143
- ```bash
144
- openclaw rpc coding.status '{}'
145
- openclaw rpc coding.list '{}'
146
- ```
88
+ Commercial software. See [LICENSE](./LICENSE) for terms.