agentcache 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.
Files changed (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,9 +20,9 @@ AgentCache fixes this. It's a persistent knowledge layer that:
20
20
  npm install -g agentcache
21
21
  ```
22
22
 
23
- That's it. No `init`, no per-project setup, no config files.
23
+ Done. Start a new session in any IDE. AgentCache is already running.
24
24
 
25
- On install, AgentCache automatically:
25
+ No `init`. No `setup`. No config. No second command. The install itself:
26
26
  1. Creates `~/.loop/loop.db` (your knowledge store)
27
27
  2. Detects installed IDEs (Claude Code, Cursor, Roo Code, Windsurf, Continue, Codex)
28
28
  3. Registers itself as an MCP server in each
@@ -90,12 +90,16 @@ AgentCache exposes 8 tools via the Model Context Protocol:
90
90
  ## CLI Commands
91
91
 
92
92
  ```bash
93
- agentcache setup # Re-detect IDEs and register (runs automatically on install)
94
- agentcache serve # Start MCP server (IDEs spawn this automatically)
95
93
  agentcache status # Show knowledge stats for current project
96
- agentcache compile-session # Queue transcript for compilation (Stop hook)
97
- agentcache discover # Discover uncompiled transcripts (SessionStart hook)
98
- agentcache enforce # Policy enforcement (PreToolUse hook)
94
+ agentcache setup # Re-register with IDEs (only if postinstall failed)
95
+ ```
96
+
97
+ Internal commands (called by hooks automatically, never by users):
98
+ ```bash
99
+ agentcache serve # MCP server (IDEs spawn this)
100
+ agentcache compile-session # Stop hook
101
+ agentcache discover # SessionStart hook
102
+ agentcache enforce # PreToolUse hook
99
103
  ```
100
104
 
101
105
  ## Design Principles
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentcache",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Knowledge cache for AI agents — learns how you work, remembers across sessions, works everywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",