skimpyclaw 0.1.0 → 0.1.1

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,12 +1,12 @@
1
1
  # SkimpyClaw 👙🦞
2
2
 
3
- Lightweight personal AI assistant (~20k LOC). Runs locally. Telegram/Discord chat, scheduled routines, a web dashboard, and a tool-enabled agent — all in one tiny service.
3
+ Lightweight personal AI assistant (~23k LOC). Runs locally. Telegram/Discord chat, scheduled routines, a web dashboard, and a tool-enabled agent — all in one tiny service.
4
4
 
5
5
  ## Why SkimpyClaw vs OpenClaw
6
6
 
7
7
  Both are personal AI assistants you run yourself. The difference is scope.
8
8
 
9
- | | SkimpyClaw (~20k LOC) | OpenClaw (~700k LOC) |
9
+ | | SkimpyClaw (~23k LOC) | OpenClaw (~700k LOC) |
10
10
  | ------------------- | --------------------------------------- | -------------------------------------------------------- |
11
11
  | **Channels** | Telegram, Discord | WhatsApp, Signal, iMessage, Slack, Teams, Matrix, + more |
12
12
  | **Setup** | `skimpyclaw onboard` → done | Daemon + wizard + per-channel pairing |
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>Label</key>
6
+ <string>com.skimpyclaw.gateway</string>
7
+ <key>Comment</key>
8
+ <string>SkimpyClaw personal AI assistant gateway</string>
9
+ <key>RunAtLoad</key>
10
+ <true/>
11
+ <key>KeepAlive</key>
12
+ <true/>
13
+ <key>ProgramArguments</key>
14
+ <array>
15
+ <string>__REPO_DIR__/node_modules/.bin/tsx</string>
16
+ <string>__REPO_DIR__/src/index.ts</string>
17
+ </array>
18
+ <key>WorkingDirectory</key>
19
+ <string>__REPO_DIR__</string>
20
+ <key>EnvironmentVariables</key>
21
+ <dict>
22
+ <key>SKIMPYCLAW_LAUNCHD</key>
23
+ <string>1</string>
24
+ <key>PATH</key>
25
+ <string>__NODE_BIN_DIR__:__PNPM_BIN_DIR__:__SYSTEM_PATH__</string>
26
+ </dict>
27
+ <key>StandardOutPath</key>
28
+ <string>__HOME_DIR__/.skimpyclaw/logs/gateway.stdout.log</string>
29
+ <key>StandardErrorPath</key>
30
+ <string>__HOME_DIR__/.skimpyclaw/logs/gateway.stderr.log</string>
31
+ </dict>
32
+ </plist>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skimpyclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Lightweight personal AI assistant with Telegram and Discord integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,6 +11,7 @@
11
11
  "files": [
12
12
  "dist",
13
13
  "templates",
14
+ "com.skimpyclaw.gateway.plist.example",
14
15
  "README.md",
15
16
  "LICENSE"
16
17
  ],
@@ -26,6 +27,8 @@
26
27
  "setup": "tsx src/setup.ts",
27
28
  "onboard": "tsx src/cli.ts onboard",
28
29
  "build": "tsc && pnpm dashboard:build",
30
+ "release:check": "pnpm build && pnpm test",
31
+ "release:local": "bash ./scripts/release.sh",
29
32
  "lint": "eslint \"src/**/*.ts\"",
30
33
  "typecheck": "tsc --noEmit",
31
34
  "test": "vitest run",