shardstitch 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.
package/LICENSE.txt ADDED
@@ -0,0 +1,7 @@
1
+ ShardStitch — Proprietary License
2
+
3
+ Copyright (c) 2026 Roshan Dixit. All rights reserved.
4
+
5
+ This placeholder package may be installed and executed. The ShardStitch
6
+ product is licensed separately at https://shardstitch.com. Redistribution
7
+ or modification of the product is prohibited.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # ShardStitch
2
+
3
+ **3:47pm. Mid-refactor. "Rate limit reached."**
4
+
5
+ ShardStitch captures your entire AI coding session — git diff, changed files,
6
+ dependency graph, intent — and stitches it into the next AI tool (Claude,
7
+ Cursor, Codex, Gemini, Windsurf, Aider). 100% local, zero telemetry.
8
+
9
+ This npm package reserves the name; the CLI ships here soon.
10
+
11
+ - Website: https://shardstitch.com
12
+ - GitHub: https://github.com/shardstitch/shardstitch
13
+ - Support: support@shardstitch.com
package/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ console.log("");
3
+ console.log(" ShardStitch — move your AI coding session between tools.");
4
+ console.log(" The full CLI ships here soon.");
5
+ console.log("");
6
+ console.log(" Get the product today: https://shardstitch.com");
7
+ console.log("");
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "shardstitch",
3
+ "version": "0.0.1",
4
+ "description": "ShardStitch — move your AI coding session between Claude, Cursor, Codex & Gemini when rate limits hit. 100% local. This package reserves the name; the CLI ships here soon. Get the product at https://shardstitch.com",
5
+ "homepage": "https://shardstitch.com",
6
+ "bugs": { "url": "https://github.com/shardstitch/shardstitch/issues" },
7
+ "repository": { "type": "git", "url": "git+https://github.com/shardstitch/shardstitch.git" },
8
+ "keywords": ["ai", "claude", "cursor", "codex", "gemini", "context", "handoff", "rate-limit", "developer-tools"],
9
+ "author": "ShardStitch <support@shardstitch.com>",
10
+ "license": "SEE LICENSE IN LICENSE.txt",
11
+ "bin": { "shardstitch": "./cli.js" },
12
+ "files": ["cli.js", "LICENSE.txt", "README.md"]
13
+ }