Add loader + protocol for the 42 x.klickd v4.1 skill packs#114
Merged
Conversation
Make the public developer story for the 42 candidate skill packs (8 Lite + 34 Pro) complete and verifiable: - @klickd/core: bundle the 42 packs + manifest under x-klickd-skills/ and add listXKlickdSkillPacks / getXKlickdSkillPackBytes / loadXKlickdSkillPack (returns artifact_loaded + sha256_matches_manifest summary). - klickd (PyPI): same bundling + list_/get_/load_xklickd_skill_pack helpers. - scripts/verify_xklickd_skill_packs.py: dependency-free verifier + CLI (verify/list/load) checking 42/8/34, JSON validity, required fields, hashes. - docs/integrations/skill-loader-protocol.md: truth boundary + artifact_loaded contract + Python/Node/CLI examples; linked from getting-started, integrations README, main README, and both package READMEs. Artifacts only: no native-assistant, GA, GDPR/EU AI Act, or benchmark claims.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Makes the public developer story for the 42 x.klickd v4.1 candidate skill packs (8 Lite + 34 Pro) complete and verifiable, without overclaiming. Turns four prior gaps into yes:
@klickd/core,klickdPyPI, and a no-install CLI).artifact_loaded+ hash-verified contract before a skill may be called "used".What changed
@klickd/core(npm >= 4.1) — bundles the 42 packs + manifest underx-klickd-skills/(same pattern as the existingstarter-skills/) and adds:listXKlickdSkillPacks(),getXKlickdSkillPackBytes(idOrFilenameOrPack),loadXKlickdSkillPack(idOrFilenameOrPack),getXKlickdSkillsManifest(),getXKlickdSkillsDir().loadXKlickdSkillPackreturns a summary withartifact_loaded: true,id,tier,file,pack,sha256,sha256_matches_manifest,competency_ids,gates,evidence_policy,human_authority/human_veto, plus envelope fields.klickd(PyPI >= 4.1) — same bundling underklickd/x_klickd_skills/andlist_xklickd_skill_packs()/get_xklickd_skill_pack_bytes()/load_xklickd_skill_pack()(+ manifest/dir accessors).scripts/verify_xklickd_skill_packs.py— dependency-free verifier and CLI (verify/list/load).verifychecks: 42 total (8 Lite + 34 Pro), every.klickdparses as JSON, required fields present (klickd_version,payload_schema_version,domain,profile_kind,x_klickd_pack,x_klickd_pack.pack), and SHA-256 matches the manifest.Docs — new
docs/integrations/skill-loader-protocol.md(truth boundary +artifact_loadedcontract + Python/Node/CLI examples). Linked fromdocs/getting-started.md,docs/integrations/README.md, the mainREADME.md, and both package READMEs.Truth boundary (no overclaims)
The packs are real JSON
.klickdartifacts, not native skills in any assistant, not a v4.1 GA release. A pack is only "used" onceartifact_loadedandsha256_matches_manifestare both true, or a host runtime has explicitly integrated it. No universal-standard, automatic GDPR / EU AI Act, or benchmark-superiority claims are introduced. The repo tree underexamples/v4.1/x-klickd-skills/stays authoritative; bundled package copies are byte-identical mirrors verified by the test suites.Test plan
@klickd/core:npm test-> 107 passed (incl. newx-klickd-skills.test.ts).@klickd/core:npm run verify:tarball-> CJS + ESM smoke OK (42 packs ship + load/verify from the packed tarball).klickd(PyPI):pytest-> 109 passed, 1 skipped (incl. newtest_x_klickd_skills.py).python -m build --wheelbundles all 42.klickd+ manifest; installed-wheel API returns verifiedartifact_loaded.python scripts/verify_xklickd_skill_packs.py verify-> OK (8 Lite, 34 Pro).🤖 Generated by Computer