Ai Llm logo

Ai Llm

Community
vasilyu1983
ai-llm

Guides the LLM lifecycle from strategy to deployment. Use when planning, comparing, fine-tuning, distilling, compressing, migrating, or operating LLM systems.

Overview

Publishervasilyu1983
RepositoryAI-Agents-public
Skill nameai-llm
Stars
87
Forks
19
Bundled files
41
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 41 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by vasilyu1983 on GitHub. Read the source before you install it.

Installation

Install the Ai Llm AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/vasilyu1983/AI-Agents-public.git /tmp/AI-Agents-public
mkdir -p .claude/skills
cp -r /tmp/AI-Agents-public/frameworks/shared-skills/skills/ai-llm .claude/skills/ai-llm
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ai Llm in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ai Llm on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ai Llm is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

LLM Engineering - Lifecycle Skill

Modern Best Practices: treat the model as a versioned component with contracts, eval gates, rollout controls, cost budgets, and explicit fallback paths. Prefer stable decision criteria over static "best model" lists, and verify volatile provider facts against current official docs before recommending a stack.

This skill is the umbrella skill for deciding how to build, adapt, evaluate, migrate, and operate LLM systems.

Use this skill for architecture and lifecycle decisions. Use sibling skills for implementation depth.

No theory. No generic AI history. Focus on operational choices, tradeoffs, checklists, and reusable templates.

ASCII Flow

text
LLM product need
  |
  v
outcome contract
  task + users + quality + latency + cost + privacy/compliance
  |
  v
architecture choice
  prompt-only -> RAG -> tools/agents -> adaptation/fine-tuning -> hybrid
  |
  v
evaluation and rollout
  golden set + edge cases + canary + observability + rollback
  |
  v
operated model component
  versioned prompts/models/configs + fallbacks + governance

When to Use This Skill

Activate this skill when the user asks for:

  • Choosing between prompt-only, RAG, tool use, fine-tuning, or hybrid LLM architectures
  • Selecting a provider, model tier, or deployment path for a production workload
  • Planning or reviewing model/provider migrations
  • Designing eval suites, graders, rollout gates, and regression policies
  • Calculating cost, latency, and quality tradeoffs at the system level
  • Defining LLM governance: data handling, safety boundaries, compliance, and rollback
  • Building current recommendations that depend on provider/platform capabilities
  • Creating a preflight plan for an LLM project before implementation begins

Scope Boundaries (Use These Skills for Depth)

  • Choosing the approach first (classical ML vs LLM vs RAG vs fine-tune vs agent) -> ai-architecture-advisor
  • Eval methodology: LLM-judge bias, framework choice, threshold calibration, reproducibility -> ai-evals
  • Prompt design, structured outputs, prompt CI/CD -> ai-prompt-engineering
  • RAG design, chunking, retrieval, reranking -> ai-rag
  • Agent architectures, MCP tools, multi-agent orchestration -> ai-agents
  • Serving optimization, batching, routing, quantization -> ai-llm-inference
  • Deployment, monitoring, incident response, security depth -> ai-mlops
  • Hugging Face-specific LLM training workflows (TRL, SFT, DPO, GRPO) -> use the huggingface-skills: plugin (external)
  • Build a transformer/GPT and BPE tokenizer from scratch (pre-training layer) -> ai-pretraining
  • Multi-GPU pre-training: FSDP, DeepSpeed ZeRO, tensor/pipeline parallelism, reproduce GPT-2 -> ai-distributed-training
  • Scaling laws, Chinchilla compute-optimal sizing, token/param budget -> ai-scaling-laws
  • Web-scale + synthetic pre-training corpus curation and data ablations -> ai-data-curation-pretraining
  • Post-training depth: RLHF/PPO, DPO, GRPO, RLVR, reward modeling, alignment, and reasoning-model training -> ai-post-training

Default Workflow

  1. Clarify the outcome: task, users, required quality, latency budget, cost ceiling, privacy/compliance constraints.
  2. Pick the simplest architecture that can work: prompt-only -> RAG -> tool use/agent -> adaptation/fine-tuning -> hybrid.
  3. Define the contract first: input shape, output contract, allowed tools, retrieval boundaries, failure modes.
  4. Choose the adaptation path: prompting, retrieval, adapters/SFT, preference optimization, or a combination.
  5. Design evaluation before rollout: golden set, edge cases, adversarial cases, format validation, online checks.
  6. Plan deployment controls: versioning, canarying, observability, rollback, degraded mode.

Decision Tree: Architecture and Adaptation

