tapout 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.
- tapout-0.0.1/PKG-INFO +16 -0
- tapout-0.0.1/README.md +7 -0
- tapout-0.0.1/pyproject.toml +12 -0
- tapout-0.0.1/src/tapout/__init__.py +1 -0
tapout-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tapout
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Your coding agent tapped out? Tag in the next one - hit a limit in Claude Code and resume exactly where you left off in Codex, Gemini, or Cursor. Under active development.
|
|
5
|
+
Author: Mithun
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# tapout
|
|
11
|
+
|
|
12
|
+
Your coding agent tapped out? Tag in the next one.
|
|
13
|
+
|
|
14
|
+
Hit your Claude Code limit mid-task - `tap codex` and it picks up exactly where you left off. Same task, same plan, same progress. No re-explaining.
|
|
15
|
+
|
|
16
|
+
v0.0.1 is a placeholder - first working release coming soon.
|
tapout-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# tapout
|
|
2
|
+
|
|
3
|
+
Your coding agent tapped out? Tag in the next one.
|
|
4
|
+
|
|
5
|
+
Hit your Claude Code limit mid-task - `tap codex` and it picks up exactly where you left off. Same task, same plan, same progress. No re-explaining.
|
|
6
|
+
|
|
7
|
+
v0.0.1 is a placeholder - first working release coming soon.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tapout"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Your coding agent tapped out? Tag in the next one - hit a limit in Claude Code and resume exactly where you left off in Codex, Gemini, or Cursor. Under active development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Mithun" }]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|