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.
- package/README.md +11 -7
- 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
|
-
|
|
23
|
+
Done. Start a new session in any IDE. AgentCache is already running.
|
|
24
24
|
|
|
25
|
-
|
|
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
|
|
97
|
-
|
|
98
|
-
|
|
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
|