hyperloop 0.6.0__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.
- {hyperloop-0.6.0 → hyperloop-0.7.0}/.gitignore +1 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/.pre-commit-config.yaml +1 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/CHANGELOG.md +11 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/PKG-INFO +3 -1
- {hyperloop-0.6.0 → hyperloop-0.7.0}/pyproject.toml +3 -1
- hyperloop-0.7.0/specs/observability.md +855 -0
- hyperloop-0.7.0/specs/prompts/checklist.md +12 -0
- hyperloop-0.7.0/specs/prompts/checks/check_result_file.sh +42 -0
- hyperloop-0.7.0/specs/prompts/rules.md +21 -0
- hyperloop-0.7.0/specs/tasks/task-001.md +93 -0
- hyperloop-0.7.0/specs/tasks/task-002.md +81 -0
- hyperloop-0.7.0/specs/tasks/task-003.md +54 -0
- hyperloop-0.7.0/specs/tasks/task-004.md +86 -0
- hyperloop-0.7.0/specs/tasks/task-005.md +80 -0
- hyperloop-0.7.0/specs/tasks/task-006.md +70 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/adapters/git_state.py +17 -3
- hyperloop-0.7.0/src/hyperloop/adapters/matrix_probe.py +264 -0
- hyperloop-0.7.0/src/hyperloop/adapters/probe.py +140 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/adapters/serial.py +3 -2
- hyperloop-0.7.0/src/hyperloop/adapters/structlog_probe.py +122 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/cli.py +71 -34
- hyperloop-0.7.0/src/hyperloop/compose.py +488 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/config.py +63 -1
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/domain/model.py +32 -0
- hyperloop-0.7.0/src/hyperloop/logging.py +35 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/loop.py +331 -75
- hyperloop-0.7.0/src/hyperloop/ports/probe.py +263 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/ports/state.py +4 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/pr.py +3 -2
- hyperloop-0.7.0/tests/fakes/probe.py +88 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/fakes/state.py +15 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_cli.py +7 -4
- hyperloop-0.7.0/tests/test_compose.py +622 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_e2e.py +2 -2
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_git_state.py +3 -3
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_local_runtime.py +1 -1
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_loop.py +288 -39
- hyperloop-0.7.0/tests/test_matrix_probe.py +346 -0
- hyperloop-0.7.0/tests/test_probe.py +139 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_state_contract.py +2 -2
- hyperloop-0.7.0/tests/test_structlog_probe.py +176 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/uv.lock +82 -1
- hyperloop-0.6.0/src/hyperloop/compose.py +0 -288
- hyperloop-0.6.0/tests/test_compose.py +0 -392
- {hyperloop-0.6.0 → hyperloop-0.7.0}/.github/workflows/ci.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/.github/workflows/release.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/.python-version +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/CLAUDE.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/README.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/implementer.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/kustomization.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/pm.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/process-improver.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/process.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/rebase-resolver.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/base/verifier.yaml +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/specs/spec.md +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/__main__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/adapters/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/adapters/local.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/domain/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/domain/decide.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/domain/deps.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/domain/pipeline.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/ports/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/ports/pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/ports/runtime.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/src/hyperloop/ports/serial.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/fakes/__init__.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/fakes/pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/fakes/runtime.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/fakes/serial.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_config.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_decide.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_deps.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_fakes.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_model.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_pipeline.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_pr.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_serial_agents.py +0 -0
- {hyperloop-0.6.0 → hyperloop-0.7.0}/tests/test_smoke.py +0 -0
|
@@ -2,6 +2,17 @@
|
|
|
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
|
+
|
|
13
|
+
## v0.6.1 (2026-04-15)
|
|
14
|
+
|
|
15
|
+
|
|
5
16
|
## v0.6.0 (2026-04-15)
|
|
6
17
|
|
|
7
18
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperloop
|
|
3
|
-
Version: 0.
|
|
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.
|
|
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]
|