@godmode-team/godmode 1.0.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.
@@ -0,0 +1,31 @@
1
+ {
2
+ "id": "godmode",
3
+ "name": "GodMode",
4
+ "description": "Personal AI Operating System for entrepreneurs",
5
+ "version": "1.0.0",
6
+ "configSchema": {
7
+ "type": "object",
8
+ "properties": {
9
+ "licenseKey": {
10
+ "type": "string",
11
+ "description": "GodMode subscription license key (starts with GM-)"
12
+ },
13
+ "workspaceRoot": {
14
+ "type": "string",
15
+ "default": "~/godmode",
16
+ "description": "Root directory for GodMode data files"
17
+ },
18
+ "focusPulse": {
19
+ "type": "object",
20
+ "properties": {
21
+ "enabled": {
22
+ "type": "boolean",
23
+ "default": false,
24
+ "description": "Enable Focus Pulse daily priority tracking in the topbar"
25
+ }
26
+ }
27
+ }
28
+ },
29
+ "required": ["licenseKey"]
30
+ }
31
+ }
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@godmode-team/godmode",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "description": "GodMode - Personal AI Operating System plugin for OpenClaw",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "openclaw.plugin.json",
12
+ "LICENSE",
13
+ "README.md"
14
+ ],
15
+ "scripts": {
16
+ "build": "pnpm build:code && pnpm bundle:ui",
17
+ "build:code": "tsup",
18
+ "bundle:ui": "node scripts/bundle-ui.mjs",
19
+ "clean": "rm -rf dist",
20
+ "typecheck": "tsc --noEmit",
21
+ "pack:check": "npm pack --dry-run"
22
+ },
23
+ "dependencies": {
24
+ "chokidar": "^4.0.3",
25
+ "json5": "^2.2.3"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^24.3.3",
29
+ "openclaw": "^2026.2.23",
30
+ "tsup": "^8.5.1",
31
+ "typescript": "^5.9.2"
32
+ },
33
+ "peerDependencies": {
34
+ "openclaw": ">=2026.0.0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "openclaw": {
38
+ "optional": false
39
+ }
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "engines": {
45
+ "node": ">=22"
46
+ },
47
+ "openclaw": {
48
+ "extensions": [
49
+ "./dist/index.js"
50
+ ]
51
+ }
52
+ }