ccid-cli 0.1.1__tar.gz → 0.1.2__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.
- ccid_cli-0.1.2/PKG-INFO +51 -0
- ccid_cli-0.1.2/README.md +40 -0
- ccid_cli-0.1.2/ccid_cli.egg-info/PKG-INFO +51 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli.egg-info/SOURCES.txt +1 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/pyproject.toml +2 -1
- ccid_cli-0.1.1/PKG-INFO +0 -9
- ccid_cli-0.1.1/ccid_cli.egg-info/PKG-INFO +0 -9
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli/__init__.py +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli/api.py +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli/formatters.py +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli/main.py +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli.egg-info/dependency_links.txt +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli.egg-info/entry_points.txt +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli.egg-info/requires.txt +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/ccid_cli.egg-info/top_level.txt +0 -0
- {ccid_cli-0.1.1 → ccid_cli-0.1.2}/setup.cfg +0 -0
ccid_cli-0.1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ccid-cli
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: CCID Compliance CLI - Pipeline-native compliance checking
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: typer>=0.9.0
|
|
8
|
+
Requires-Dist: httpx>=0.27.0
|
|
9
|
+
Requires-Dist: rich>=13.0.0
|
|
10
|
+
Requires-Dist: websockets>=12.0
|
|
11
|
+
|
|
12
|
+
# ccid-cli
|
|
13
|
+
|
|
14
|
+
Pipeline-native compliance checking for the **CCID / Nereus AEGIS** compliance
|
|
15
|
+
platform. Run compliance analysis and posture checks from your terminal or CI.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install ccid-cli
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Configure
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
ccid configure # writes ~/.ccid/config.json {api_url, api_key}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Your API key authenticates via the `X-API-Key` header. Get a team-scoped key
|
|
30
|
+
from your CCID administrator.
|
|
31
|
+
|
|
32
|
+
## Use
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
ccid analyze path/to/code # run the code-analysis swarm
|
|
36
|
+
ccid posture # compliance posture snapshot
|
|
37
|
+
ccid posture --fail-on block # exit non-zero if posture is blocking (for CI gates)
|
|
38
|
+
ccid assignments # open findings / assignments
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
`ccid analyze` runs a full analysis swarm and can take several minutes; use
|
|
42
|
+
`--live` to stream node-by-node progress over WebSocket.
|
|
43
|
+
|
|
44
|
+
## CI
|
|
45
|
+
|
|
46
|
+
The published GitHub composite action `ccid-compliance` wraps this CLI for
|
|
47
|
+
pull-request gates. See the platform's *Customer → GitHub Actions* setup guide.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
Proprietary and confidential. © 2024–2026 Dr. Fred Mpala.
|
ccid_cli-0.1.2/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# ccid-cli
|
|
2
|
+
|
|
3
|
+
Pipeline-native compliance checking for the **CCID / Nereus AEGIS** compliance
|
|
4
|
+
platform. Run compliance analysis and posture checks from your terminal or CI.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
pip install ccid-cli
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Configure
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
ccid configure # writes ~/.ccid/config.json {api_url, api_key}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Your API key authenticates via the `X-API-Key` header. Get a team-scoped key
|
|
19
|
+
from your CCID administrator.
|
|
20
|
+
|
|
21
|
+
## Use
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
ccid analyze path/to/code # run the code-analysis swarm
|
|
25
|
+
ccid posture # compliance posture snapshot
|
|
26
|
+
ccid posture --fail-on block # exit non-zero if posture is blocking (for CI gates)
|
|
27
|
+
ccid assignments # open findings / assignments
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
`ccid analyze` runs a full analysis swarm and can take several minutes; use
|
|
31
|
+
`--live` to stream node-by-node progress over WebSocket.
|
|
32
|
+
|
|
33
|
+
## CI
|
|
34
|
+
|
|
35
|
+
The published GitHub composite action `ccid-compliance` wraps this CLI for
|
|
36
|
+
pull-request gates. See the platform's *Customer → GitHub Actions* setup guide.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
Proprietary and confidential. © 2024–2026 Dr. Fred Mpala.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ccid-cli
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: CCID Compliance CLI - Pipeline-native compliance checking
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: typer>=0.9.0
|
|
8
|
+
Requires-Dist: httpx>=0.27.0
|
|
9
|
+
Requires-Dist: rich>=13.0.0
|
|
10
|
+
Requires-Dist: websockets>=12.0
|
|
11
|
+
|
|
12
|
+
# ccid-cli
|
|
13
|
+
|
|
14
|
+
Pipeline-native compliance checking for the **CCID / Nereus AEGIS** compliance
|
|
15
|
+
platform. Run compliance analysis and posture checks from your terminal or CI.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install ccid-cli
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Configure
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
ccid configure # writes ~/.ccid/config.json {api_url, api_key}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Your API key authenticates via the `X-API-Key` header. Get a team-scoped key
|
|
30
|
+
from your CCID administrator.
|
|
31
|
+
|
|
32
|
+
## Use
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
ccid analyze path/to/code # run the code-analysis swarm
|
|
36
|
+
ccid posture # compliance posture snapshot
|
|
37
|
+
ccid posture --fail-on block # exit non-zero if posture is blocking (for CI gates)
|
|
38
|
+
ccid assignments # open findings / assignments
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
`ccid analyze` runs a full analysis swarm and can take several minutes; use
|
|
42
|
+
`--live` to stream node-by-node progress over WebSocket.
|
|
43
|
+
|
|
44
|
+
## CI
|
|
45
|
+
|
|
46
|
+
The published GitHub composite action `ccid-compliance` wraps this CLI for
|
|
47
|
+
pull-request gates. See the platform's *Customer → GitHub Actions* setup guide.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
Proprietary and confidential. © 2024–2026 Dr. Fred Mpala.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ccid-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "CCID Compliance CLI - Pipeline-native compliance checking"
|
|
5
|
+
readme = "README.md"
|
|
5
6
|
requires-python = ">=3.11"
|
|
6
7
|
dependencies = ["typer>=0.9.0", "httpx>=0.27.0", "rich>=13.0.0", "websockets>=12.0"]
|
|
7
8
|
|
ccid_cli-0.1.1/PKG-INFO
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: ccid-cli
|
|
3
|
-
Version: 0.1.1
|
|
4
|
-
Summary: CCID Compliance CLI - Pipeline-native compliance checking
|
|
5
|
-
Requires-Python: >=3.11
|
|
6
|
-
Requires-Dist: typer>=0.9.0
|
|
7
|
-
Requires-Dist: httpx>=0.27.0
|
|
8
|
-
Requires-Dist: rich>=13.0.0
|
|
9
|
-
Requires-Dist: websockets>=12.0
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: ccid-cli
|
|
3
|
-
Version: 0.1.1
|
|
4
|
-
Summary: CCID Compliance CLI - Pipeline-native compliance checking
|
|
5
|
-
Requires-Python: >=3.11
|
|
6
|
-
Requires-Dist: typer>=0.9.0
|
|
7
|
-
Requires-Dist: httpx>=0.27.0
|
|
8
|
-
Requires-Dist: rich>=13.0.0
|
|
9
|
-
Requires-Dist: websockets>=12.0
|
|
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
|