shardstitch 0.0.1__tar.gz
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.
- shardstitch-0.0.1/PKG-INFO +30 -0
- shardstitch-0.0.1/README.md +13 -0
- shardstitch-0.0.1/pyproject.toml +30 -0
- shardstitch-0.0.1/setup.cfg +4 -0
- shardstitch-0.0.1/shardstitch/__init__.py +12 -0
- shardstitch-0.0.1/shardstitch.egg-info/PKG-INFO +30 -0
- shardstitch-0.0.1/shardstitch.egg-info/SOURCES.txt +8 -0
- shardstitch-0.0.1/shardstitch.egg-info/dependency_links.txt +1 -0
- shardstitch-0.0.1/shardstitch.egg-info/entry_points.txt +2 -0
- shardstitch-0.0.1/shardstitch.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shardstitch
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ShardStitch — move your AI coding session between Claude, Cursor, Codex & Gemini when rate limits hit. 100% local. Name reservation; CLI ships here soon. https://shardstitch.com
|
|
5
|
+
Author-email: ShardStitch <support@shardstitch.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://shardstitch.com
|
|
8
|
+
Project-URL: Repository, https://github.com/shardstitch/shardstitch
|
|
9
|
+
Project-URL: Issues, https://github.com/shardstitch/shardstitch/issues
|
|
10
|
+
Keywords: ai,claude,cursor,codex,gemini,context,handoff,rate-limit
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: Other/Proprietary License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# ShardStitch
|
|
19
|
+
|
|
20
|
+
**3:47pm. Mid-refactor. "Rate limit reached."**
|
|
21
|
+
|
|
22
|
+
ShardStitch captures your entire AI coding session — git diff, changed files,
|
|
23
|
+
dependency graph, intent — and stitches it into the next AI tool (Claude,
|
|
24
|
+
Cursor, Codex, Gemini, Windsurf, Aider). 100% local, zero telemetry.
|
|
25
|
+
|
|
26
|
+
This package reserves the name; the CLI ships here soon.
|
|
27
|
+
|
|
28
|
+
- Website: https://shardstitch.com
|
|
29
|
+
- GitHub: https://github.com/shardstitch/shardstitch
|
|
30
|
+
- Support: support@shardstitch.com
|
|
@@ -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 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
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "shardstitch"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "ShardStitch — move your AI coding session between Claude, Cursor, Codex & Gemini when rate limits hit. 100% local. Name reservation; CLI ships here soon. https://shardstitch.com"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "ShardStitch", email = "support@shardstitch.com" }]
|
|
13
|
+
keywords = ["ai", "claude", "cursor", "codex", "gemini", "context", "handoff", "rate-limit"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: Other/Proprietary License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://shardstitch.com"
|
|
23
|
+
Repository = "https://github.com/shardstitch/shardstitch"
|
|
24
|
+
Issues = "https://github.com/shardstitch/shardstitch/issues"
|
|
25
|
+
|
|
26
|
+
[project.scripts]
|
|
27
|
+
shardstitch = "shardstitch:main"
|
|
28
|
+
|
|
29
|
+
[tool.setuptools]
|
|
30
|
+
packages = ["shardstitch"]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""ShardStitch name reservation. The product lives at https://shardstitch.com"""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.0.1"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main() -> None:
|
|
7
|
+
print()
|
|
8
|
+
print(" ShardStitch - move your AI coding session between tools.")
|
|
9
|
+
print(" The full CLI ships here soon.")
|
|
10
|
+
print()
|
|
11
|
+
print(" Get the product today: https://shardstitch.com")
|
|
12
|
+
print()
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shardstitch
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ShardStitch — move your AI coding session between Claude, Cursor, Codex & Gemini when rate limits hit. 100% local. Name reservation; CLI ships here soon. https://shardstitch.com
|
|
5
|
+
Author-email: ShardStitch <support@shardstitch.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://shardstitch.com
|
|
8
|
+
Project-URL: Repository, https://github.com/shardstitch/shardstitch
|
|
9
|
+
Project-URL: Issues, https://github.com/shardstitch/shardstitch/issues
|
|
10
|
+
Keywords: ai,claude,cursor,codex,gemini,context,handoff,rate-limit
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: Other/Proprietary License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# ShardStitch
|
|
19
|
+
|
|
20
|
+
**3:47pm. Mid-refactor. "Rate limit reached."**
|
|
21
|
+
|
|
22
|
+
ShardStitch captures your entire AI coding session — git diff, changed files,
|
|
23
|
+
dependency graph, intent — and stitches it into the next AI tool (Claude,
|
|
24
|
+
Cursor, Codex, Gemini, Windsurf, Aider). 100% local, zero telemetry.
|
|
25
|
+
|
|
26
|
+
This package reserves the name; the CLI ships here soon.
|
|
27
|
+
|
|
28
|
+
- Website: https://shardstitch.com
|
|
29
|
+
- GitHub: https://github.com/shardstitch/shardstitch
|
|
30
|
+
- Support: support@shardstitch.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
shardstitch
|