hyperloop 0.6.1__tar.gz → 0.7.0__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 (83) hide show
  1. {hyperloop-0.6.1 → hyperloop-0.7.0}/.gitignore +1 -0
  2. {hyperloop-0.6.1 → hyperloop-0.7.0}/.pre-commit-config.yaml +1 -0
  3. {hyperloop-0.6.1 → hyperloop-0.7.0}/CHANGELOG.md +8 -0
  4. {hyperloop-0.6.1 → hyperloop-0.7.0}/PKG-INFO +3 -1
  5. {hyperloop-0.6.1 → hyperloop-0.7.0}/pyproject.toml +3 -1
  6. hyperloop-0.7.0/specs/observability.md +855 -0
  7. hyperloop-0.7.0/specs/prompts/checklist.md +12 -0
  8. hyperloop-0.7.0/specs/prompts/checks/check_result_file.sh +42 -0
  9. hyperloop-0.7.0/specs/prompts/rules.md +21 -0
  10. hyperloop-0.7.0/specs/tasks/task-001.md +93 -0
  11. hyperloop-0.7.0/specs/tasks/task-002.md +81 -0
  12. hyperloop-0.7.0/specs/tasks/task-003.md +54 -0
  13. hyperloop-0.7.0/specs/tasks/task-004.md +86 -0
  14. hyperloop-0.7.0/specs/tasks/task-005.md +80 -0
  15. hyperloop-0.7.0/specs/tasks/task-006.md +70 -0
  16. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/adapters/git_state.py +17 -3
  17. hyperloop-0.7.0/src/hyperloop/adapters/matrix_probe.py +264 -0
  18. hyperloop-0.7.0/src/hyperloop/adapters/probe.py +140 -0
  19. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/adapters/serial.py +3 -2
  20. hyperloop-0.7.0/src/hyperloop/adapters/structlog_probe.py +122 -0
  21. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/cli.py +71 -34
  22. hyperloop-0.7.0/src/hyperloop/compose.py +488 -0
  23. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/config.py +63 -1
  24. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/domain/model.py +32 -0
  25. hyperloop-0.7.0/src/hyperloop/logging.py +35 -0
  26. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/loop.py +331 -75
  27. hyperloop-0.7.0/src/hyperloop/ports/probe.py +263 -0
  28. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/ports/state.py +4 -0
  29. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/pr.py +3 -2
  30. hyperloop-0.7.0/tests/fakes/probe.py +88 -0
  31. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/fakes/state.py +15 -0
  32. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_cli.py +7 -4
  33. hyperloop-0.7.0/tests/test_compose.py +622 -0
  34. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_e2e.py +2 -2
  35. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_git_state.py +3 -3
  36. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_local_runtime.py +1 -1
  37. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_loop.py +288 -39
  38. hyperloop-0.7.0/tests/test_matrix_probe.py +346 -0
  39. hyperloop-0.7.0/tests/test_probe.py +139 -0
  40. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_state_contract.py +2 -2
  41. hyperloop-0.7.0/tests/test_structlog_probe.py +176 -0
  42. {hyperloop-0.6.1 → hyperloop-0.7.0}/uv.lock +82 -1
  43. hyperloop-0.6.1/src/hyperloop/compose.py +0 -288
  44. hyperloop-0.6.1/tests/test_compose.py +0 -392
  45. {hyperloop-0.6.1 → hyperloop-0.7.0}/.github/workflows/ci.yaml +0 -0
  46. {hyperloop-0.6.1 → hyperloop-0.7.0}/.github/workflows/release.yaml +0 -0
  47. {hyperloop-0.6.1 → hyperloop-0.7.0}/.python-version +0 -0
  48. {hyperloop-0.6.1 → hyperloop-0.7.0}/CLAUDE.md +0 -0
  49. {hyperloop-0.6.1 → hyperloop-0.7.0}/README.md +0 -0
  50. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/implementer.yaml +0 -0
  51. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/kustomization.yaml +0 -0
  52. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/pm.yaml +0 -0
  53. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/process-improver.yaml +0 -0
  54. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/process.yaml +0 -0
  55. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/rebase-resolver.yaml +0 -0
  56. {hyperloop-0.6.1 → hyperloop-0.7.0}/base/verifier.yaml +0 -0
  57. {hyperloop-0.6.1 → hyperloop-0.7.0}/specs/spec.md +0 -0
  58. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/__init__.py +0 -0
  59. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/__main__.py +0 -0
  60. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/adapters/__init__.py +0 -0
  61. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/adapters/local.py +0 -0
  62. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/domain/__init__.py +0 -0
  63. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/domain/decide.py +0 -0
  64. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/domain/deps.py +0 -0
  65. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/domain/pipeline.py +0 -0
  66. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/ports/__init__.py +0 -0
  67. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/ports/pr.py +0 -0
  68. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/ports/runtime.py +0 -0
  69. {hyperloop-0.6.1 → hyperloop-0.7.0}/src/hyperloop/ports/serial.py +0 -0
  70. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/__init__.py +0 -0
  71. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/fakes/__init__.py +0 -0
  72. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/fakes/pr.py +0 -0
  73. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/fakes/runtime.py +0 -0
  74. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/fakes/serial.py +0 -0
  75. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_config.py +0 -0
  76. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_decide.py +0 -0
  77. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_deps.py +0 -0
  78. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_fakes.py +0 -0
  79. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_model.py +0 -0
  80. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_pipeline.py +0 -0
  81. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_pr.py +0 -0
  82. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_serial_agents.py +0 -0
  83. {hyperloop-0.6.1 → hyperloop-0.7.0}/tests/test_smoke.py +0 -0
@@ -7,3 +7,4 @@ __pycache__/
7
7
  dist/
8
8
  build/
9
9
  .venv/
10
+ worktrees/
@@ -15,3 +15,4 @@ repos:
15
15
  types: [python]
16
16
  pass_filenames: false
17
17
  always_run: true
18
+ stages: [pre-push]
@@ -2,6 +2,14 @@
2
2
 
3
3
  <!-- version list -->
4
4
 
5
+ ## v0.7.0 (2026-04-15)
6
+
7
+ ### Features
8
+
9
+ - **observability**: Complete spec alignment
10
+ ([`510d01a`](https://github.com/jsell-rh/hyperloop/commit/510d01a65e61149b7a618464f9fcecb691c318fe))
11
+
12
+
5
13
  ## v0.6.1 (2026-04-15)
6
14
 
7
15
 
@@ -1,10 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperloop
3
- Version: 0.6.1
3
+ Version: 0.7.0
4
4
  Summary: Orchestrator that walks tasks through composable process pipelines using AI agents
5
5
  Requires-Python: >=3.12
6
+ Requires-Dist: httpx>=0.27
6
7
  Requires-Dist: pyyaml>=6.0.3
7
8
  Requires-Dist: rich>=15.0.0
9
+ Requires-Dist: structlog>=24.0
8
10
  Requires-Dist: typer>=0.24.1
9
11
  Provides-Extra: dev
10
12
  Requires-Dist: pre-commit>=4.0; extra == 'dev'
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hyperloop"
3
- version = "0.6.1"
3
+ version = "0.7.0"
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"
@@ -8,6 +8,8 @@ dependencies = [
8
8
  "pyyaml>=6.0.3",
9
9
  "rich>=15.0.0",
10
10
  "typer>=0.24.1",
11
+ "structlog>=24.0",
12
+ "httpx>=0.27",
11
13
  ]
12
14
 
13
15
  [project.optional-dependencies]