continuum-code 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.
- {continuum_code-0.2.0 → continuum_code-0.2.1}/PKG-INFO +2 -2
- {continuum_code-0.2.0 → continuum_code-0.2.1}/README.md +1 -1
- {continuum_code-0.2.0 → continuum_code-0.2.1}/pyproject.toml +2 -1
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/__init__.py +1 -1
- continuum_code-0.2.1/src/continuum/__main__.py +5 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/PKG-INFO +2 -2
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/SOURCES.txt +1 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/entry_points.txt +1 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/setup.cfg +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/change_summary.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/cli.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/contracts.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/engine.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/mcp_server.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/data-dbt-airflow/README.md +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/data-dbt-airflow/continuum.yaml +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/node-backend/continuum.yaml +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/python-fastapi/continuum.yaml +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/typescript-monorepo/continuum.yaml +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/recommend.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/scan.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/dependency_links.txt +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/requires.txt +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/top_level.txt +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/tests/test_change_summary.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/tests/test_contracts.py +0 -0
- {continuum_code-0.2.0 → continuum_code-0.2.1}/tests/test_engine.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: continuum-code
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Rule engine so coding agents obey repo rules (block/warn/ask) with clear explanations.
|
|
5
5
|
Author: Continuum
|
|
6
6
|
License-Expression: MIT
|
|
@@ -33,7 +33,7 @@ pip install -e . # from repo
|
|
|
33
33
|
pip install continuum-code
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Requires Python 3.10+.
|
|
36
|
+
Requires Python 3.10+. The CLI is installed as **`continuum`**. If another tool named `continuum` is in your PATH, use **`continuum-code`** instead (e.g. `continuum-code --version`, `continuum-code init --pack data-dbt-airflow`), or run **`python -m continuum`**.
|
|
37
37
|
|
|
38
38
|
### Development on Windows (WSL2)
|
|
39
39
|
|
|
@@ -17,7 +17,7 @@ pip install -e . # from repo
|
|
|
17
17
|
pip install continuum-code
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
Requires Python 3.10+.
|
|
20
|
+
Requires Python 3.10+. The CLI is installed as **`continuum`**. If another tool named `continuum` is in your PATH, use **`continuum-code`** instead (e.g. `continuum-code --version`, `continuum-code init --pack data-dbt-airflow`), or run **`python -m continuum`**.
|
|
21
21
|
|
|
22
22
|
### Development on Windows (WSL2)
|
|
23
23
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "continuum-code"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Rule engine so coding agents obey repo rules (block/warn/ask) with clear explanations."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -25,6 +25,7 @@ dev = [
|
|
|
25
25
|
|
|
26
26
|
[project.scripts]
|
|
27
27
|
continuum = "continuum.cli:main"
|
|
28
|
+
continuum-code = "continuum.cli:main"
|
|
28
29
|
|
|
29
30
|
[tool.setuptools.packages.find]
|
|
30
31
|
where = ["src"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: continuum-code
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Rule engine so coding agents obey repo rules (block/warn/ask) with clear explanations.
|
|
5
5
|
Author: Continuum
|
|
6
6
|
License-Expression: MIT
|
|
@@ -33,7 +33,7 @@ pip install -e . # from repo
|
|
|
33
33
|
pip install continuum-code
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Requires Python 3.10+.
|
|
36
|
+
Requires Python 3.10+. The CLI is installed as **`continuum`**. If another tool named `continuum` is in your PATH, use **`continuum-code`** instead (e.g. `continuum-code --version`, `continuum-code init --pack data-dbt-airflow`), or run **`python -m continuum`**.
|
|
37
37
|
|
|
38
38
|
### Development on Windows (WSL2)
|
|
39
39
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/data-dbt-airflow/README.md
RENAMED
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/data-dbt-airflow/continuum.yaml
RENAMED
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/node-backend/continuum.yaml
RENAMED
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/python-fastapi/continuum.yaml
RENAMED
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum/packs/typescript-monorepo/continuum.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{continuum_code-0.2.0 → continuum_code-0.2.1}/src/continuum_code.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|