Add self-contained catalog entry skills - #38
Draft
andyluo7 wants to merge 1 commit into
Draft
Conversation
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.
What changed
Adds three source-owned, self-contained agent-skill packages under
agent-skills/:quark-install: environment inspection, install planning, verification, and recoveryquark-torch-ptq: PyTorch/Hugging Face PTQ planning, execution, export, and layered validationquark-onnx-ptq: ONNX PTQ, calibration, provider checks, AutoSearch budgeting, and layered validationEach package includes only portable skill frontmatter plus its own references, UI metadata,
and executable inspection helper. All relative links remain inside the package. The skills do
not reference
.claude/skills-impl, call another Quark skill, or depend on a catalog-specificwrapper/importer.
Why
Quark's existing
.claude/skillssurface is intentionally backed by a detailed internalorchestration graph. External catalogs should not couple themselves to that private layout,
internal skill names, or a release-specific resolver.
This separate
agent-skills/distribution surface gives Quark a small set of stable entrypoints that an external catalog can copy unchanged with a generic source importer. The existing
17 internal skills are not modified.
This is the source-side prerequisite for the redesign requested on amd/skills#122. That catalog
PR will remain paused until these source-owned entry points are accepted, after which it can be
reduced to generic source declarations and generated imports.
Validation
quick_validate.pypasses for all three skillsuvx ruff check agent-skillsuvx ruff format --check agent-skillspython3 -m py_compile agent-skills/*/scripts/*.pygit diff --checkReview focus
agent-skills/is the right source-owned distribution path