rcf-cli 1.2.1__tar.gz → 1.2.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.
- {rcf_cli-1.2.1/rcf_cli.egg-info → rcf_cli-1.2.2}/PKG-INFO +14 -1
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/README.md +13 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/pyproject.toml +1 -1
- {rcf_cli-1.2.1 → rcf_cli-1.2.2/rcf_cli.egg-info}/PKG-INFO +14 -1
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/LICENSE +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli/__init__.py +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli/cli.py +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli/scanner.py +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli.egg-info/SOURCES.txt +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli.egg-info/dependency_links.txt +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli.egg-info/entry_points.txt +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/rcf_cli.egg-info/top_level.txt +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/setup.cfg +0 -0
- {rcf_cli-1.2.1 → rcf_cli-1.2.2}/tests/test_scanner.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rcf-cli
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A command-line tool for RCF protocol compliance verification.
|
|
5
5
|
Author-email: Aladdin Aliyev <aladdin@aliyev.site>
|
|
6
6
|
License: RCF-PL 1.1.1
|
|
@@ -30,6 +30,8 @@ pip install rcf-cli
|
|
|
30
30
|
- **Project Initialization**: Instantly generate `NOTICE.md` and `.rcfignore` files to protect your project.
|
|
31
31
|
- **Automated Scanning**: Quickly scan projects for RCF compliance and extract markers.
|
|
32
32
|
- **Header Validation**: Ensure files have the required `NOTICE: This file is protected under RCF-PL v1.1` header.
|
|
33
|
+
- **RCF-Audit (Premium)**: Generate cryptographically signed compliance reports for enterprise auditing.
|
|
34
|
+
|
|
33
35
|
|
|
34
36
|
## CLI Usage
|
|
35
37
|
|
|
@@ -52,6 +54,17 @@ rcf-cli . --format json
|
|
|
52
54
|
|
|
53
55
|
# Print summary only
|
|
54
56
|
rcf-cli . --summary
|
|
57
|
+
|
|
58
|
+
### 3. Generate an RCF-Audit Report (Premium)
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Provide license key via flag
|
|
62
|
+
rcf-cli audit . --license-key RCF-AUDIT-XXXX-XXXX
|
|
63
|
+
|
|
64
|
+
# Or use environment variable
|
|
65
|
+
export RCF_LICENSE_KEY=RCF-AUDIT-XXXX-XXXX
|
|
66
|
+
rcf-cli audit .
|
|
67
|
+
```
|
|
55
68
|
```
|
|
56
69
|
|
|
57
70
|
## Markers Reference
|
|
@@ -17,6 +17,8 @@ pip install rcf-cli
|
|
|
17
17
|
- **Project Initialization**: Instantly generate `NOTICE.md` and `.rcfignore` files to protect your project.
|
|
18
18
|
- **Automated Scanning**: Quickly scan projects for RCF compliance and extract markers.
|
|
19
19
|
- **Header Validation**: Ensure files have the required `NOTICE: This file is protected under RCF-PL v1.1` header.
|
|
20
|
+
- **RCF-Audit (Premium)**: Generate cryptographically signed compliance reports for enterprise auditing.
|
|
21
|
+
|
|
20
22
|
|
|
21
23
|
## CLI Usage
|
|
22
24
|
|
|
@@ -39,6 +41,17 @@ rcf-cli . --format json
|
|
|
39
41
|
|
|
40
42
|
# Print summary only
|
|
41
43
|
rcf-cli . --summary
|
|
44
|
+
|
|
45
|
+
### 3. Generate an RCF-Audit Report (Premium)
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# Provide license key via flag
|
|
49
|
+
rcf-cli audit . --license-key RCF-AUDIT-XXXX-XXXX
|
|
50
|
+
|
|
51
|
+
# Or use environment variable
|
|
52
|
+
export RCF_LICENSE_KEY=RCF-AUDIT-XXXX-XXXX
|
|
53
|
+
rcf-cli audit .
|
|
54
|
+
```
|
|
42
55
|
```
|
|
43
56
|
|
|
44
57
|
## Markers Reference
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rcf-cli
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A command-line tool for RCF protocol compliance verification.
|
|
5
5
|
Author-email: Aladdin Aliyev <aladdin@aliyev.site>
|
|
6
6
|
License: RCF-PL 1.1.1
|
|
@@ -30,6 +30,8 @@ pip install rcf-cli
|
|
|
30
30
|
- **Project Initialization**: Instantly generate `NOTICE.md` and `.rcfignore` files to protect your project.
|
|
31
31
|
- **Automated Scanning**: Quickly scan projects for RCF compliance and extract markers.
|
|
32
32
|
- **Header Validation**: Ensure files have the required `NOTICE: This file is protected under RCF-PL v1.1` header.
|
|
33
|
+
- **RCF-Audit (Premium)**: Generate cryptographically signed compliance reports for enterprise auditing.
|
|
34
|
+
|
|
33
35
|
|
|
34
36
|
## CLI Usage
|
|
35
37
|
|
|
@@ -52,6 +54,17 @@ rcf-cli . --format json
|
|
|
52
54
|
|
|
53
55
|
# Print summary only
|
|
54
56
|
rcf-cli . --summary
|
|
57
|
+
|
|
58
|
+
### 3. Generate an RCF-Audit Report (Premium)
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Provide license key via flag
|
|
62
|
+
rcf-cli audit . --license-key RCF-AUDIT-XXXX-XXXX
|
|
63
|
+
|
|
64
|
+
# Or use environment variable
|
|
65
|
+
export RCF_LICENSE_KEY=RCF-AUDIT-XXXX-XXXX
|
|
66
|
+
rcf-cli audit .
|
|
67
|
+
```
|
|
55
68
|
```
|
|
56
69
|
|
|
57
70
|
## Markers Reference
|
|
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
|