clawdo 1.1.2 → 1.1.4

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
@@ -11,7 +11,8 @@ Your AI agent has memory files, cron jobs, and chat. It has no todo list.
11
11
  clawdo is that missing piece — a persistent task queue for AI agents.
12
12
 
13
13
  ```bash
14
- npm install -g clawdo
14
+ clawhub install clawdo # if you're on OpenClaw
15
+ npm install -g clawdo # standalone
15
16
  ```
16
17
 
17
18
  ## The gap
@@ -71,21 +72,19 @@ Default: `collab` (safe).
71
72
 
72
73
  ## Install
73
74
 
74
- **Via npm:**
75
+ **Via [ClawHub](https://clawhub.ai)** (recommended for OpenClaw agents):
75
76
 
76
77
  ```bash
77
- npm install -g clawdo
78
+ clawhub install clawdo # installs skill + docs into your workspace
79
+ npm install -g clawdo # install the CLI binary
78
80
  ```
79
81
 
80
- **Via [ClawHub](https://clawhub.ai)** (installs the skill into your OpenClaw workspace):
82
+ **Via npm only:**
81
83
 
82
84
  ```bash
83
- npm install -g clawhub # one-time: install the ClawHub CLI
84
- clawhub install clawdo # install the clawdo skill
85
+ npm install -g clawdo
85
86
  ```
86
87
 
87
- Then install the CLI itself: `npm install -g clawdo`. The ClawHub skill gives your agent the documentation; the npm package gives it the binary.
88
-
89
88
  **Requirements:** Node.js ≥ 18, build tools for better-sqlite3:
90
89
  - Debian/Ubuntu: `apt install build-essential python3`
91
90
  - macOS: `xcode-select --install`
package/dist/index.js CHANGED
@@ -118,7 +118,7 @@ function formatTimeAgo(isoTimestamp) {
118
118
  program
119
119
  .name('clawdo')
120
120
  .description('Personal task queue with autonomous execution — claw + to-do')
121
- .version('1.1.2')
121
+ .version('1.1.3')
122
122
  .option('--db <path>', 'Database path (default: ~/.config/clawdo/clawdo.db, or $CLAWDO_DB_PATH)')
123
123
  .hook('preAction', (thisCommand) => {
124
124
  const opts = thisCommand.opts();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdo",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Personal task queue with autonomous execution — claw + to-do",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",