ctx-switch 2.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,59 @@
1
+ {
2
+ "name": "ctx-switch",
3
+ "version": "2.0.0",
4
+ "description": "Switch context between AI coding agents — extract sessions from Claude Code, Codex, or OpenCode and generate handoff prompts",
5
+ "type": "module",
6
+ "main": "./dist/index.mjs",
7
+ "exports": "./dist/index.mjs",
8
+ "bin": {
9
+ "ctx-switch": "./dist/index.mjs",
10
+ "cc-continue": "./dist/index.mjs"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "LICENSE",
15
+ "README.md",
16
+ "CONTRIBUTING.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "node ./scripts/build.mjs",
20
+ "typecheck": "tsc --noEmit",
21
+ "test": "npm run typecheck && node --import tsx --test test/**/*.test.ts",
22
+ "smoke:help": "npm run build --silent && node dist/index.mjs --help",
23
+ "smoke:doctor": "npm run build --silent && node dist/index.mjs doctor",
24
+ "prepack": "npm run build"
25
+ },
26
+ "keywords": [
27
+ "ctx-switch",
28
+ "claude-code",
29
+ "claude",
30
+ "codex",
31
+ "opencode",
32
+ "ai",
33
+ "cli",
34
+ "continuation",
35
+ "handoff",
36
+ "context-switch",
37
+ "openrouter",
38
+ "agent"
39
+ ],
40
+ "author": "Harshit",
41
+ "license": "MIT",
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/C-W-D-Harshit/cc-continue/issues"
47
+ },
48
+ "homepage": "https://github.com/C-W-D-Harshit/cc-continue#readme",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/C-W-D-Harshit/cc-continue"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^24.6.0",
55
+ "esbuild": "^0.25.9",
56
+ "tsx": "^4.20.5",
57
+ "typescript": "^5.9.2"
58
+ }
59
+ }