@sentriflow/core 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/README.md +10 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # @sentriflow/core
2
2
 
3
- Core engine for SentriFlow - a network configuration compliance validator.
3
+ Core engine for SentriFlow - a network configuration validator.
4
4
 
5
5
  ## Overview
6
6
 
7
- `@sentriflow/core` provides the fundamental building blocks for parsing and analyzing network device configurations across multiple vendors, checking them against compliance rules—whether industry best practices or your organization's specific requirements.
7
+ `@sentriflow/core` provides the fundamental building blocks for parsing and analyzing network device configurations across multiple vendors, validating them against policy rules—whether industry best practices or your organization's specific requirements.
8
+
9
+ SentriFlow is a validation tool that assesses configuration alignment with policies and standards.
8
10
 
9
11
  ## Installation
10
12
 
@@ -18,7 +20,7 @@ bun add @sentriflow/core
18
20
 
19
21
  - **Multi-vendor support**: Cisco IOS/NX-OS, Juniper JunOS, Arista EOS, Fortinet FortiGate, Palo Alto PAN-OS, and more
20
22
  - **AST-based parsing**: Converts configurations into a vendor-agnostic Abstract Syntax Tree
21
- - **Extensible rule engine**: Define compliance rules for best practices or organization-specific policies
23
+ - **Extensible rule engine**: Define validation rules for best practices or organization-specific policies
22
24
  - **IP/Subnet Extraction**: Extract and deduplicate IP addresses and CIDR subnets from configurations
23
25
  - **GRX2 Loader**: Load and decrypt extended encrypted rule packs for offline usage
24
26
  - **TypeScript native**: Full type safety with comprehensive type definitions
@@ -173,9 +175,13 @@ try {
173
175
  ## Related Packages
174
176
 
175
177
  - [`@sentriflow/cli`](https://github.com/sentriflow/sentriflow/tree/main/packages/cli) - Command-line interface
176
- - [`@sentriflow/rules-default`](https://github.com/sentriflow/sentriflow/tree/main/packages/rules-default) - Default compliance rules
178
+ - [`@sentriflow/rules-default`](https://github.com/sentriflow/sentriflow/tree/main/packages/rules-default) - Default validation rules
177
179
  - [`@sentriflow/rule-helpers`](https://github.com/sentriflow/sentriflow/tree/main/packages/rule-helpers) - Helper functions for rule development
178
180
 
181
+ ## Disclaimer
182
+
183
+ SentriFlow provides automated configuration validation. Validation results do not constitute compliance certification.
184
+
179
185
  ## License
180
186
 
181
187
  Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentriflow/core",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "SentriFlow core engine for network configuration validation",
5
5
  "license": "Apache-2.0",
6
6
  "module": "src/index.ts",