hf-cloud-sagemaker-deployment-planner

hf-cloud-sagemaker-deployment-planner is a skill for Codex from PracticalSwan/agent-skills. It costs 216 tokens per session (2,519 once invoked), scanned A, a copy of hf-cloud-sagemaker-deployment-planner, MIT.

A guide for planning how to deploy a machine-learning model to Amazon SageMaker, a managed AWS service for hosting and running models.

In plain words
What is it for?
Use it when hosting language, embedding, reranking, classification, or image-generation models on AWS.
Why use it?
It helps choose a suitable way to serve the model and identify the information and setup needed before deployment.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it when hosting language, embedding, reranking, classification, or image-generation models on AWS.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PracticalSwan/agent-skills --skill hf-cloud-sagemaker-deployment-planner
Clone the repo
git clone --depth 1 https://github.com/PracticalSwan/agent-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hf-cloud-sagemaker-deployment-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner/github.svg)](https://agentmods.dev/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner)
Your own site
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hf-cloud-sagemaker-deployment-planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/hf-cloud-sagemaker-deployment-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 216 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 89% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00216 $0.02519
Opus 5 $0.00108 $0.01260
Sonnet 5 $0.00043 $0.00504
Haiku 4.5 $0.00022 $0.00252

Measured 3d ago against content hash 5eb4d2fc149f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

hf-cloud-sagemaker-deployment-planner scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

89% identical to hf-cloud-sagemaker-deployment-planner — 55 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

hf-cloud-sagemaker-deployment-planner/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SageMaker Deployment Planner

You are helping a user deploy a model to Amazon SageMaker. Most users invoking this skill want the model deployed with reasonable defaults, in as few questions as possible. Ask only what you need, recommend a pathway honestly, and hand off to the specialized skills.

Workflow phases

  1. Discovery — what is being deployed and what are the constraints (this skill)
  2. Pathway selection — real-time / serverless / async / batch / Bedrock CMI (this skill)
  3. Context preflighthf-cloud-aws-context-discovery, then hf-cloud-python-env-setup
  4. IAM preflighthf-cloud-sagemaker-iam-preflight
  5. Image selectionhf-cloud-serving-image-selection
  6. Deploymenthf-cloud-sagemaker-production-defaults

Phases 1–2 are this skill's job. The others activate when their patterns match.

Discovery: ask only what you need

You will eventually need to know:

  • What model: HuggingFace ID, S3 path to artifacts, or model name. If the user is vague ("the model I fine-tuned"), ask for the artifact location.
  • Model type: text-generation LLM, embedding/reranker, or other (classifier, NER, etc.). This determines the serving stack — usually inferable from the model name (anything ending in -embed-*, starting with BAAI/bge-, sentence-transformers/* etc. is embeddings; chat/instruct models are LLMs). Only ask if it's genuinely ambiguous.
  • Traffic shape: roughly how often will this be called?
  • Latency tolerance: interactive, near-real-time, or async?
  • Cost sensitivity: ask only if the user signals it or the traffic pattern is ambiguous.

Region comes from hf-cloud-aws-context-discovery — don't ask unless the user volunteers it.

Do not front-load all of these. A common minimal set is just: what model, and roughly how often will it be called? The model name usually settles the model-type question. That alone is often enough to narrow the pathway to two candidates. If the user already told you something, don't ask again.

Read the full file on GitHub · 142 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed 5eb4d2fc149f
  2. 4d ago Changed 071adb169d26
  3. 7d ago First seen · 142 lines · 216 tokens per session scan A a604469b5b81

Subscribe to this mod's changes

hf-cloud-sagemaker-deployment-planner is a skill published in the GitHub repository PracticalSwan/agent-skills (14 stars, last pushed 3d ago), licensed MIT. It adds 216 tokens to every session and 2,519 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to hf-cloud-sagemaker-deployment-planner, differing in 55 lines, and is treated as a copy.

Related

Other skills, from other repositories

modal-serverless-gpu

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

davila7/claude-code-templates · 42 tokens

modal-serverless-gpu

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

OpenLAIR/dr-claw · 42 tokens

hugging-face-model-trainer

This skill should be used when users want to train or fine-tune language models using TRL (Transformer Reinforcement Learning) on Hugging Face Jobs infrastructure. Covers SFT, DPO, GRPO and reward modeling training methods, plus GGUF conversion for local deployment. Includes guidance on the TRL Jobs package, UV…

synthetic-sciences/openscience · 131 tokens

modal-serverless-gpu

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

Orchestra-Research/AI-Research-SKILLs · 42 tokens

aws-genai-ml-architect

Reasoning skill for designing AWS GenAI and ML architectures for healthcare and life sciences workloads. Use when the user asks to choose between SageMaker and Bedrock, design a RAG system over medical literature, architect clinical NLP or medical imaging inference, plan genomics or drug discovery pipelines on AWS…

awslabs/hcls-agent-skills · 189 tokens

modal-serverless-gpu

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

liortesta/ClawdAgent · 42 tokens