hyperloop 0.6.0__tar.gz → 0.6.1__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.
- {hyperloop-0.6.0 → hyperloop-0.6.1}/CHANGELOG.md +3 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/PKG-INFO +1 -1
- {hyperloop-0.6.0 → hyperloop-0.6.1}/pyproject.toml +1 -1
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/loop.py +3 -3
- {hyperloop-0.6.0 → hyperloop-0.6.1}/.github/workflows/ci.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/.github/workflows/release.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/.gitignore +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/.pre-commit-config.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/.python-version +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/CLAUDE.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/README.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/implementer.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/kustomization.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/pm.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/process-improver.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/process.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/rebase-resolver.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/base/verifier.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/specs/spec.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/__main__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/git_state.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/local.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/serial.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/cli.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/compose.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/config.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/decide.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/deps.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/model.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/pipeline.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/runtime.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/serial.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/state.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/runtime.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/serial.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/state.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_cli.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_compose.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_config.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_decide.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_deps.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_e2e.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_fakes.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_git_state.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_local_runtime.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_loop.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_model.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_pipeline.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_serial_agents.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_smoke.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_state_contract.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.6.1}/uv.lock +0 -0
|
@@ -547,10 +547,10 @@ class Orchestrator:
|
|
|
547
547
|
prompt = self._composer.compose(
|
|
548
548
|
role="pm",
|
|
549
549
|
task_id="intake",
|
|
550
|
-
spec_ref="
|
|
550
|
+
spec_ref="",
|
|
551
551
|
findings="",
|
|
552
552
|
)
|
|
553
|
-
prompt += f"\n## Specs to Process\n{spec_list}\n"
|
|
553
|
+
prompt += f"\n\n## Specs to Process\n\n{spec_list}\n"
|
|
554
554
|
|
|
555
555
|
success = self._serial_runner.run("pm", prompt)
|
|
556
556
|
if success:
|
|
@@ -574,7 +574,7 @@ class Orchestrator:
|
|
|
574
574
|
prompt = self._composer.compose(
|
|
575
575
|
role="process-improver",
|
|
576
576
|
task_id="process-improvement",
|
|
577
|
-
spec_ref="
|
|
577
|
+
spec_ref="",
|
|
578
578
|
findings=findings_text,
|
|
579
579
|
)
|
|
580
580
|
|
|
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
|
|
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
|
|
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
|