clearctx 3.0.0

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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "clearctx",
3
+ "version": "3.0.0",
4
+ "description": "Multi-session orchestrator for Claude Code CLI — spawn, control, pause, resume, and send multiple inputs to Claude Code sessions programmatically",
5
+ "main": "src/index.js",
6
+ "bin": {
7
+ "clearctx": "bin/cli.js",
8
+ "ctx-mcp": "bin/mcp.js",
9
+ "ctx-setup": "bin/setup.js",
10
+ "ctx-continuity-hook": "bin/continuity-hook.js"
11
+ },
12
+ "scripts": {
13
+ "test": "node test-stream.js",
14
+ "postinstall": "node bin/setup.js --postinstall-hint"
15
+ },
16
+ "keywords": [
17
+ "claude",
18
+ "claude-code",
19
+ "anthropic",
20
+ "session-manager",
21
+ "multi-session",
22
+ "orchestrator",
23
+ "ai-agents",
24
+ "multi-agent",
25
+ "agent-coordination",
26
+ "mcp",
27
+ "model-context-protocol",
28
+ "ai",
29
+ "automation",
30
+ "cli",
31
+ "parallel-tasks",
32
+ "workflow-automation"
33
+ ],
34
+ "author": "",
35
+ "license": "MIT",
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "files": [
40
+ "src/",
41
+ "bin/",
42
+ "README.md",
43
+ "CHANGELOG.md",
44
+ "STRATEGY.md",
45
+ "LICENSE"
46
+ ],
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/RevanthThota55/clearctx.git"
50
+ },
51
+ "homepage": "https://github.com/RevanthThota55/clearctx",
52
+ "dependencies": {
53
+ "@clack/prompts": "^0.9.1",
54
+ "picocolors": "^1.1.1"
55
+ }
56
+ }