@godmode-team/godmode 1.0.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 +46 -46
- package/dist/godmode-ui/aeo.html +989 -0
- package/dist/godmode-ui/apple-touch-icon.png +0 -0
- package/dist/godmode-ui/assets/dashboards-BWn_hwxU.js +1 -0
- package/dist/godmode-ui/assets/index-DLms34x3.css +1 -0
- package/dist/godmode-ui/assets/index-DSS-Mmm_.js +9315 -0
- package/dist/godmode-ui/assets/onboarding-setup-eq3R6nNk.js +1 -0
- package/dist/godmode-ui/assets/options-QuHclvvX.js +1 -0
- package/dist/godmode-ui/assets/proactive-intel-BU5IobT1.js +1 -0
- package/dist/godmode-ui/assets/second-brain-nWUdvmOD.js +1 -0
- package/dist/godmode-ui/assets/setup-DDvbMoK2.js +1 -0
- package/dist/godmode-ui/consciousness-icon-64.png +0 -0
- package/dist/godmode-ui/consciousness-icon.png +0 -0
- package/dist/godmode-ui/consciousness-icon.webp +0 -0
- package/dist/godmode-ui/favicon-32.png +0 -0
- package/dist/godmode-ui/favicon.ico +0 -0
- package/dist/godmode-ui/favicon.svg +7 -1
- package/dist/godmode-ui/godmode-logo.png +0 -0
- package/dist/godmode-ui/how-to-godmode.html +1416 -0
- package/dist/godmode-ui/index.html +7 -6
- package/dist/index.js +27620 -5659
- package/openclaw.plugin.json +86 -1
- package/package.json +49 -9
- package/dist/deck/assets/index-Dq6YBWDo.css +0 -10
- package/dist/deck/assets/index-OeRjiyQU.js +0 -83
- package/dist/deck/index.html +0 -17
- package/dist/godmode-ui/assets/index-BPHog2ro.css +0 -1
- package/dist/godmode-ui/assets/index-D7TzQ2zb.js +0 -4985
- package/dist/godmode-ui/caleb-avatar.jpg +0 -0
- package/dist/godmode-ui/favicon-new.svg +0 -3
- package/dist/godmode-ui/favicon.ico.svg +0 -3
- package/dist/godmode-ui/lightning-icon.svg +0 -3
- package/dist/godmode-ui/vite.svg +0 -1
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
# GodMode
|
|
1
|
+
# GodMode — Personal AI Operating System
|
|
2
2
|
|
|
3
|
-
GodMode is a
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
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.
|
|
19
|
+
- Node.js 22+
|
|
20
|
+
- OpenClaw `>=2026.2.0`
|
|
21
|
+
- A GodMode license key
|
|
14
22
|
|
|
15
|
-
##
|
|
23
|
+
## Quick Start
|
|
16
24
|
|
|
17
|
-
|
|
25
|
+
### 1. Install the plugin
|
|
18
26
|
|
|
19
27
|
```bash
|
|
20
28
|
openclaw plugins install @godmode-team/godmode
|
|
21
29
|
```
|
|
22
30
|
|
|
23
|
-
|
|
31
|
+
### 2. Activate your license
|
|
24
32
|
|
|
25
33
|
```bash
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
openclaw plugins install --link /absolute/path/to/godmode-plugin
|
|
34
|
+
openclaw config set plugins.entries.godmode.config.licenseKey "GM-YOUR-KEY-HERE"
|
|
35
|
+
openclaw config set plugins.entries.godmode.enabled true
|
|
29
36
|
```
|
|
30
37
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Set required license key:
|
|
38
|
+
### 3. Restart the gateway
|
|
34
39
|
|
|
35
40
|
```bash
|
|
36
|
-
openclaw
|
|
37
|
-
openclaw config set plugins.entries.godmode.enabled true
|
|
41
|
+
openclaw gateway restart
|
|
38
42
|
```
|
|
39
43
|
|
|
40
|
-
|
|
44
|
+
### 4. Open GodMode
|
|
45
|
+
|
|
46
|
+
Navigate to `http://localhost:18789/godmode` in your browser. The setup wizard will walk you through everything else.
|
|
47
|
+
|
|
48
|
+
## Verify Installation
|
|
41
49
|
|
|
42
50
|
```bash
|
|
43
|
-
openclaw
|
|
51
|
+
openclaw plugins list
|
|
52
|
+
curl -fsS http://127.0.0.1:18789/godmode/health
|
|
44
53
|
```
|
|
45
54
|
|
|
46
|
-
|
|
55
|
+
## Configuration
|
|
56
|
+
|
|
57
|
+
### Workspace root (default: `~/godmode`)
|
|
47
58
|
|
|
48
59
|
```bash
|
|
49
|
-
openclaw
|
|
60
|
+
openclaw config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
|
|
50
61
|
```
|
|
51
62
|
|
|
52
|
-
|
|
63
|
+
### Coding orchestration
|
|
53
64
|
|
|
54
65
|
```bash
|
|
55
|
-
openclaw plugins
|
|
56
|
-
|
|
66
|
+
openclaw config set plugins.entries.godmode.config.coding.enabled true
|
|
67
|
+
openclaw config set plugins.entries.godmode.config.coding.maxParallelWriters 1
|
|
57
68
|
```
|
|
58
69
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
## Build
|
|
70
|
+
### Focus Pulse (daily priority tracking)
|
|
62
71
|
|
|
63
72
|
```bash
|
|
64
|
-
|
|
73
|
+
openclaw config set plugins.entries.godmode.config.focusPulse.enabled true
|
|
65
74
|
```
|
|
66
75
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
- `dist/index.js` (plugin runtime entry)
|
|
70
|
-
- `dist/godmode-ui/*` (UI assets)
|
|
76
|
+
## Consciousness Sync
|
|
71
77
|
|
|
72
|
-
|
|
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.
|
|
73
79
|
|
|
74
|
-
|
|
75
|
-
2. `dist/control-ui` in this repo
|
|
76
|
-
3. `../../dist/control-ui` (monorepo build output)
|
|
77
|
-
4. `assets/godmode-ui` fallback snapshot
|
|
80
|
+
By default, consciousness syncs automatically every hour via a background heartbeat.
|
|
78
81
|
|
|
79
|
-
##
|
|
82
|
+
## Support
|
|
80
83
|
|
|
81
|
-
|
|
84
|
+
Having trouble? Open the built-in support chat from the Setup tab, or reach out to your account admin.
|
|
82
85
|
|
|
83
|
-
|
|
84
|
-
export GODMODE_LIFETRACK_MODULE=/absolute/path/to/lifetrack/index.js
|
|
85
|
-
```
|
|
86
|
+
## License
|
|
86
87
|
|
|
87
|
-
|
|
88
|
-
host runtime exposes the expected module.
|
|
88
|
+
Commercial software. See [LICENSE](./LICENSE) for terms.
|