packet-tracer-skill 0.2.0 → 0.2.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.
- package/CHANGELOG.md +20 -2
- package/README.md +4 -4
- package/docs/hero-demo-plan.md +18 -10
- package/docs/launch-announcement-0.2.1.md +15 -0
- package/docs/publish-preview-roadmap.md +2 -2
- package/docs/release-checklist.md +3 -3
- package/docs/{release-notes-0.2.0.md → release-notes-0.2.1.md} +2 -2
- package/examples/README.md +2 -2
- package/examples/gallery.md +1 -1
- package/package.json +34 -16
- package/scripts/build_examples_index.py +1 -1
- package/docs/screenshots/.gitkeep +0 -1
- package/docs/screenshots/packet-tracer-topology-cropped.png +0 -0
- package/scripts/__pycache__/build_examples_index.cpython-314.pyc +0 -0
- package/scripts/__pycache__/build_sample_catalog.cpython-314.pyc +0 -0
- package/scripts/__pycache__/coverage_matrix.cpython-314.pyc +0 -0
- package/scripts/__pycache__/donor_diagnostics.cpython-314.pyc +0 -0
- package/scripts/__pycache__/generate_pkt.cpython-314.pyc +0 -0
- package/scripts/__pycache__/install_skill.cpython-314.pyc +0 -0
- package/scripts/__pycache__/intent_parser.cpython-314.pyc +0 -0
- package/scripts/__pycache__/packet_tracer_env.cpython-314.pyc +0 -0
- package/scripts/__pycache__/pkt_builder.cpython-314.pyc +0 -0
- package/scripts/__pycache__/pkt_codec.cpython-314.pyc +0 -0
- package/scripts/__pycache__/pkt_editor.cpython-314.pyc +0 -0
- package/scripts/__pycache__/pkt_transformer.cpython-314.pyc +0 -0
- package/scripts/__pycache__/remote_search.cpython-314.pyc +0 -0
- package/scripts/__pycache__/runtime_doctor.cpython-314.pyc +0 -0
- package/scripts/__pycache__/sample_catalog.cpython-314.pyc +0 -0
- package/scripts/__pycache__/sample_selector.cpython-314.pyc +0 -0
- package/scripts/__pycache__/twofish_diagnostics.cpython-314.pyc +0 -0
- package/scripts/__pycache__/twofish_runtime.cpython-314.pyc +0 -0
- package/scripts/__pycache__/workspace_repair.cpython-314.pyc +0 -0
- package/scripts/vendor/__pycache__/twofish.cpython-314.pyc +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,25 @@ All notable changes to this project should be recorded in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is intentionally simple and release-oriented.
|
|
6
6
|
|
|
7
|
-
## [0.2.
|
|
7
|
+
## [0.2.1]
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- npm tarball hardening for the public package surface
|
|
12
|
+
- launch announcement draft aligned with the current public release wording
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- package version advanced to `0.2.1` because `0.2.0` is already published on npm
|
|
17
|
+
- npm package contents now exclude caches, generated previews, and non-essential screenshot payloads
|
|
18
|
+
- public release references now consistently point to the `0.2.1` patch release artifacts
|
|
19
|
+
|
|
20
|
+
### Notes
|
|
21
|
+
|
|
22
|
+
- `0.2.1` is the publishable patch release for the conservative public preview surface
|
|
23
|
+
- runtime messaging remains Windows-first and explicit about the external bridge-assisted validation path
|
|
24
|
+
|
|
25
|
+
## [0.2.0]
|
|
8
26
|
|
|
9
27
|
### Added
|
|
10
28
|
|
|
@@ -14,7 +32,7 @@ The format is intentionally simple and release-oriented.
|
|
|
14
32
|
- runtime truth, discovery keyword, GitHub metadata, publish-preview roadmap, and curated donor registry docs
|
|
15
33
|
- seeded curated donor registry entries derived from known working public example artifacts
|
|
16
34
|
- checked-in Packet Tracer template fallback assets for hermetic builder coverage
|
|
17
|
-
- hero demo plan and `0.2.0` release notes draft artifacts for conservative launch prep
|
|
35
|
+
- hero demo plan and `0.2.0` release notes draft artifacts for conservative launch prep
|
|
18
36
|
|
|
19
37
|
### Changed
|
|
20
38
|
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Cisco Packet Tracer 9.x `.pkt` generator and editor for skill-based coding hosts
|
|
|
8
8
|
|
|
9
9
|
This repository is built for one job: take a natural-language network request, build an explicit scenario-aware plan, adapt a compatible donor lab, and produce a Packet Tracer 9.x workflow that stays open-first and compatibility-first.
|
|
10
10
|
|
|
11
|
-
`0.2.
|
|
11
|
+
`0.2.1` public preview hardening is focused on:
|
|
12
12
|
|
|
13
13
|
- donor-backed and scenario-aware public messaging
|
|
14
14
|
- conservative Windows-first runtime truth
|
|
@@ -101,7 +101,7 @@ powershell -ExecutionPolicy Bypass -File .\scripts\setup.ps1 -Dev
|
|
|
101
101
|
|
|
102
102
|
Launch-prep references:
|
|
103
103
|
|
|
104
|
-
- [docs/release-notes-0.2.
|
|
104
|
+
- [docs/release-notes-0.2.1.md](docs/release-notes-0.2.1.md)
|
|
105
105
|
- [docs/hero-demo-plan.md](docs/hero-demo-plan.md)
|
|
106
106
|
- [docs/github-metadata.md](docs/github-metadata.md)
|
|
107
107
|
- [docs/release-checklist.md](docs/release-checklist.md)
|
|
@@ -234,7 +234,7 @@ Primary screenshot:
|
|
|
234
234
|
|
|
235
235
|

|
|
236
236
|
|
|
237
|
-
Hero visual for the `0.2.
|
|
237
|
+
Hero visual for the `0.2.1` public preview surface:
|
|
238
238
|
|
|
239
239
|
- `examples/screenshots/complex_campus_master_edit_v4.png`
|
|
240
240
|
|
|
@@ -298,7 +298,7 @@ Bu repo təbii dil ilə Packet Tracer `.pkt` generate və edit etmək üçündü
|
|
|
298
298
|
|
|
299
299
|
Hazırkı prioritet:
|
|
300
300
|
|
|
301
|
-
- `0.2.
|
|
301
|
+
- `0.2.1` public preview hardening
|
|
302
302
|
- release-ready və publish-ready surface
|
|
303
303
|
- README / npm / GitHub discoverability hizalanması
|
|
304
304
|
- scenario truth source, donor registry və runtime doctor contract consistency
|
package/docs/hero-demo-plan.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Goal
|
|
4
4
|
|
|
5
|
-
Prepare one conservative hero demo flow for the `0.2.
|
|
5
|
+
Prepare one conservative hero demo flow for the `0.2.1` public preview surface without implying self-contained runtime readiness.
|
|
6
6
|
|
|
7
7
|
## Prompt
|
|
8
8
|
|
|
@@ -22,10 +22,12 @@ python .\scripts\generate_pkt.py --parity-report "6 department campus with route
|
|
|
22
22
|
python .\scripts\runtime_doctor.py
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
## Visual
|
|
26
|
-
|
|
27
|
-
- pinned image: `examples/screenshots/complex_campus_master_edit_v4.png`
|
|
28
|
-
- reuse the complex campus topology screenshot as the hero visual until a dedicated GIF is produced
|
|
25
|
+
## Visual
|
|
26
|
+
|
|
27
|
+
- pinned image: `examples/screenshots/complex_campus_master_edit_v4.png`
|
|
28
|
+
- reuse the complex campus topology screenshot as the hero visual until a dedicated GIF is produced
|
|
29
|
+
- alt text: `Donor-backed complex campus Packet Tracer topology with VLAN, management, ACL, and wireless edits`
|
|
30
|
+
- visual label: `Complex Campus hero visual`
|
|
29
31
|
|
|
30
32
|
## Claims To Make
|
|
31
33
|
|
|
@@ -35,8 +37,14 @@ python .\scripts\runtime_doctor.py
|
|
|
35
37
|
- Windows-first runtime
|
|
36
38
|
- validated with external bridge override
|
|
37
39
|
|
|
38
|
-
## Claims Not To Make
|
|
39
|
-
|
|
40
|
-
- do not say the repo is self-contained runtime-ready
|
|
41
|
-
- do not claim full synthetic generate for WAN/security coverage
|
|
42
|
-
- do not imply unsupported or acceptance-gated mutations are generated anyway
|
|
40
|
+
## Claims Not To Make
|
|
41
|
+
|
|
42
|
+
- do not say the repo is self-contained runtime-ready
|
|
43
|
+
- do not claim full synthetic generate for WAN/security coverage
|
|
44
|
+
- do not imply unsupported or acceptance-gated mutations are generated anyway
|
|
45
|
+
|
|
46
|
+
## Launch Caption
|
|
47
|
+
|
|
48
|
+
Use this short caption when pairing the hero image with release notes or announcement text:
|
|
49
|
+
|
|
50
|
+
`Donor-backed, open-first, scenario-aware Packet Tracer workflow with conservative Windows-first runtime truth.`
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `0.2.1` Launch Announcement Draft
|
|
2
|
+
|
|
3
|
+
## npm Publish Announcement
|
|
4
|
+
|
|
5
|
+
`packet-tracer-skill 0.2.1` is live on npm.
|
|
6
|
+
|
|
7
|
+
Donor-backed Cisco Packet Tracer 9.x skill for natural-language planning, open-first `.pkt` workflows, scenario-aware reporting, parity checks, and Windows-first runtime diagnostics.
|
|
8
|
+
|
|
9
|
+
## GitHub Release Intro
|
|
10
|
+
|
|
11
|
+
`0.2.1` is a conservative public preview patch release. It keeps the current donor-backed workflow, the scenario-aware decision layer, the runtime doctor contract, and the known working scenario set intact while tightening the published package surface.
|
|
12
|
+
|
|
13
|
+
## Short Social Summary
|
|
14
|
+
|
|
15
|
+
Published `packet-tracer-skill@0.2.1`: donor-backed, open-first, scenario-aware Packet Tracer workflow with parity reporting, runtime doctor output, and a known working scenario set. Windows-first runtime, validated with external bridge override.
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
## Step B: Public `0.2.x` Publish-Preview
|
|
13
13
|
|
|
14
|
-
- `package.json` is versioned at `0.2.
|
|
15
|
-
- release notes draft is ready: `docs/release-notes-0.2.
|
|
14
|
+
- `package.json` is versioned at `0.2.1`
|
|
15
|
+
- release notes draft is ready: `docs/release-notes-0.2.1.md`
|
|
16
16
|
- hero visual is locked to `examples/screenshots/complex_campus_master_edit_v4.png`
|
|
17
17
|
- hero demo execution plan is ready: `docs/hero-demo-plan.md`
|
|
18
18
|
- GitHub About/Topics text is finalized in `docs/github-metadata.md`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Release Checklist
|
|
2
2
|
|
|
3
|
-
Target release surface: `0.2.
|
|
3
|
+
Target release surface: `0.2.1` conservative public preview.
|
|
4
4
|
|
|
5
5
|
## Product Contract
|
|
6
6
|
|
|
@@ -32,8 +32,8 @@ python .\scripts\runtime_doctor.py
|
|
|
32
32
|
- raw `.pkt` binaries are not committed
|
|
33
33
|
- examples index and gallery were rebuilt
|
|
34
34
|
- screenshots are intentional and non-sensitive
|
|
35
|
-
- changelog entry is updated for `0.2.
|
|
36
|
-
- release notes draft exists: `docs/release-notes-0.2.
|
|
35
|
+
- changelog entry is updated for `0.2.1`
|
|
36
|
+
- release notes draft exists: `docs/release-notes-0.2.1.md`
|
|
37
37
|
- hero demo plan exists: `docs/hero-demo-plan.md`
|
|
38
38
|
- hero visual is selected: `examples/screenshots/complex_campus_master_edit_v4.png`
|
|
39
39
|
- runtime truth docs match current `runtime_grade` and `bridge_resolution` semantics
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# `packet-tracer-skill` `0.2.
|
|
1
|
+
# `packet-tracer-skill` `0.2.1` Release Notes Draft
|
|
2
2
|
|
|
3
3
|
## Summary
|
|
4
4
|
|
|
5
|
-
`0.2.
|
|
5
|
+
`0.2.1` is a conservative public preview patch release for `packet-tracer-skill`. It hardens the npm package surface around donor-backed planning, open-first generation rules, scenario-aware reporting, and Windows-first runtime truth.
|
|
6
6
|
|
|
7
7
|
## Highlights
|
|
8
8
|
|
package/examples/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This repo keeps text-based example artifacts under `examples/` and treats them as a known working scenario set, not just a screenshot folder.
|
|
4
4
|
|
|
5
|
-
For the `0.2.
|
|
5
|
+
For the `0.2.1` public preview surface, the canonical public set is:
|
|
6
6
|
|
|
7
7
|
- `complex_campus_master_edit_v4`
|
|
8
8
|
- `home_iot_cli_edit_v1`
|
|
@@ -69,4 +69,4 @@ Gallery families:
|
|
|
69
69
|
|
|
70
70
|
Launch-prep references:
|
|
71
71
|
- `..\docs\hero-demo-plan.md`
|
|
72
|
-
- `..\docs\release-notes-0.2.
|
|
72
|
+
- `..\docs\release-notes-0.2.1.md`
|
package/examples/gallery.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "packet-tracer-skill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Donor-backed Cisco Packet Tracer 9.x skill for natural-language planning, safe-open generation, editing, parity reporting, and runtime diagnostics across coding hosts.",
|
|
6
6
|
"keywords": [
|
|
@@ -54,25 +54,43 @@
|
|
|
54
54
|
"doctor": "node bin/packet-tracer-skill.js --doctor",
|
|
55
55
|
"smoke:parity": "python scripts/generate_pkt.py --parity-report \"campus with VLAN DHCP ACL\""
|
|
56
56
|
},
|
|
57
|
-
"files": [
|
|
58
|
-
"SKILL.md",
|
|
59
|
-
"LICENSE",
|
|
60
|
-
"LICENSES",
|
|
61
|
-
"README.md",
|
|
57
|
+
"files": [
|
|
58
|
+
"SKILL.md",
|
|
59
|
+
"LICENSE",
|
|
60
|
+
"LICENSES",
|
|
61
|
+
"README.md",
|
|
62
62
|
"CONTRIBUTING.md",
|
|
63
63
|
"CHANGELOG.md",
|
|
64
64
|
"CITATION.cff",
|
|
65
65
|
"SECURITY.md",
|
|
66
|
-
"CODE_OF_CONDUCT.md",
|
|
67
|
-
"requirements.txt",
|
|
68
|
-
"requirements-dev.txt",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
66
|
+
"CODE_OF_CONDUCT.md",
|
|
67
|
+
"requirements.txt",
|
|
68
|
+
"requirements-dev.txt",
|
|
69
|
+
"bin/packet-tracer-skill.js",
|
|
70
|
+
"scripts/*.py",
|
|
71
|
+
"scripts/*.ps1",
|
|
72
|
+
"scripts/vendor/README.md",
|
|
73
|
+
"scripts/vendor/twofish.py",
|
|
74
|
+
"templates",
|
|
75
|
+
"references/*.json",
|
|
76
|
+
"references/*.md",
|
|
77
|
+
"examples/README.md",
|
|
78
|
+
"examples/gallery.md",
|
|
79
|
+
"examples/index.json",
|
|
80
|
+
"examples/blueprint_minimal.json",
|
|
81
|
+
"examples/*.inventory.json",
|
|
82
|
+
"examples/screenshots/*.png",
|
|
83
|
+
"docs/curated-donor-registry.md",
|
|
84
|
+
"docs/discovery-keywords.md",
|
|
85
|
+
"docs/github-discussions-setup.md",
|
|
86
|
+
"docs/github-metadata.md",
|
|
87
|
+
"docs/hero-demo-plan.md",
|
|
88
|
+
"docs/launch-announcement-0.2.1.md",
|
|
89
|
+
"docs/publish-preview-roadmap.md",
|
|
90
|
+
"docs/release-checklist.md",
|
|
91
|
+
"docs/release-notes-0.2.1.md",
|
|
92
|
+
"docs/runtime-truth.md"
|
|
93
|
+
],
|
|
76
94
|
"engines": {
|
|
77
95
|
"node": ">=18"
|
|
78
96
|
}
|
|
@@ -250,7 +250,7 @@ def build_examples_gallery_markdown(payload: dict[str, object]) -> str:
|
|
|
250
250
|
"",
|
|
251
251
|
"These examples are public, text-first proof artifacts derived from donor-backed workflows and aligned with the scenario fixture corpus.",
|
|
252
252
|
"",
|
|
253
|
-
"`0.2.
|
|
253
|
+
"`0.2.1` canonical public set:",
|
|
254
254
|
"",
|
|
255
255
|
"- `campus`",
|
|
256
256
|
"- `home_iot`",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|