Help us improve
Share bugs, ideas, or general feedback.
From sagemaker-ai
Guides selection of a base model and fine-tuning technique (SFT, DPO, RLVR) by querying SageMaker Hub. Use when choosing a model or technique for fine-tuning.
npx claudepluginhub awslabs/agent-plugins --plugin sagemaker-aiHow this skill is triggered — by the user, by Claude, or both
Slash command
/sagemaker-ai:finetuning-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guides the user through selecting a base model and fine-tuning technique based on their use case.
references/benchmarks/agenticIndex.mdreferences/benchmarks/codingIndex.mdreferences/benchmarks/gpqa.mdreferences/benchmarks/hle.mdreferences/benchmarks/ifbench.mdreferences/benchmarks/intelligenceIndex.mdreferences/benchmarks/mmmuPro.mdreferences/benchmarks/tau2.mdreferences/finetune_technique_selection_guide.mdreferences/model-licenses.mdreferences/model-selection.mdscripts/get_model_names.pyscripts/get_recipes.pyGenerates a Jupyter notebook that fine-tunes a base model using SageMaker serverless training jobs. Supports SFT, DPO, and RLVR trainers including Lambda reward function creation.
Trains or fine-tunes language/vision models using TRL or Unsloth on Hugging Face Jobs cloud GPUs. Supports SFT, DPO, GRPO, reward modeling, and GGUF export for local deployment.
Guides decisions on model sovereignty: prompting, RAG, fine-tuning (LoRA/QLoRA), distillation, local hosting for privacy, cost, and customization needs.
Share bugs, ideas, or general feedback.
Guides the user through selecting a base model and fine-tuning technique based on their use case.
use_case_spec.md file exists. If not, activate the use-case-specification skill to generate it first.List all available SageMaker Hubs in the user's region by calling the SageMaker ListHubs API using the aws___call_aws tool.
From the results, filter out any hub whose HubDescription contains "AI Registry" — these do not contain JumpStart models.
The remaining hubs are eligible (e.g., SageMakerPublicHub and any private hubs).
If exactly one eligible hub exists, use it automatically — do not ask the user.
If multiple eligible hubs exist, present them to the user and ask which one to use. Example:
I found the following model hubs:
- SageMakerPublicHub — SageMaker Public Hub
- Private-Hub-XYZ — Private Hub models
Which hub would you like to use?
Store the selected hub name for use in subsequent steps.
First, retrieve all available SageMaker Hub model names by running: python finetuning-setup/scripts/get_model_names.py <hub-name>.
Present all available models to the user with their licenses before making any recommendations. Cross-reference the model list with references/model-licenses.md and display each as <model name> - [<license>](<url>). For example: "Qwen3-4B - Apache 2.0"
If you already know the model the user wants to use (from conversation context or planning files), confirm that it's in the list, display its license, and move on. Otherwise, help the user pick a model following the instructions in references/model-selection.md.
Important: Make sure to remember this list of available models when helping with model selection. Don't recommend a model that's not available to the user.
references/finetune_technique_selection_guide.md and recommend the best-fit technique (SFT, DPO, or RLVR) for the use case. Present the recommendation and reasoning to the user.python finetuning-setup/scripts/get_recipes.py <model-name> <hub-name>
Present a summary to the user:
Here's what we've selected:
- Base model: [model name]
- Fine-tuning technique: [SFT/DPO/RLVR]
references/model-selection.md — Model selection instructions and benchmark descriptionsreferences/finetune_technique_selection_guide.md — Technique guidancereferences/model-licenses.md — Model license information for display during model selection