Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
Latest commit
38 lines (38 loc) · 1.29 KB
/
Copy pathplugin.json
File metadata and controls
38 lines (38 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "agentone-token-compression",
"displayName": "AgentOne Token Compression",
"version": "1.1.16",
"description": "AgentOne Token Compression by Iterate.ai. Automatic token compression for Claude Code (terminal CLI + IDE) via hooks, plus on-demand compression for Claude Desktop via a bundled MCP server. Reduces token usage 40–90% on verbose/repetitive tool output (less on prose) by compressing prompts, tool outputs, and file reads with mask-union protection for API keys, UUIDs, and high-entropy content. Part of the AgentOne platform family alongside AgentWatch.",
"author": {
"name": "Iterate.ai",
"url": "https://iterate.ai"
},
"homepage": "https://iterate.ai/agentone",
"repository": "https://github.com/IterateAI/compression",
"license": "LicenseRef-Iterate-AgentOne",
"keywords": [
"agentone",
"iterate.ai",
"claude-code",
"claude-desktop",
"claude-cli",
"token-optimization",
"compression",
"cost-savings",
"agentwatch",
"context-management",
"semantic-cache",
"mcp",
"model-context-protocol"
],
"commands": "./commands/",
"skills": "./skills/",
"mcpServers": {
"agentone-token-compression": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/dist/mcp-server/index.js"
]
}
}
}