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.
Files changed (62) hide show
  1. {hyperloop-0.6.0 → hyperloop-0.6.1}/CHANGELOG.md +3 -0
  2. {hyperloop-0.6.0 → hyperloop-0.6.1}/PKG-INFO +1 -1
  3. {hyperloop-0.6.0 → hyperloop-0.6.1}/pyproject.toml +1 -1
  4. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/loop.py +3 -3
  5. {hyperloop-0.6.0 → hyperloop-0.6.1}/.github/workflows/ci.yaml +0 -0
  6. {hyperloop-0.6.0 → hyperloop-0.6.1}/.github/workflows/release.yaml +0 -0
  7. {hyperloop-0.6.0 → hyperloop-0.6.1}/.gitignore +0 -0
  8. {hyperloop-0.6.0 → hyperloop-0.6.1}/.pre-commit-config.yaml +0 -0
  9. {hyperloop-0.6.0 → hyperloop-0.6.1}/.python-version +0 -0
  10. {hyperloop-0.6.0 → hyperloop-0.6.1}/CLAUDE.md +0 -0
  11. {hyperloop-0.6.0 → hyperloop-0.6.1}/README.md +0 -0
  12. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/implementer.yaml +0 -0
  13. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/kustomization.yaml +0 -0
  14. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/pm.yaml +0 -0
  15. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/process-improver.yaml +0 -0
  16. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/process.yaml +0 -0
  17. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/rebase-resolver.yaml +0 -0
  18. {hyperloop-0.6.0 → hyperloop-0.6.1}/base/verifier.yaml +0 -0
  19. {hyperloop-0.6.0 → hyperloop-0.6.1}/specs/spec.md +0 -0
  20. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/__init__.py +0 -0
  21. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/__main__.py +0 -0
  22. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/__init__.py +0 -0
  23. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/git_state.py +0 -0
  24. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/local.py +0 -0
  25. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/adapters/serial.py +0 -0
  26. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/cli.py +0 -0
  27. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/compose.py +0 -0
  28. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/config.py +0 -0
  29. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/__init__.py +0 -0
  30. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/decide.py +0 -0
  31. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/deps.py +0 -0
  32. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/model.py +0 -0
  33. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/domain/pipeline.py +0 -0
  34. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/__init__.py +0 -0
  35. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/pr.py +0 -0
  36. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/runtime.py +0 -0
  37. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/serial.py +0 -0
  38. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/ports/state.py +0 -0
  39. {hyperloop-0.6.0 → hyperloop-0.6.1}/src/hyperloop/pr.py +0 -0
  40. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/__init__.py +0 -0
  41. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/__init__.py +0 -0
  42. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/pr.py +0 -0
  43. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/runtime.py +0 -0
  44. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/serial.py +0 -0
  45. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/fakes/state.py +0 -0
  46. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_cli.py +0 -0
  47. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_compose.py +0 -0
  48. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_config.py +0 -0
  49. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_decide.py +0 -0
  50. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_deps.py +0 -0
  51. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_e2e.py +0 -0
  52. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_fakes.py +0 -0
  53. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_git_state.py +0 -0
  54. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_local_runtime.py +0 -0
  55. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_loop.py +0 -0
  56. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_model.py +0 -0
  57. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_pipeline.py +0 -0
  58. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_pr.py +0 -0
  59. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_serial_agents.py +0 -0
  60. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_smoke.py +0 -0
  61. {hyperloop-0.6.0 → hyperloop-0.6.1}/tests/test_state_contract.py +0 -0
  62. {hyperloop-0.6.0 → hyperloop-0.6.1}/uv.lock +0 -0
@@ -2,6 +2,9 @@
2
2
 
3
3
  <!-- version list -->
4
4
 
5
+ ## v0.6.1 (2026-04-15)
6
+
7
+
5
8
  ## v0.6.0 (2026-04-15)
6
9
 
7
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperloop
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: Orchestrator that walks tasks through composable process pipelines using AI agents
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: pyyaml>=6.0.3
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hyperloop"
3
- version = "0.6.0"
3
+ version = "0.6.1"
4
4
  description = "Orchestrator that walks tasks through composable process pipelines using AI agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -547,10 +547,10 @@ class Orchestrator:
547
547
  prompt = self._composer.compose(
548
548
  role="pm",
549
549
  task_id="intake",
550
- spec_ref="specs/",
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="specs/prompts",
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