cassian-gate 2.0.0rc1__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.
- cassian_gate-2.0.0rc1/PKG-INFO +12 -0
- cassian_gate-2.0.0rc1/README.md +47 -0
- cassian_gate-2.0.0rc1/pyproject.toml +34 -0
- cassian_gate-2.0.0rc1/setup.cfg +4 -0
- cassian_gate-2.0.0rc1/src/cassian.py +13451 -0
- cassian_gate-2.0.0rc1/src/cassian_artifacts.py +122 -0
- cassian_gate-2.0.0rc1/src/cassian_common.py +209 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/PKG-INFO +12 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/SOURCES.txt +14 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/dependency_links.txt +1 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/entry_points.txt +2 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/requires.txt +7 -0
- cassian_gate-2.0.0rc1/src/cassian_gate.egg-info/top_level.txt +6 -0
- cassian_gate-2.0.0rc1/src/cassian_model.py +2247 -0
- cassian_gate-2.0.0rc1/src/cassian_runtime_container.py +1678 -0
- cassian_gate-2.0.0rc1/src/cassian_tests.py +4058 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cassian-gate
|
|
3
|
+
Version: 2.0.0rc1
|
|
4
|
+
Summary: Deterministic pre-production proof layer for network changes
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Requires-Dist: PyYAML
|
|
7
|
+
Requires-Dist: openai
|
|
8
|
+
Requires-Dist: httpx
|
|
9
|
+
Requires-Dist: pydantic
|
|
10
|
+
Requires-Dist: tqdm
|
|
11
|
+
Requires-Dist: annotated-types
|
|
12
|
+
Requires-Dist: typing-extensions
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Cassian Gate
|
|
2
|
+
|
|
3
|
+
Cassian Gate is a deterministic, evidence-first network change validation gate.
|
|
4
|
+
|
|
5
|
+
It is designed to let engineers validate intended network behavior before production changes are applied, using explicit topologies, tests, scenarios, and authoritative artifacts.
|
|
6
|
+
|
|
7
|
+
Cassian Gate is:
|
|
8
|
+
|
|
9
|
+
- deterministic in authoritative execution semantics
|
|
10
|
+
- artifact-authoritative for machine-consumable results
|
|
11
|
+
- CI-safe and gate-oriented
|
|
12
|
+
- local-first and engineer-friendly
|
|
13
|
+
- optionally AI-assisted in an advisory-only role
|
|
14
|
+
|
|
15
|
+
Cassian Gate is not:
|
|
16
|
+
|
|
17
|
+
- a general lab platform
|
|
18
|
+
- a chaos engine
|
|
19
|
+
- a heuristic validator
|
|
20
|
+
- an AI decision system
|
|
21
|
+
- a scripting engine for validation authority
|
|
22
|
+
|
|
23
|
+
## Start here
|
|
24
|
+
|
|
25
|
+
For the main documentation entry point, see:
|
|
26
|
+
|
|
27
|
+
- [`docs/README.md`](docs/README.md)
|
|
28
|
+
|
|
29
|
+
For a guided first pass, see:
|
|
30
|
+
|
|
31
|
+
- [`docs/quickstart.md`](docs/quickstart.md)
|
|
32
|
+
|
|
33
|
+
For command reference, see:
|
|
34
|
+
|
|
35
|
+
- [`docs/cheatsheet.md`](docs/cheatsheet.md)
|
|
36
|
+
|
|
37
|
+
## Current repo note
|
|
38
|
+
|
|
39
|
+
This cleanup pass is focused on the current repository surface.
|
|
40
|
+
|
|
41
|
+
Packaging and public install-path refinement may be completed in a later pass. Until then, treat the documentation in `docs/` as the authoritative operator-facing surface for current usage.
|
|
42
|
+
|
|
43
|
+
## Project purpose
|
|
44
|
+
|
|
45
|
+
Cassian Gate exists to replace guesswork with proof.
|
|
46
|
+
|
|
47
|
+
It validates behavior through explicit tests, scenarios, and authoritative artifacts so network changes can be checked before they reach production.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cassian-gate"
|
|
7
|
+
version = "2.0.0rc1"
|
|
8
|
+
description = "Deterministic pre-production proof layer for network changes"
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"PyYAML",
|
|
12
|
+
"openai",
|
|
13
|
+
"httpx",
|
|
14
|
+
"pydantic",
|
|
15
|
+
"tqdm",
|
|
16
|
+
"annotated-types",
|
|
17
|
+
"typing-extensions",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.scripts]
|
|
21
|
+
cassian = "cassian:main"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools]
|
|
24
|
+
py-modules = [
|
|
25
|
+
"cassian",
|
|
26
|
+
"cassian_artifacts",
|
|
27
|
+
"cassian_common",
|
|
28
|
+
"cassian_model",
|
|
29
|
+
"cassian_runtime_container",
|
|
30
|
+
"cassian_tests",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.package-dir]
|
|
34
|
+
"" = "src"
|