packet-tracer-skill 0.2.1 → 0.2.3
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.
- package/CHANGELOG.md +53 -2
- package/README.md +443 -124
- package/docs/automation-controller-proof.md +35 -0
- package/docs/campus-donor-proof.md +103 -0
- package/docs/curated-donor-registry.md +37 -0
- package/docs/generate-ready-pilot-design.md +30 -0
- package/docs/github-launch-ops-0.2.1.md +45 -0
- package/docs/github-launch-ops-0.2.2.md +42 -0
- package/docs/github-metadata.md +23 -6
- package/docs/home-iot-donor-proof.md +64 -0
- package/docs/industrial-programming-proof.md +48 -0
- package/docs/ipv4-routing-management-proof.md +37 -0
- package/docs/l2-resiliency-bgp-proof.md +60 -0
- package/docs/l2-security-qos-proof.md +59 -0
- package/docs/launch-announcement-0.2.2.md +15 -0
- package/docs/packet-tracer-feature-gap-atlas.md +244 -0
- package/docs/post-launch-follow-up.md +39 -0
- package/docs/publish-preview-roadmap.md +20 -17
- package/docs/release-checklist.md +32 -17
- package/docs/release-notes-0.2.1.md +7 -6
- package/docs/release-notes-0.2.2.md +26 -0
- package/docs/release-notes-0.2.3.md +59 -0
- package/docs/runtime-truth.md +31 -0
- package/docs/security-edge-deepening-proof.md +65 -0
- package/docs/voice-collaboration-proof.md +38 -0
- package/docs/wan-security-donor-proof.md +58 -0
- package/docs/wireless-advanced-proof.md +60 -0
- package/examples/README.md +11 -8
- package/examples/gallery.md +9 -3
- package/examples/index.json +3 -3
- package/package.json +20 -1
- package/references/curated-donor-registry.json +5 -2
- package/references/packettracer-feature-atlas.json +183 -0
- package/references/scenario-fixture-corpus.json +1 -0
- package/scripts/build_examples_index.py +26 -15
- package/scripts/coverage_matrix.py +1054 -25
- package/scripts/feature_atlas.py +293 -0
- package/scripts/generate_pkt.py +491 -34
- package/scripts/intent_parser.py +798 -8
- package/scripts/pkt_editor.py +651 -0
- package/scripts/remote_search.py +197 -21
- package/scripts/runtime_doctor.py +83 -10
- package/scripts/sample_catalog.py +266 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,59 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project should be recorded in this file.
|
|
4
4
|
|
|
5
|
-
The format is intentionally simple and release-oriented.
|
|
6
|
-
|
|
5
|
+
The format is intentionally simple and release-oriented.
|
|
6
|
+
|
|
7
|
+
## [0.2.3] - 2026-05-03
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- voice/collaboration edit-proven proof for IOS `telephony-service`, `ephone-dn`, `ephone`, and `dial-peer voice` command shapes
|
|
12
|
+
- automation/controller edit-proven proof for existing Python, JavaScript, and TCP/UDP script-file replacement
|
|
13
|
+
- L2 security/QoS edit-proven proof for explicit dot1x and QoS IOS switch commands
|
|
14
|
+
- security-edge deepening proof for explicit router CBAC and ZFW IOS commands
|
|
15
|
+
- L2 resiliency + BGP edit-proven proof for explicit BGP, STP/RSTP, EtherChannel/LACP/PAgP, VTP, and DTP IOS commands
|
|
16
|
+
- IPv4 routing/NAT/IOS-management edit-proven proof for explicit OSPFv2, EIGRP IPv4, RIPv2, static/default route, DHCP relay, NAT/PAT, SSH, NTP, and syslog IOS commands
|
|
17
|
+
- local user-supplied Packet Tracer corpus audit via `--local-sample-audit-root` and ignored `output/local-sample-audit.json`
|
|
18
|
+
- donor-backed readiness expansion for dot1x, ZFW, voice/collaboration IOS edits, and automation/controller script-file edits
|
|
19
|
+
- donor-backed readiness expansion for explicit OSPFv3, EIGRP IPv6, RIPng, and IPv6 HSRP edit paths
|
|
20
|
+
- generate-ready pilot design doc that defines the future acceptance gate without enabling broad generate
|
|
21
|
+
- local/cache-only GitHub sample ingestion audit for `.pkt`/`.pka` repositories, license status, decode evidence, and promotion status
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- feature atlas candidate status now promotes `ospfv3`, `eigrp_ipv6`, `ripng`, `hsrp`, `dot1x`, `qos`, `cbac`, and `zfw` only when editor roundtrip and decode-backed evidence exists
|
|
26
|
+
- donor-backed readiness now requires proof-linked sample, decode, parser, and editor roundtrip evidence
|
|
27
|
+
- remote samples with unknown license metadata now stay `reference_only`; permissive-license samples still require decode and inventory validation before curated donor eligibility
|
|
28
|
+
- local `pkt_examples` evidence is now separated from public curated truth; raw `.pkt/.pka` files remain excluded from git and npm
|
|
29
|
+
- README and proof docs now describe `0.2.3` as a capability release, not an unpublished candidate
|
|
30
|
+
- ASA service-policy, clientless VPN, Linksys voice, Network Controller GUI, Blockly, VM/IOx, and broad physical/media workflows remain report-only
|
|
31
|
+
|
|
32
|
+
### Notes
|
|
33
|
+
|
|
34
|
+
- `0.2.3` is a capability proof/readiness release, not a broad generation release
|
|
35
|
+
- `generate_ready=0` remains intentional until donor-backed acceptance evidence exists
|
|
36
|
+
- broad NAC, QoS, ASA, and security topology generation remains blocked
|
|
37
|
+
|
|
38
|
+
## [0.2.2]
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- advanced wireless proof surface for WEP and WPA Enterprise/RADIUS edit-proven behavior
|
|
43
|
+
- wireless advanced feature atlas coverage for WLC, Meraki, cellular, Bluetooth, beamforming, guest Wi-Fi, WEP, and WPA Enterprise
|
|
44
|
+
- runtime README guidance for generic Twofish bridge paths and search-root fallback
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
- package version advanced to `0.2.2` for the README/runtime cleanup and advanced wireless feature wave
|
|
49
|
+
- README runtime setup no longer presents a user-specific local path as the default bridge location
|
|
50
|
+
- advanced wireless prompts now classify into the `wireless_advanced` family without drifting into `service_heavy`
|
|
51
|
+
- WEP and WPA Enterprise/RADIUS are represented as edit-proven where explicit deterministic edit targets exist, while broader WLC/cellular/Bluetooth/Meraki scope remains report-only
|
|
52
|
+
|
|
53
|
+
### Notes
|
|
54
|
+
|
|
55
|
+
- `0.2.2` remains conservative: no broad synthetic advanced wireless generation is claimed
|
|
56
|
+
- runtime messaging remains Windows-first and explicit about external bridge-assisted validation
|
|
57
|
+
|
|
7
58
|
## [0.2.1]
|
|
8
59
|
|
|
9
60
|
### Added
|