codedthemes-cli 0.1.14__tar.gz → 0.1.15__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.
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/PKG-INFO +1 -1
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/cli.py +8 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/PKG-INFO +1 -1
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/pyproject.toml +1 -1
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/README.md +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/__init__.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/config.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/mcp_client.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/patch_utils.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/repo_utils.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes/sync_manager.py +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/SOURCES.txt +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/dependency_links.txt +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/entry_points.txt +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/requires.txt +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/top_level.txt +0 -0
- {codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/setup.cfg +0 -0
|
@@ -151,6 +151,14 @@ def handle_init():
|
|
|
151
151
|
|
|
152
152
|
repo_abs_path = os.path.abspath(repo_root)
|
|
153
153
|
repo_key = repo_abs_path.lower().replace(os.sep, "/")
|
|
154
|
+
|
|
155
|
+
# Check if already initialized to avoid redundant uploads
|
|
156
|
+
config = load_config()
|
|
157
|
+
existing_ws_id = config.get("workspaces", {}).get(repo_key)
|
|
158
|
+
if existing_ws_id:
|
|
159
|
+
# Fast check: exists?
|
|
160
|
+
pass # We could call a /verify endpoint here, but for now let's just proceed with upload as "sync"
|
|
161
|
+
|
|
154
162
|
print("📦 Zipping and uploading repository (this may take a moment)...")
|
|
155
163
|
upload_result = client.upload_workspace(repo_abs_path, user_email)
|
|
156
164
|
workspace_id = upload_result.get("workspace_id")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedthemes_cli-0.1.14 → codedthemes_cli-0.1.15}/codedthemes_cli.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|