cosyncing 0.0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +1 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # cosyncing
2
+
3
+ View and drive your CLI coding-agent sessions — OpenCode, Codex, Pi, and Claude Code — from your
4
+ phone or browser, over **your own network**. No mandatory third-party server.
5
+
6
+ This package name is reserved by the author. The packaged `cosyncing` CLI (daily alias: `cosy`)
7
+ will be published here when the first release ships.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('cosyncing: this is a name-reservation placeholder. The packaged CLI (alias: cosy) will be published here.');
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "cosyncing",
3
+ "version": "0.0.1",
4
+ "description": "cosyncing — view and drive your CLI coding-agent sessions (OpenCode, Codex, Pi, Claude Code) from your phone or browser, over your own network. Name reserved; the packaged CLI (alias: cosy) will be published here.",
5
+ "keywords": ["coding-agent", "codex", "claude-code", "opencode", "broker", "remote-control", "sync"],
6
+ "author": "Howard Mei",
7
+ "license": "Apache-2.0",
8
+ "main": "index.js",
9
+ "files": ["index.js", "README.md"]
10
+ }