cloudwright-ai-cli 0.2.7__tar.gz → 0.2.9__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.
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/PKG-INFO +1 -1
- cloudwright_ai_cli-0.2.9/cloudwright_cli/__init__.py +1 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/catalog_cmd.py +3 -1
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/chat.py +1 -2
- cloudwright_ai_cli-0.2.7/cloudwright_cli/__init__.py +0 -1
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/.gitignore +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/CLAUDE.md +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/README.md +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/__main__.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/__init__.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/analyze_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/compare.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/cost.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/design.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/diff.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/drift_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/export.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/import_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/init_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/lint_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/modify_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/policy.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/refresh_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/score_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/validate.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/main.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/project.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/py.typed +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/utils.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/pyproject.toml +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/__init__.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/test_cli.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/test_drift_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/test_init.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/test_modify_cmd.py +0 -0
- {cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/tests/test_project.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudwright-ai-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
4
4
|
Summary: CLI for Cloudwright architecture intelligence
|
|
5
5
|
Project-URL: Homepage, https://github.com/xmpuspus/cloudwright
|
|
6
6
|
Project-URL: Repository, https://github.com/xmpuspus/cloudwright
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.9"
|
{cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/catalog_cmd.py
RENAMED
|
@@ -50,7 +50,9 @@ def catalog_search(
|
|
|
50
50
|
m = re.search(r"(\d+(?:\.\d+)?)\s*(?:gb|gib)\s*(?:memory|ram)?", query, re.IGNORECASE)
|
|
51
51
|
if m:
|
|
52
52
|
parsed_memory = float(m.group(1))
|
|
53
|
-
text_query = re.sub(
|
|
53
|
+
text_query = re.sub(
|
|
54
|
+
r"\d+(?:\.\d+)?\s*(?:gb|gib)\s*(?:memory|ram)?\s*", "", text_query, flags=re.IGNORECASE
|
|
55
|
+
).strip()
|
|
54
56
|
|
|
55
57
|
# Clean up leftover whitespace/empty query
|
|
56
58
|
text_query = text_query.strip() or None
|
|
@@ -43,8 +43,7 @@ def _launch_web() -> None:
|
|
|
43
43
|
import uvicorn
|
|
44
44
|
except ImportError:
|
|
45
45
|
console.print(
|
|
46
|
-
"[red]Error:[/red] cloudwright-web is not installed.\
|
|
47
|
-
"Install it with: pip install 'cloudwright-ai[web]'"
|
|
46
|
+
"[red]Error:[/red] cloudwright-web is not installed.\nInstall it with: pip install 'cloudwright-ai[web]'"
|
|
48
47
|
)
|
|
49
48
|
raise typer.Exit(1)
|
|
50
49
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.7"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/analyze_cmd.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/import_cmd.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/modify_cmd.py
RENAMED
|
File without changes
|
|
File without changes
|
{cloudwright_ai_cli-0.2.7 → cloudwright_ai_cli-0.2.9}/cloudwright_cli/commands/refresh_cmd.py
RENAMED
|
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
|