ordel-cli 0.2.0__tar.gz → 0.2.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.
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/PKG-INFO +3 -3
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/pyproject.toml +3 -3
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/.gitignore +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/LICENSE +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/PRIVACY.md +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/README.md +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/__init__.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/branding.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/capture.cjs +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/capture_extract.cjs +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/cli.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/coverage.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/doctor.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/explore.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/heal_service.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/mcp_server.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/mcp_supervisor.cjs +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/pom.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/py.typed +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/qa_plan.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/record.cjs +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/record.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/runner.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/scenarios.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/session.py +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/session_driver.cjs +0 -0
- {ordel_cli-0.2.0 → ordel_cli-0.2.1}/ordel_cli/store.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ordel-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Ordel free CLI — local QA-automation for individual devs. Drives the deterministic ordel-engine and exposes it to a BYO coding agent over MCP. No account, no DB, no Ordel LLM.
|
|
5
5
|
Project-URL: Homepage, https://ordel.io
|
|
6
6
|
Author: Ordel
|
|
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Topic :: Software Development :: Testing
|
|
15
15
|
Requires-Python: >=3.11
|
|
16
16
|
Requires-Dist: mcp>=1.0
|
|
17
|
-
Requires-Dist: ordel-engine==0.2.
|
|
18
|
-
Requires-Dist: ordel-tools==0.2.
|
|
17
|
+
Requires-Dist: ordel-engine==0.2.1
|
|
18
|
+
Requires-Dist: ordel-tools==0.2.1
|
|
19
19
|
Requires-Dist: typer>=0.12
|
|
20
20
|
Provides-Extra: dev
|
|
21
21
|
Requires-Dist: pytest>=8; extra == 'dev'
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ordel-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Ordel free CLI — local QA-automation for individual devs. Drives the deterministic ordel-engine and exposes it to a BYO coding agent over MCP. No account, no DB, no Ordel LLM."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -22,8 +22,8 @@ classifiers = [
|
|
|
22
22
|
"Topic :: Software Development :: Testing",
|
|
23
23
|
]
|
|
24
24
|
dependencies = [
|
|
25
|
-
"ordel-engine==0.2.
|
|
26
|
-
"ordel-tools==0.2.
|
|
25
|
+
"ordel-engine==0.2.1", # pinned: cli + engine version-locked (see version-sync check)
|
|
26
|
+
"ordel-tools==0.2.1", # pinned: the shared pure-logic QA tools (data in, spec out)
|
|
27
27
|
"mcp>=1.0",
|
|
28
28
|
"typer>=0.12",
|
|
29
29
|
]
|
|
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
|