agentrem 1.0.0 → 1.0.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 +47 -10
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -13,9 +13,52 @@ agentrem init
|
|
|
13
13
|
|
|
14
14
|
## Connect to Your AI Tool
|
|
15
15
|
|
|
16
|
-
### Claude
|
|
16
|
+
### Claude Code (Recommended)
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Claude Code has shell access, so it works out of the box — no MCP config needed.
|
|
19
|
+
|
|
20
|
+
**1. Install globally:**
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g agentrem
|
|
24
|
+
agentrem init
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**2. Add to your `CLAUDE.md`:**
|
|
28
|
+
|
|
29
|
+
```markdown
|
|
30
|
+
## Reminders
|
|
31
|
+
You have access to `agentrem` CLI for persistent reminders across sessions.
|
|
32
|
+
|
|
33
|
+
### On every session start, run:
|
|
34
|
+
agentrem check --type time,session --budget 800
|
|
35
|
+
|
|
36
|
+
### When the user says "remind me", "don't forget", "follow up", or "next time":
|
|
37
|
+
agentrem add "<content>" --due "<when>" --priority <1-5> --tags "<tags>"
|
|
38
|
+
|
|
39
|
+
### Key commands:
|
|
40
|
+
- `agentrem add` — create a reminder
|
|
41
|
+
- `agentrem check` — see what's triggered/due
|
|
42
|
+
- `agentrem list` — list all active reminders
|
|
43
|
+
- `agentrem search <query>` — full-text search
|
|
44
|
+
- `agentrem complete <id>` — mark done
|
|
45
|
+
- `agentrem snooze <id> --for 2h` — snooze
|
|
46
|
+
- `agentrem --help` — full reference
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**3. That's it.** Next time you tell Claude Code "remind me to deploy tomorrow at 9am", it runs:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
agentrem add "Deploy to production" --due "tomorrow 9am" --priority 2
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Next session, `agentrem check` surfaces it automatically.
|
|
56
|
+
|
|
57
|
+
### Claude Desktop (MCP)
|
|
58
|
+
|
|
59
|
+
For Claude Desktop (the chat app), use the MCP server:
|
|
60
|
+
|
|
61
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
19
62
|
|
|
20
63
|
```json
|
|
21
64
|
{
|
|
@@ -28,7 +71,7 @@ Add to your Claude Desktop MCP config (`~/Library/Application Support/Claude/cla
|
|
|
28
71
|
}
|
|
29
72
|
```
|
|
30
73
|
|
|
31
|
-
Or
|
|
74
|
+
Or without global install:
|
|
32
75
|
|
|
33
76
|
```json
|
|
34
77
|
{
|
|
@@ -45,13 +88,7 @@ Restart Claude Desktop. You'll see agentrem tools available (add, check, list, s
|
|
|
45
88
|
|
|
46
89
|
### Cursor / Windsurf / Any MCP Client
|
|
47
90
|
|
|
48
|
-
Same pattern — point your
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
agentrem-mcp
|
|
52
|
-
# or
|
|
53
|
-
npx agentrem mcp
|
|
54
|
-
```
|
|
91
|
+
Same MCP pattern — point your config to `agentrem-mcp` or `npx agentrem mcp`.
|
|
55
92
|
|
|
56
93
|
### OpenClaw
|
|
57
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentrem",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Structured reminders CLI for AI agents with MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,16 @@
|
|
|
23
23
|
"mcp": "node dist/mcp/server.js",
|
|
24
24
|
"prepublishOnly": "npm run build && npm test"
|
|
25
25
|
},
|
|
26
|
-
"keywords": [
|
|
26
|
+
"keywords": [
|
|
27
|
+
"reminders",
|
|
28
|
+
"ai-agent",
|
|
29
|
+
"cli",
|
|
30
|
+
"mcp",
|
|
31
|
+
"sqlite",
|
|
32
|
+
"llm",
|
|
33
|
+
"agent-tools",
|
|
34
|
+
"model-context-protocol"
|
|
35
|
+
],
|
|
27
36
|
"author": "Dushyant Garg",
|
|
28
37
|
"repository": {
|
|
29
38
|
"type": "git",
|