refactorai-cli 0.2.19__tar.gz → 0.2.20__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.
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/PKG-INFO +1 -1
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/pyproject.toml +1 -1
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/__init__.py +1 -1
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/run_cmds.py +16 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/PKG-INFO +1 -1
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/README.md +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/auth.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/client.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/__init__.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/auth_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/engine_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/model_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/rules_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/runtime_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/runtime_proxy_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/setup_cmds.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/control_plane.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/credentials.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/local_constitution.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/local_engine_runtime.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/local_paths.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/main.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/model_policy.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/runtime_manager.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/settings.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/setup_flow.py +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/SOURCES.txt +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/dependency_links.txt +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/entry_points.txt +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/requires.txt +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/top_level.txt +0 -0
- {refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/setup.cfg +0 -0
|
@@ -1682,6 +1682,14 @@ def review(
|
|
|
1682
1682
|
)
|
|
1683
1683
|
_apply_compliance_gate_to_artifact(artifact)
|
|
1684
1684
|
run_store.write_artifact(artifact, target=target, status="completed")
|
|
1685
|
+
if compliance_frameworks:
|
|
1686
|
+
summary = dict(getattr(artifact, "compliance_summary", {}) or {})
|
|
1687
|
+
console.print(
|
|
1688
|
+
"[dim]review: compliance projection "
|
|
1689
|
+
f"projected={int(summary.get('projected_count', 0) or 0)} "
|
|
1690
|
+
f"blocked={int(summary.get('blocked_count', 0) or 0)} "
|
|
1691
|
+
f"warned={int(summary.get('warned_count', 0) or 0)}[/dim]"
|
|
1692
|
+
)
|
|
1685
1693
|
if compliance_frameworks:
|
|
1686
1694
|
artifact.notes.append(
|
|
1687
1695
|
"Compliance selection: frameworks="
|
|
@@ -1875,6 +1883,14 @@ def code(
|
|
|
1875
1883
|
artifact=review_artifact,
|
|
1876
1884
|
)
|
|
1877
1885
|
_apply_compliance_gate_to_artifact(review_artifact)
|
|
1886
|
+
if compliance_frameworks:
|
|
1887
|
+
summary = dict(getattr(review_artifact, "compliance_summary", {}) or {})
|
|
1888
|
+
console.print(
|
|
1889
|
+
"[dim]review: compliance projection "
|
|
1890
|
+
f"projected={int(summary.get('projected_count', 0) or 0)} "
|
|
1891
|
+
f"blocked={int(summary.get('blocked_count', 0) or 0)} "
|
|
1892
|
+
f"warned={int(summary.get('warned_count', 0) or 0)}[/dim]"
|
|
1893
|
+
)
|
|
1878
1894
|
if compliance_frameworks:
|
|
1879
1895
|
review_artifact.notes.append(
|
|
1880
1896
|
"Compliance selection: frameworks="
|
|
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
|
{refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli/commands/runtime_proxy_cmds.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
|
{refactorai_cli-0.2.19 → refactorai_cli-0.2.20}/refactorai_cli.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|