python-ai-ml

python-ai-ml is a skill for Claude Code, Codex from JakubMikolajek/codex-skills-collection. It costs 81 tokens per session (2,193 once invoked), scanned A, original, MIT.

A guide to building Python systems that use language-model APIs, retrieval-augmented generation, embeddings, and vector databases. Retrieval-augmented generation finds relevant stored information before asking a model to produce an answer.

In plain words
What is it for?
Use it for LLM integrations, document chunking and embeddings, retrieval pipelines, vector-store queries, and related data preparation.
Why use it?
It helps control changing model behavior, token costs, failed API calls, and unreliable retrieval results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for LLM integrations, document chunking and embeddings, retrieval pipelines, vector-store queries, and related data preparation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jakubmikolajek/codex-skills-collection/python-ai-ml
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 JakubMikolajek/codex-skills-collection --skill python-ai-ml
Clone the repo
git clone --depth 1 https://github.com/JakubMikolajek/codex-skills-collection

Made for: Claude Code, 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 python-ai-ml

README.md
[![agentmods](https://agentmods.dev/badge/skills/jakubmikolajek/codex-skills-collection/python-ai-ml/github.svg)](https://agentmods.dev/skills/jakubmikolajek/codex-skills-collection/python-ai-ml)
Your own site
<a href="https://agentmods.dev/skills/jakubmikolajek/codex-skills-collection/python-ai-ml"><img src="https://agentmods.dev/badge/skills/jakubmikolajek/codex-skills-collection/python-ai-ml/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 python-ai-ml

Your own site · 80×15
<a href="https://agentmods.dev/skills/jakubmikolajek/codex-skills-collection/python-ai-ml"><img src="https://agentmods.dev/badge/skills/jakubmikolajek/codex-skills-collection/python-ai-ml.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 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 original No closer match found 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.00081 $0.02193
Opus 5 $0.00041 $0.01097
Sonnet 5 $0.00016 $0.00439
Haiku 4.5 $0.00008 $0.00219

Measured 8d ago against content hash edbb4fd7d170, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

python-ai-ml 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 8d 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.

skills/python-ai-ml/SKILL.md · 233 lines

How it starts

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

Python AI/ML Implementation Patterns

Use this skill for LLM-integrated systems, RAG architectures, and AI-adjacent data pipelines. The bias is toward correctness of data flow, cost awareness, and reproducibility — not toward ML research patterns.

Delivery Workflow

AI/ML progress:
- [ ] Step 1: Discover existing pipeline structure, models in use, and vector store schema
- [ ] Step 2: Define data shapes for chunking, embedding, and retrieval contracts
- [ ] Step 3: Implement with explicit model versioning and token budgeting
- [ ] Step 4: Add error handling for API failures, rate limits, and empty retrievals
- [ ] Step 5: Verify retrieval quality, cost controls, and pipeline observability

LLM API Integration

  • Pin the model name as a configuration value, never as a string literal in business logic. Model behavior changes between versions.
  • Always set max_tokens explicitly — never accept provider defaults that can silently inflate cost.
  • Use temperature=0 for deterministic tasks (classification, extraction, code generation); use higher values only when diversity is intentional.
  • Implement retry logic with exponential backoff for rate limit and transient errors — use tenacity or equivalent.
  • Log token usage per call for cost tracking; surface as metrics in production pipelines.
  • Never send raw user input directly to an LLM API in multi-tenant contexts — sanitize or scope prompt injection risks explicitly.
from openai import AsyncOpenAI
from tenacity import retry, stop_after_attempt, wait_exponential

client = AsyncOpenAI()

@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=2, max=10))
async def complete(
    prompt: str,
    model: str,
    max_tokens: int,
    temperature: float = 0.0,
) -> str:
    response = await client.chat.completions.create(
        model=model,
        messages=[{"role": "user", "content": prompt}],
        max_tokens=max_tokens,
        temperature=temperature,
    )
    return response.choices[0].message.content or ""

Read the full file on GitHub · 233 lines

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. 8d ago First seen · 233 lines · 81 tokens per session scan A edbb4fd7d170

Subscribe to this mod's changes

python-ai-ml is a skill published in the GitHub repository JakubMikolajek/codex-skills-collection (5 stars, last pushed 3d ago), licensed MIT. It adds 81 tokens to every session and 2,193 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories