augint-shell 0.98.0__tar.gz → 0.98.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.
- {augint_shell-0.98.0 → augint_shell-0.98.2}/PKG-INFO +1 -1
- {augint_shell-0.98.0 → augint_shell-0.98.2}/pyproject.toml +1 -1
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/__init__.py +1 -1
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/commands/tools.py +4 -2
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/container.py +15 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/README.md +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/assets/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/assets/comfyui/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/assets/comfyui/provision.sh +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/__main__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/commands/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/commands/llm.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/cli/commands/manage.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/config.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/defaults.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/exceptions.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/gpu.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/interactive.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/local_chrome.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/models.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/scaffold.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/selector.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/ai-shell.toml +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/ai-shell.yaml +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/augint-ai-shell.example.yaml +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/augint-env.example +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/claude/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/claude/settings.json +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/codex/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/n8n/workflows/chat_with_ollama.json +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/n8n/workflows/text_to_speech.json +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/n8n/workflows/transcribe_audio.json +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/opencode/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/pi/__init__.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/pi/models.json +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/tmux.py +0 -0
- {augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/typeahead.py +0 -0
|
@@ -1458,12 +1458,14 @@ def serve(ctx, port: int, skip_root: bool, open_browser: bool) -> None:
|
|
|
1458
1458
|
repos.append(cwd)
|
|
1459
1459
|
repos.extend(_find_git_repos(cwd))
|
|
1460
1460
|
|
|
1461
|
-
container_root =
|
|
1461
|
+
container_root = f"/root/projects/{config.project_name}"
|
|
1462
1462
|
attach_url = f"http://localhost:{port}"
|
|
1463
1463
|
|
|
1464
1464
|
for repo in repos:
|
|
1465
1465
|
rel = repo.relative_to(cwd) if repo != cwd else Path(".")
|
|
1466
|
-
container_path =
|
|
1466
|
+
container_path = (
|
|
1467
|
+
f"{container_root}/{rel.as_posix()}" if rel != Path(".") else container_root
|
|
1468
|
+
)
|
|
1467
1469
|
manager.exec_detached(
|
|
1468
1470
|
name,
|
|
1469
1471
|
["opencode", "attach", attach_url],
|
|
@@ -344,6 +344,21 @@ class ContainerManager:
|
|
|
344
344
|
detach=True,
|
|
345
345
|
)
|
|
346
346
|
logger.info("Container created: %s", name)
|
|
347
|
+
|
|
348
|
+
subprocess.run(
|
|
349
|
+
[
|
|
350
|
+
"docker",
|
|
351
|
+
"exec",
|
|
352
|
+
name,
|
|
353
|
+
"sh",
|
|
354
|
+
"-c",
|
|
355
|
+
"echo 'export PATH=\"/root/.local/bin:/root/.opencode/bin:$PATH\"'"
|
|
356
|
+
" > /etc/profile.d/ai-shell-path.sh",
|
|
357
|
+
],
|
|
358
|
+
check=False,
|
|
359
|
+
capture_output=True,
|
|
360
|
+
)
|
|
361
|
+
|
|
347
362
|
return container
|
|
348
363
|
|
|
349
364
|
def exec_interactive(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/augint-ai-shell.example.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{augint_shell-0.98.0 → augint_shell-0.98.2}/src/ai_shell/templates/n8n/workflows/text_to_speech.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|