ctx-switch 2.0.3 → 2.0.4

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/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -1828,7 +1828,7 @@ async function promptForSource() {
1828
1828
  }
1829
1829
  async function main(argv = process.argv.slice(2)) {
1830
1830
  const options = parseArgs(argv);
1831
- const pkgInfo = { name: "ctx-switch", version: "2.0.3" };
1831
+ const pkgInfo = { name: "ctx-switch", version: "2.0.4" };
1832
1832
  const ui = createTheme(process.stderr);
1833
1833
  if (options.help) {
1834
1834
  process.stdout.write(`${getHelpText(pkgInfo)}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ctx-switch",
3
- "version": "2.0.3",
4
- "description": "Switch context between AI coding agents extract sessions from Claude Code, Codex, or OpenCode and generate handoff prompts",
3
+ "version": "2.0.4",
4
+ "description": "Switch coding agents without losing context. Generate handoff prompts across Claude Code, Codex, and OpenCode.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
7
7
  "exports": "./dist/index.mjs",