cassian-gate 2.0.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.
- cassian_gate-2.0.0/PKG-INFO +12 -0
- cassian_gate-2.0.0/README.md +65 -0
- cassian_gate-2.0.0/pyproject.toml +34 -0
- cassian_gate-2.0.0/setup.cfg +4 -0
- cassian_gate-2.0.0/src/cassian.py +13451 -0
- cassian_gate-2.0.0/src/cassian_artifacts.py +122 -0
- cassian_gate-2.0.0/src/cassian_common.py +209 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/PKG-INFO +12 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/SOURCES.txt +14 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/dependency_links.txt +1 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/entry_points.txt +2 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/requires.txt +7 -0
- cassian_gate-2.0.0/src/cassian_gate.egg-info/top_level.txt +6 -0
- cassian_gate-2.0.0/src/cassian_model.py +2247 -0
- cassian_gate-2.0.0/src/cassian_runtime_container.py +1678 -0
- cassian_gate-2.0.0/src/cassian_tests.py +4058 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cassian-gate
|
|
3
|
+
Version: 2.0.0
|
|
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,65 @@
|
|
|
1
|
+
# Cassian Gate
|
|
2
|
+
|
|
3
|
+
Deterministic pre-production proof layer for network changes.
|
|
4
|
+
|
|
5
|
+
## What it is
|
|
6
|
+
|
|
7
|
+
Cassian Gate is an execution-backed validation gate for network changes. It lets engineers declare topology, tests, and scenarios, run them through a clean-state authoritative path, and get explicit PASS/FAIL outcomes with auditable artifacts. It is behavior-first, artifact-authoritative, CI-safe, local-first, and any AI usage remains advisory only.
|
|
8
|
+
|
|
9
|
+
## What it is not
|
|
10
|
+
|
|
11
|
+
Cassian Gate is not a general-purpose lab platform, not a chaos engine, not a controller, not a heuristic validator, not an AI decision system, and not a feature-parity NOS platform. It also does not treat exploratory workflows as deployment authority.
|
|
12
|
+
|
|
13
|
+
## Who it's for
|
|
14
|
+
|
|
15
|
+
Cassian Gate is for network engineers who need proof before production, platform or infrastructure engineers who want a CI-safe gate around network changes, and teams that need explicit machine-consumable artifacts instead of “probably safe” judgment.
|
|
16
|
+
|
|
17
|
+
## Who it's not yet for
|
|
18
|
+
|
|
19
|
+
Cassian Gate is not yet for teams expecting broad multi-vendor parity, teams that want exploratory lab workflows to count as authoritative validation, or teams that need commercial NOS coverage before adoption.
|
|
20
|
+
|
|
21
|
+
## Install
|
|
22
|
+
|
|
23
|
+
Primary public install path for the v2 release surface:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pipx install cassian-gate
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Alternative:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install cassian-gate
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
For current repo-based usage and setup details, start with [`docs/quickstart.md`](docs/quickstart.md).
|
|
36
|
+
|
|
37
|
+
## Quick start
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
cassian doctor
|
|
41
|
+
cassian test topologies/first-run-proof-minimal.yaml
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
That gives you the shortest path to an authoritative first PASS verdict from this repository surface.
|
|
45
|
+
|
|
46
|
+
## Proof Kit
|
|
47
|
+
|
|
48
|
+
* Passing first-run proof: [`topologies/first-run-proof-minimal.yaml`](topologies/first-run-proof-minimal.yaml) — shortest path to a first authoritative PASS verdict proving the declared TCP flow is allowed.
|
|
49
|
+
* Fail-catching first-run proof: [`topologies/first-run-proof-fail-catching.yaml`](topologies/first-run-proof-fail-catching.yaml) — shows Cassian Gate returning an authoritative FAIL when the declared TCP expectation is wrong.
|
|
50
|
+
* Copy-paste GitHub Actions template: [`contrib/ci/cassian-gate-ci.yml`](contrib/ci/cassian-gate-ci.yml) — ready-to-copy CI workflow that runs the proof gate and uploads `results.json` and `topology.resolved.yaml`.
|
|
51
|
+
|
|
52
|
+
## What's in v2
|
|
53
|
+
|
|
54
|
+
v2 includes the deterministic gate engine, FRR-based validation, named routing and policy invariants, scenario-based failure choreography, grey failures, replay, blast radius, preflight, two-run comparison, candidate-config workflows, state capture, PCAP capture, Terraform and Ansible adapters, and advisory AI surfaces that remain outside authority.
|
|
55
|
+
|
|
56
|
+
## Links
|
|
57
|
+
|
|
58
|
+
* Docs index: [`docs/README.md`](docs/README.md)
|
|
59
|
+
* Quickstart: [`docs/quickstart.md`](docs/quickstart.md)
|
|
60
|
+
* Operator cheatsheet: [`docs/cheatsheet.md`](docs/cheatsheet.md)
|
|
61
|
+
* First-run proof family: [`contrib/topologies/first-run-proof/README.md`](contrib/topologies/first-run-proof/README.md)
|
|
62
|
+
|
|
63
|
+
## Future direction
|
|
64
|
+
|
|
65
|
+
Post-v2 expansion deepens FRR first, then adds SONiC as the next open NOS and Arista as the first commercial NOS, without weakening deterministic gate authority.
|
|
@@ -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.0"
|
|
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"
|