text
Starting an LLM project
    ├─ Is the task mostly instruction following with stable inputs?
    │   └─ Start prompt-only with explicit contracts and evals
    ├─ Do you need current or private knowledge?
    │   └─ Add retrieval (RAG) before considering fine-tuning
    ├─ Do you need external actions or tool use?
    │   └─ Add bounded tool use or an agent workflow
    ├─ Does the system still fail in a repeated, stable way after prompt/RAG/tool fixes?
    │   └─ Consider adapters/SFT or preference optimization
    └─ Do you need multiple capabilities together?
        └─ Build a hybrid system, but keep each layer independently testable

Quick Reference

Decision AreaDefault MovePromote Complexity WhenAvoid
Architecture selectionStart prompt-onlyMissing knowledge, repeated failures, or external actions are requiredJumping straight to fine-tuning
RetrievalAdd hybrid retrieval + citationsCorpus is large, fresh, or access-controlledTreating RAG as a fix for poor instructions
Fine-tuningUse only for stable repeated behavior gapsYou have quality data, stable tasks, and eval coverageTuning for information that should live in retrieval
Model selectionRank by quality, latency, cost, privacy, and supportabilityUser constraints are strict or multi-provider fallback is neededPicking a model from benchmarks alone
MigrationPreserve contracts, then replay evalsAPI surface or reliability requirements changedBlind prompt copy-paste between providers
RolloutCanary + compare + rollback planProduction traffic is material or high riskSingle-shot model swaps

Known Traps

  • escalating to fine-tuning when the real issue is retrieval, tool grounding, or weak output contracts
  • migrating providers by copying prompts only and ignoring schema, tool-call, safety, and retry differences
  • choosing models from leaderboard screenshots without checking latency, quotas, privacy, or supportability
  • shipping fallback models or silent reroutes that produce different behavior with no contract tests
  • treating judge-model scores as ground truth instead of one input in a calibrated eval program
  • budgeting off introductory/launch pricing without checking the expiry date — providers frequently run time-boxed discounts on a newly released tier (verify the current pricing page for an end date, not just the headline number)
  • building or maintaining an integration on a provider's deprecated beta surface (e.g., an API family with a published sunset date) without a migration plan already in motion

Common Anti-Patterns

  • benchmark-first architecture selection
  • rollout without a slice-based regression set and rollback trigger
  • prompt and model changes shipped together so regressions cannot be attributed
  • "cost optimization" that lowers success rate and raises cost per successful task
  • provider-specific capabilities hardcoded into durable strategy docs without freshness checks

Core Principles

1. Contracts Before Cleverness

  • Define inputs, outputs, schemas, tool boundaries, and refusal behavior before optimizing prompts or models.
  • Prefer provider-native structured output and tool contracts when available, with application-side validation as the source of truth.
  • Treat prompt text as one part of the contract, not the contract itself.

2. Prefer Stable Guidance Over Static Rankings

  • Model rankings, pricing, quotas, context limits, and framework momentum are volatile.
  • Keep stable decision criteria in the skill; verify current winners with current docs, release notes, and pricing pages.
  • When the user asks for "best" or "latest", search current official sources before making a recommendation.

3. Reasoning Is Model-Specific

  • Do not default to prompting for full visible chain-of-thought.
  • Prefer internal reasoning with a concise final answer or brief justification.
  • Ask for explicit visible steps only when the task is educational, audit-oriented, mathematical, or the user explicitly wants the steps shown.

4. Evals Are Release Gates

  • Every prompt, model, retrieval, or tool change should be testable against a versioned eval set.
  • Judge models and graders are useful, but they are not ground truth; keep a human-calibrated subset.
  • Track regressions by slice, not only by a global average.

5. Cost Is Per Successful Outcome

  • Measure cost per successful task, not just cost per token.
  • Budget for retries, failures, tool calls, retrieval, and observability overhead.
  • Add routing, caching, and output limits early when economics matter.

Current-Facts Protocol (Required for Volatile-Fact Questions)

Use this protocol whenever the user asks about current providers, models, frameworks, prices, or regulations.

Trigger Conditions

  • "What is the best model/framework right now?"
  • "Is this still current in 2026?"
  • "What should I use for structured outputs / RAG / agents / fine-tuning?"
  • "Which provider is cheapest / fastest / best for X?"
  • "Can I still use this API / framework / model?"

Verification Steps

  1. Confirm user constraints: latency, quality floor, cost ceiling, compliance/privacy, hosting model, toolchain.
  2. Check at least two official or primary sources from data/sources.json.
  3. Prefer release notes, pricing pages, API docs, and deprecation pages over blogs or benchmark roundups.
  4. Report what is stable vs what is volatile.

