@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.
Files changed (34) hide show
  1. package/README.md +46 -46
  2. package/dist/godmode-ui/aeo.html +989 -0
  3. package/dist/godmode-ui/apple-touch-icon.png +0 -0
  4. package/dist/godmode-ui/assets/dashboards-BWn_hwxU.js +1 -0
  5. package/dist/godmode-ui/assets/index-DLms34x3.css +1 -0
  6. package/dist/godmode-ui/assets/index-DSS-Mmm_.js +9315 -0
  7. package/dist/godmode-ui/assets/onboarding-setup-eq3R6nNk.js +1 -0
  8. package/dist/godmode-ui/assets/options-QuHclvvX.js +1 -0
  9. package/dist/godmode-ui/assets/proactive-intel-BU5IobT1.js +1 -0
  10. package/dist/godmode-ui/assets/second-brain-nWUdvmOD.js +1 -0
  11. package/dist/godmode-ui/assets/setup-DDvbMoK2.js +1 -0
  12. package/dist/godmode-ui/consciousness-icon-64.png +0 -0
  13. package/dist/godmode-ui/consciousness-icon.png +0 -0
  14. package/dist/godmode-ui/consciousness-icon.webp +0 -0
  15. package/dist/godmode-ui/favicon-32.png +0 -0
  16. package/dist/godmode-ui/favicon.ico +0 -0
  17. package/dist/godmode-ui/favicon.svg +7 -1
  18. package/dist/godmode-ui/godmode-logo.png +0 -0
  19. package/dist/godmode-ui/how-to-godmode.html +1416 -0
  20. package/dist/godmode-ui/index.html +7 -6
  21. package/dist/index.js +27620 -5659
  22. package/openclaw.plugin.json +86 -1
  23. package/package.json +49 -9
  24. package/dist/deck/assets/index-Dq6YBWDo.css +0 -10
  25. package/dist/deck/assets/index-OeRjiyQU.js +0 -83
  26. package/dist/deck/index.html +0 -17
  27. package/dist/godmode-ui/assets/index-BPHog2ro.css +0 -1
  28. package/dist/godmode-ui/assets/index-D7TzQ2zb.js +0 -4985
  29. package/dist/godmode-ui/caleb-avatar.jpg +0 -0
  30. package/dist/godmode-ui/favicon-new.svg +0 -3
  31. package/dist/godmode-ui/favicon.ico.svg +0 -3
  32. package/dist/godmode-ui/lightning-icon.svg +0 -3
  33. package/dist/godmode-ui/vite.svg +0 -1
  34. package/dist/index.js.map +0 -1
package/README.md CHANGED
@@ -1,88 +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:
31
+ ### 2. Activate your license
24
32
 
25
33
  ```bash
26
- pnpm install
27
- pnpm build
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
- ## Configure
32
-
33
- Set required license key:
38
+ ### 3. Restart the gateway
34
39
 
35
40
  ```bash
36
- openclaw config set plugins.entries.godmode.config.licenseKey "GM-..."
37
- openclaw config set plugins.entries.godmode.enabled true
41
+ openclaw gateway restart
38
42
  ```
39
43
 
40
- Optional workspace root:
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 config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
51
+ openclaw plugins list
52
+ curl -fsS http://127.0.0.1:18789/godmode/health
44
53
  ```
45
54
 
46
- Restart gateway after config changes:
55
+ ## Configuration
56
+
57
+ ### Workspace root (default: `~/godmode`)
47
58
 
48
59
  ```bash
49
- openclaw gateway restart
60
+ openclaw config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
50
61
  ```
51
62
 
52
- ## Verify
63
+ ### Coding orchestration
53
64
 
54
65
  ```bash
55
- openclaw plugins list
56
- curl -fsS http://127.0.0.1:18789/godmode/health
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
- Then open `http://127.0.0.1:18789/godmode`.
60
-
61
- ## Build
70
+ ### Focus Pulse (daily priority tracking)
62
71
 
63
72
  ```bash
64
- pnpm build
73
+ openclaw config set plugins.entries.godmode.config.focusPulse.enabled true
65
74
  ```
66
75
 
67
- Build outputs:
68
-
69
- - `dist/index.js` (plugin runtime entry)
70
- - `dist/godmode-ui/*` (UI assets)
76
+ ## Consciousness Sync
71
77
 
72
- `pnpm build` will bundle UI from the first available source:
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
- 1. `--ui-dir <path>` passed to `scripts/bundle-ui.mjs`
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
- ## Optional Features
82
+ ## Support
80
83
 
81
- Lifetracks endpoints require a generation module. Set:
84
+ Having trouble? Open the built-in support chat from the Setup tab, or reach out to your account admin.
82
85
 
83
- ```bash
84
- export GODMODE_LIFETRACK_MODULE=/absolute/path/to/lifetrack/index.js
85
- ```
86
+ ## License
86
87
 
87
- Agent log writer startup integration is optional and auto-detected when the
88
- host runtime exposes the expected module.
88
+ Commercial software. See [LICENSE](./LICENSE) for terms.