Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion home/dot_claude/plugins/marketplaces/external_agents
Submodule external_agents updated 94 files
+127 −0 .agents/plugins/marketplace.json
+41 −1 .claude-plugin/marketplace.json
+37 −2 .cursor-plugin/marketplace.json
+1 −1 .cursor-plugin/plugin.json
+11 −0 .cursor-plugin/plugins/dgx-spark-ops.json
+11 −0 .cursor-plugin/plugins/llm-finetuning.json
+2 −1 .cursor-plugin/plugins/plugin-eval.json
+11 −0 .cursor-plugin/plugins/pptx-deck-creation.json
+3 −0 .gitignore
+5 −5 AGENTS.md
+10 −10 README.md
+25 −2 docs/agent-skills.md
+7 −3 docs/agents.md
+11 −11 docs/architecture.md
+6 −4 docs/plugins.md
+0 −857 docs/superpowers/plans/2026-06-25-open-issue-resolution.md
+0 −185 docs/superpowers/specs/2026-06-25-open-issue-resolution-design.md
+5 −2 docs/usage.md
+10 −0 plugins/dgx-spark-ops/.claude-plugin/plugin.json
+16 −0 plugins/dgx-spark-ops/.codex-plugin/plugin.json
+110 −0 plugins/dgx-spark-ops/agents/dgx-spark-ops-engineer.md
+20 −0 plugins/dgx-spark-ops/commands/spark-preflight.md
+200 −0 plugins/dgx-spark-ops/skills/spark-environment-setup/SKILL.md
+59 −0 plugins/dgx-spark-ops/skills/spark-environment-setup/references/container-workflow.md
+113 −0 plugins/dgx-spark-ops/skills/spark-environment-setup/references/stack-matrix.md
+230 −0 plugins/dgx-spark-ops/skills/spark-memory-thermal-ops/SKILL.md
+26 −0 plugins/dgx-spark-ops/skills/spark-memory-thermal-ops/assets/thermal-sample.sh
+103 −0 plugins/dgx-spark-ops/skills/spark-memory-thermal-ops/references/uma-accounting.md
+200 −0 plugins/dgx-spark-ops/skills/spark-training-gotchas/SKILL.md
+51 −0 plugins/dgx-spark-ops/skills/spark-training-gotchas/assets/preflight.sh
+242 −0 plugins/dgx-spark-ops/skills/spark-training-gotchas/references/gotcha-checks.md
+10 −0 plugins/llm-finetuning/.claude-plugin/plugin.json
+16 −0 plugins/llm-finetuning/.codex-plugin/plugin.json
+207 −0 plugins/llm-finetuning/agents/llm-finetuning-architect.md
+199 −0 plugins/llm-finetuning/agents/llm-finetuning-eval-engineer.md
+187 −0 plugins/llm-finetuning/agents/llm-finetuning-training-engineer.md
+272 −0 plugins/llm-finetuning/commands/finetune.md
+119 −0 plugins/llm-finetuning/commands/promote-checkpoint.md
+297 −0 plugins/llm-finetuning/skills/checkpoint-promotion/SKILL.md
+341 −0 plugins/llm-finetuning/skills/checkpoint-promotion/references/gate-templates.md
+203 −0 plugins/llm-finetuning/skills/dataset-curation/SKILL.md
+181 −0 plugins/llm-finetuning/skills/dataset-curation/references/formats-and-templates.md
+316 −0 plugins/llm-finetuning/skills/dataset-curation/references/synthetic-data.md
+209 −0 plugins/llm-finetuning/skills/eval-harness-first/SKILL.md
+294 −0 plugins/llm-finetuning/skills/eval-harness-first/references/grader-templates.md
+173 −0 plugins/llm-finetuning/skills/eval-harness-first/references/judge-calibration.md
+214 −0 plugins/llm-finetuning/skills/finetuning-method-selection/SKILL.md
+169 −0 plugins/llm-finetuning/skills/finetuning-method-selection/references/memory-math.md
+39 −0 plugins/llm-finetuning/skills/finetuning-method-selection/references/model-catalog.md
+205 −0 plugins/llm-finetuning/skills/grpo-rlvr-training/SKILL.md
+94 −0 plugins/llm-finetuning/skills/grpo-rlvr-training/references/grpo-memory.md
+316 −0 plugins/llm-finetuning/skills/grpo-rlvr-training/references/reward-functions.md
+222 −0 plugins/llm-finetuning/skills/lora-qlora-recipes/SKILL.md
+159 −0 plugins/llm-finetuning/skills/lora-qlora-recipes/references/hyperparameters.md
+195 −0 plugins/llm-finetuning/skills/lora-qlora-recipes/references/unsloth-trl-mapping.md
+202 −0 plugins/llm-finetuning/skills/preference-optimization/SKILL.md
+218 −0 plugins/llm-finetuning/skills/preference-optimization/references/method-configs.md
+222 −0 plugins/llm-finetuning/skills/quantized-export/SKILL.md
+383 −0 plugins/llm-finetuning/skills/quantized-export/references/export-commands.md
+215 −0 plugins/llm-finetuning/skills/trace-to-training-data/SKILL.md
+190 −0 plugins/llm-finetuning/skills/trace-to-training-data/references/conversion-recipes.md
+210 −0 plugins/llm-finetuning/skills/vision-sft/SKILL.md
+149 −0 plugins/llm-finetuning/skills/vision-sft/references/collators-and-pitfalls.md
+2 −1 plugins/plugin-eval/.claude-plugin/plugin.json
+2 −2 plugins/plugin-eval/.codex-plugin/plugin.json
+4 −4 plugins/plugin-eval/pyproject.toml
+61 −55 plugins/plugin-eval/uv.lock
+18 −0 plugins/pptx-deck-creation/.claude-plugin/plugin.json
+24 −0 plugins/pptx-deck-creation/.codex-plugin/plugin.json
+19 −0 plugins/pptx-deck-creation/README.md
+31 −0 plugins/pptx-deck-creation/agents/pptx-deck-creation-builder.md
+26 −0 plugins/pptx-deck-creation/skills/pptx-deck-context/SKILL.md
+16 −0 plugins/pptx-deck-creation/skills/pptx-deck-context/references/design-profiles.md
+28 −0 plugins/pptx-deck-creation/skills/pptx-quality-gates/SKILL.md
+23 −0 plugins/pptx-deck-creation/skills/pptx-quality-gates/references/audit-checklist.md
+43 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/SKILL.md
+15 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/references/ooxml-parsing.md
+29 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/references/reference-deck-analysis-patterns.md
+37 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/references/reference-deck-analysis.md
+1 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/requirements.txt
+122 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/scripts/inspect.py
+72 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/scripts/unpack.py
+181 −0 plugins/pptx-deck-creation/skills/pptx-reference-deck-analysis/scripts/validate_package.py
+31 −0 plugins/pptx-deck-creation/skills/pptx-slide-specification/SKILL.md
+38 −0 plugins/pptx-deck-creation/skills/pptx-slide-specification/references/layout-contract.md
+26 −0 plugins/pptx-deck-creation/skills/pptx-visual-assets/SKILL.md
+20 −0 plugins/pptx-deck-creation/skills/pptx-visual-assets/references/asset-guidance.md
+21 −0 tools/adapters/base.py
+20 −5 tools/adapters/codex.py
+1 −1 tools/doc_gardener.py
+95 −0 tools/tests/test_adapters.py
+10 −10 tools/validate_generated.py
+1 −1 tools/yt-design-extractor/pyproject.toml
+75 −67 tools/yt-design-extractor/uv.lock