alpiecode 1.0.0__tar.gz → 1.0.2__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.
Files changed (36) hide show
  1. {alpiecode-1.0.0 → alpiecode-1.0.2}/PKG-INFO +1 -1
  2. {alpiecode-1.0.0 → alpiecode-1.0.2}/pyproject.toml +1 -1
  3. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/PKG-INFO +1 -1
  4. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/extension/alpiecode.vsix +0 -0
  5. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/vscode_installer.py +11 -1
  6. {alpiecode-1.0.0 → alpiecode-1.0.2}/README.md +0 -0
  7. {alpiecode-1.0.0 → alpiecode-1.0.2}/setup.cfg +0 -0
  8. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/SOURCES.txt +0 -0
  9. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/dependency_links.txt +0 -0
  10. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/entry_points.txt +0 -0
  11. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/requires.txt +0 -0
  12. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/alpiecode.egg-info/top_level.txt +0 -0
  13. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/__init__.py +0 -0
  14. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/agent.py +0 -0
  15. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/backends/__init__.py +0 -0
  16. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/backends/base.py +0 -0
  17. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/backends/local_backend.py +0 -0
  18. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/backends/openai_backend.py +0 -0
  19. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/cache.py +0 -0
  20. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/cli.py +0 -0
  21. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/client.py +0 -0
  22. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/compaction.py +0 -0
  23. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/config.py +0 -0
  24. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/context.py +0 -0
  25. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/executor.py +0 -0
  26. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/github.py +0 -0
  27. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/guardian.py +0 -0
  28. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/local_model.py +0 -0
  29. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/media.py +0 -0
  30. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/memory.py +0 -0
  31. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/orchestrator.py +0 -0
  32. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/prompt.py +0 -0
  33. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/server.py +0 -0
  34. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/session.py +0 -0
  35. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/tools.py +0 -0
  36. {alpiecode-1.0.0 → alpiecode-1.0.2}/src/codeagent/updater.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpiecode
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM
5
5
  Requires-Python: >=3.9
6
6
  Requires-Dist: huggingface_hub>=0.20.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "alpiecode"
7
- version = "1.0.0"
7
+ version = "1.0.2"
8
8
  description = "AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM"
9
9
  requires-python = ">=3.9"
10
10
  dependencies = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpiecode
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM
5
5
  Requires-Python: >=3.9
6
6
  Requires-Dist: huggingface_hub>=0.20.0
@@ -104,8 +104,18 @@ def ensure_vscode_extension(auto_confirm: bool = False, quiet: bool = False) ->
104
104
 
105
105
  print(f"📦 Installing AlpieCode VS Code extension ({vsix_path.name})...")
106
106
  try:
107
+ target_arg = str(vsix_path)
108
+ # If running in WSL and code_bin points to Windows binary, convert path to Windows format
109
+ if os.path.exists("/proc/version") and shutil.which("wslpath") and ("/mnt/" in code_bin or code_bin.endswith(".cmd") or code_bin.endswith(".exe")):
110
+ try:
111
+ win_path = subprocess.check_output(["wslpath", "-w", str(vsix_path)], text=True).strip()
112
+ if win_path:
113
+ target_arg = win_path
114
+ except Exception:
115
+ pass
116
+
107
117
  res = subprocess.run(
108
- [code_bin, "--install-extension", str(vsix_path), "--force"],
118
+ [code_bin, "--install-extension", target_arg, "--force"],
109
119
  capture_output=True,
110
120
  text=True,
111
121
  timeout=30,
File without changes
File without changes