forgexa-cli 1.16.2__tar.gz → 1.16.4__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.
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/PKG-INFO +1 -1
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli/__init__.py +1 -1
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli/daemon.py +4 -3
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/PKG-INFO +1 -1
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/pyproject.toml +1 -1
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/README.md +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli/_build_config.py +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli/main.py +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli/py.typed +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/SOURCES.txt +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/dependency_links.txt +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/entry_points.txt +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/requires.txt +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/forgexa_cli.egg-info/top_level.txt +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/setup.cfg +0 -0
- {forgexa_cli-1.16.2 → forgexa_cli-1.16.4}/tests/test_auth_and_runtime_commands.py +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""forgexa-cli — Forgexa command-line client."""
|
|
2
|
-
__version__ = "1.16.
|
|
2
|
+
__version__ = "1.16.4"
|
|
@@ -523,7 +523,7 @@ except (ImportError, ModuleNotFoundError):
|
|
|
523
523
|
# DAEMON_VERSION is the protocol/logic version of the daemon code.
|
|
524
524
|
# Kept in sync with pyproject.toml version via bump-version.sh.
|
|
525
525
|
# CLIENT_TYPE identifies which packaging/distribution this daemon runs in.
|
|
526
|
-
DAEMON_VERSION = "1.16.
|
|
526
|
+
DAEMON_VERSION = "1.16.4"
|
|
527
527
|
|
|
528
528
|
|
|
529
529
|
def _detect_client_type() -> str:
|
|
@@ -8621,7 +8621,7 @@ class RuntimeDaemon:
|
|
|
8621
8621
|
async def _collect_design_artifacts(
|
|
8622
8622
|
self, workspace_path: Path, task: TaskInfo, result: TaskResult
|
|
8623
8623
|
) -> None:
|
|
8624
|
-
"""Attach design
|
|
8624
|
+
"""Attach the design-phase document as an inline artifact.
|
|
8625
8625
|
|
|
8626
8626
|
Similar to _collect_analysis_artifacts but for the design phase output.
|
|
8627
8627
|
Ensures coding/testing nodes can access design documents even when
|
|
@@ -8634,7 +8634,8 @@ class RuntimeDaemon:
|
|
|
8634
8634
|
base = workspace_path / doc_dir.lstrip("./")
|
|
8635
8635
|
existing_artifact_paths = {a.get("path", "").replace("\\", "/") for a in result.artifacts}
|
|
8636
8636
|
|
|
8637
|
-
|
|
8637
|
+
req_type = str((task.input_data or {}).get("requirement_type", "feature") or "feature")
|
|
8638
|
+
design_path = base / _get_design_output_for_type(req_type)
|
|
8638
8639
|
if not design_path.exists() or design_path.stat().st_size == 0:
|
|
8639
8640
|
return
|
|
8640
8641
|
try:
|
|
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
|