What to Report

  • Stable recommendation criteria: why a category or approach fits
  • Current platform reality: API family, supported features, structured output/tooling path, pricing/deprecation caveats
  • Migration risk: what breaks if the user changes provider/model
  • Fallback option: second-best path if the preferred option changes

Scripts

ScriptPurpose
scripts/prompt_eval_runner.pyRun a regression JSONL suite (input/expected_substring/expected_schema) and report pass rate. Validates pre-collected outputs — does not call any LLM API.
scripts/cost_estimator.pyEstimate USD cost across providers from token counts or a prompt file. Provider pricing table embedded; update when rates change.

Navigation: Core References

  • Production Checklists - preflight, rollout, and operational validation
  • Decision Matrices - architecture, retrieval, embeddings, frameworks, deployment, MoE vs dense, and distributed training parallelism
  • Post-Training 2026 - 2026 post-training stack: GRPO, DAPO, GSPO (MoE), RLVR, SimPO, KTO vs PPO/DPO; decision tree and comparison table. Reasoning-model training (RLVR, GRPO, thinking-budget-as-a-dial) and test-time compute scaling are covered here and in Advanced LLM Patterns; for full alignment/reward-modeling depth see ai-post-training.
  • Project Planning Patterns - milestone planning, stack selection, and pipeline design
  • Model Migration Guide - contract-first migration, eval replay, canaries, and rollback
  • Evaluation Patterns - offline/online evaluation, lm-eval-harness standard, judge-model calibration, traceability
  • Cost Economics - TCO, budget guardrails, and ROI framing
  • Fine-Tuning Recipes - SFT, LoRA, mid-training/annealing, over-training regime, and the 2026 post-training stack pointer
  • Advanced LLM Patterns - RLHF loop, pretraining path, test-time compute scaling, and model compression: quantization, pruning (pointers to ai-llm-inference pruning-and-sparsity), and knowledge distillation recipes (logit KD, sequence KD, on-policy MiniLLM/GKD, rationale, prune-then-distill Minitron, reasoning-trace) (teacher soft labels -> student training -> validation). This skill owns the distillation recipe; ai-architecture-advisor owns the prior decision of whether to distil at all, and ai-pretraining explicitly delegates distillation here.
  • Tokenizer Diagnostics - debugging production tokenizer failures: fertility and parity metrics, glitch/undertrained tokens, domain-mismatch fragmentation, number tokenization as an arithmetic failure source, and typo brittleness. Start here when a model misbehaves on only a subset of inputs. The constructive counterpart — building a BPE tokenizer — is ai-pretraining.
  • Dataset Formatting Guide - instruction/chat/transformation formats, dataset hygiene, and SFT loss-masking mechanics (ignore_index=-100, keeping the first EOS unmasked, per-batch dynamic padding). ai-pretraining delegates SFT formatting here.
  • Structured Output Patterns - provider-native schema enforcement and validation fallbacks
  • Multimodal Patterns - vision/audio/document workflows with explicit freshness caveats
  • Anti-Patterns - failure modes to detect early

Templates

Use templates as starting points, not as drop-in truth for current providers:

Shared Utilities (Centralized Patterns)

External Sources

See data/sources.json for curated primary sources across:

  • Official provider docs, pricing, and API guides
  • Model adaptation and training references
  • Retrieval and agent frameworks
  • Evaluation and observability tooling
  • Security, governance, and protocol standards

Fact-Checking Rule

  • Known bugs, regressions, framework/compiler/runtime footguns, and version-specific crash or workaround guidance must be verified against current primary web sources before being treated as current fact.
  • Verify volatile external facts before final answers.
  • Prefer official docs, standards, release notes, and pricing pages.
  • If you cannot verify, say so explicitly and present the guidance as a dated assumption instead of a fact.

Learnings Loop

Before applying this skill on a non-trivial task, read learnings.consolidated.md in this directory (and learnings.md if present).

After applying it, if you encountered a pattern worth remembering, a mistake worth preventing, or a domain fact that surprised you, append one dated bullet to learnings.md via agents-skills-feedback-loop/scripts/append_learning.py. Do not modify SKILL.md itself.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Ai Llm AI skill do?

Guides the LLM lifecycle from strategy to deployment. Use when planning, comparing, fine-tuning, distilling, compressing, migrating, or operating LLM systems.

Why use Ai Llm on TypingMind?

Because you install it once and use it with any model. Ai Llm is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ai Llm in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/vasilyu1983/AI-Agents-public/tree/main/frameworks/shared-skills/skills/ai-llm. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Ai Llm?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ai Llm?

As many as you like. As long as a model supports skills, you can use Ai Llm with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ai Llm AI skill free?

Yes. It is published on GitHub by vasilyu1983 under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