You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
federates all 17 public AMD Quark v0.12 skills across shared setup,
PyTorch/Hugging Face, and ONNX workflows
teaches the federation importer to resolve strict product-repository wrapper
skills into standalone installable folders
bundles adjacent resources and internal helper procedures while rewriting
external references to the exact imported Quark commit
adds a Quark-specific federation audit for the public skill set, commit pin,
wrapper resolution, helper integrity, routing boundaries, safety gates,
validator scripts, and marketplace publication
documents the Quark family and wrapper-based federation flow and refreshes
Claude, Cursor, and Codex plugin metadata
Why
Quark already owns a well-structured family of agent skills, but its public .claude/skills folders are lightweight pointers into .claude/skills-impl.
Copying only those public folders would ship broken pointers. This change keeps
Quark v0.12 as the pinned source of truth while generating standalone AMD
catalog skills that can be installed individually.
The result follows a TAO-style multi-skill family without creating model- or
quantization-scheme-specific skill sprawl: backend and lifecycle boundaries
remain explicit, and expensive PTQ or AutoSearch execution remains
confirmation-gated.
Thanks for taking on the work of bringing Quark's skills into the catalog — this is something we have wanted to see happen. We are on the Quark team, and having read through it there is one structural concern we would like to raise:
This integration writes Quark's internal layout, the v0.12 version and a set of internal skill names into the catalog's own importer and CI, which couples the two tightly: anything that moves on the Quark side means redoing the work here.
A safer shape would follow magpie-kernel-evaluator and tracelens-analysis-orchestrator: the source repository maintains a small number of self-contained entry-point skills, sources.yml declares only the repo, the ref and the folder names, the importer copies them as they are, and the catalog carries no product-specific logic.
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
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.
What changed
PyTorch/Hugging Face, and ONNX workflows
skills into standalone installable folders
external references to the exact imported Quark commit
wrapper resolution, helper integrity, routing boundaries, safety gates,
validator scripts, and marketplace publication
Claude, Cursor, and Codex plugin metadata
Why
Quark already owns a well-structured family of agent skills, but its public
.claude/skillsfolders are lightweight pointers into.claude/skills-impl.Copying only those public folders would ship broken pointers. This change keeps
Quark v0.12 as the pinned source of truth while generating standalone AMD
catalog skills that can be installed individually.
The result follows a TAO-style multi-skill family without creating model- or
quantization-scheme-specific skill sprawl: backend and lifecycle boundaries
remain explicit, and expensive PTQ or AutoSearch execution remains
confirmation-gated.
Validation
UV_SYSTEM_CERTS=true bash .github/scripts/check.sh(24 skills)uvx --system-certs ruff check ...andruff format --check ...for theauthored federation scripts
onnx>=1.21.0,<=1.22.0npx --yes skills add . --list(24 skills discovered)git diff --check origin/main...HEADThis is the Quark-only half of the split requested on #119. The
amd-skill-finderchange remains in #119 and is not part of this diff.