Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

ai-llm-engineeringAI LLM engineering 搜索

Agent Skill

ai-llm-engineering 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

181

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-llm-engineering(AI LLM engineering 搜索)
来源仓库:https://github.com/microck/ordinary-claude-skills
仓库路径:skills/ai-llm-engineering
安装命令:
npx skills add https://github.com/microck/ordinary-claude-skills --skill ai-llm-engineering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/microck/ordinary-claude-skills --skill ai-llm-engineering

简介

AI LLM engineering 提供生产级 LLM 系统的操作指南与决策框架,覆盖数据、训练、评估、部署和 LLMOps 全流程。

  • 适用于需要快速定位 LLM 工程实践、标准化生产流程或调用专项技能进行深度开发的场景。
  • 通过关键词或任务目标触发,返回结构化指引并推荐相关子技能,支持多阶段 AI 系统开发。
  • 安装需通过 npx skills add 命令从指定仓库添加,使用前应确认环境权限与 API 配置状态。
  • 涉及模型训练、推理或生产部署时,需注意数据合规、资源开销及安全边界控制。

SKILL.md

LLM Engineering – Operational Skill Hub

A single resource for executing, validating, and scaling LLM systems with modern production standards, while delegating domain depth to specialized skills.

This skill provides quick reference, decision frameworks, and navigation to detailed operational patterns for:

  • Data, training, fine-tuning (PEFT/LoRA standard)
  • Evaluation (automated testing, metrics, rollout gates)
  • Deployment (vLLM 24x throughput, FP8/FP4 quantization)
  • LLMOps (automated drift detection, retraining)
  • Safety (multi-layered defenses, AI-powered guardrails)

For detailed patterns: See Resources and Templates sections below.


Quick Reference

TaskTool/FrameworkCommand/PatternWhen to Use
RAG PipelineLlamaIndex, LangChainPage-level chunking + hybrid retrievalDynamic knowledge, 0.648 accuracy
Agentic WorkflowLangGraph, AutoGen, CrewAIReAct, multi-agent orchestrationComplex tasks, tool use required
Prompt DesignAnthropic, OpenAI guidesCoT, few-shot, structuredTask-specific behavior control
EvaluationLangSmith, W&B, RAGASMulti-metric (hallucination, bias, cost)Quality validation, A/B testing
Production DeployvLLM, TensorRT-LLMFP8/FP4 quantization, 24x throughputHigh-throughput serving, cost optimization
MonitoringArize Phoenix, LangFuseDrift detection, 18-second responseProduction LLM systems

Decision Tree: LLM System Architecture

Building LLM application: [Architecture Selection]
    ├─ Need current knowledge?
    │   ├─ Simple Q&A? → Basic RAG (page-level chunking + hybrid retrieval)
    │   └─ Complex retrieval? → Advanced RAG (reranking + contextual retrieval)
    │
    ├─ Need tool use / actions?
    │   ├─ Single task? → Simple agent (ReAct pattern)
    │   └─ Multi-step workflow? → Multi-agent (LangGraph, CrewAI)
    │
    ├─ Static behavior sufficient?
    │   ├─ Quick MVP? → Prompt engineering (CI/CD integrated)
    │   └─ Production quality? → Fine-tuning (PEFT/LoRA)
    │
    └─ Best results?
        └─ Hybrid (RAG + Fine-tuning + Agents) → Comprehensive solution

See Decision Matrices for detailed selection criteria.


When to Use This Skill

Claude should invoke this skill when the user asks about:

  • LLM preflight/project checklists, production best practices, or data pipelines
  • Building or deploying RAG, agentic, or prompt-based LLM apps
  • Prompt design, chain-of-thought (CoT), ReAct, or template patterns
  • Troubleshooting LLM hallucination, bias, retrieval issues, or production failures
  • Evaluating LLMs: benchmarks, multi-metric eval, or rollout/monitoring
  • LLMOps: deployment, rollback, scaling, resource optimization
  • Technology stack selection (models, vector DBs, frameworks)
  • Production deployment strategies and operational patterns

Scope Boundaries (Use These Skills for Depth)


Resources (Best Practices & Operational Patterns)

Comprehensive operational guides with checklists, patterns, and decision frameworks:

Core Operational Patterns

- AI engineering stack selection matrix - Feature/Training/Inference (FTI) pipeline blueprint - Performance budgeting and goodput gates - Progressive complexity (prompt → RAG → fine-tune → hybrid)

- LLM lifecycle checklist (modern production standards) - Data & training, RAG pipeline, deployment & serving - Safety/guardrails, evaluation, agentic systems - Reliability & data infrastructure (DDIA-grade) - Weekly production tasks

- Chain-of-Thought (CoT) prompting - ReAct (Reason + Act) pattern - RAG pipeline (minimal to advanced) - Agentic planning loop - Self-reflection and multi-agent collaboration

- RAG type decision matrix (naive → advanced → modular) - Production evaluation table with targets and actions - Model selection matrix (GPT-4, Claude, Gemini, self-hosted) - Vector database, embedding model, framework selection - Deployment strategy matrix

- Data leakage, prompt dilution, RAG context overload - Agentic runaway, over-engineering, ignoring evaluation - Hard-coded prompts, missing observability - Detection methods and prevention code examples

Domain-Specific Patterns

Note: Each resource file includes preflight/validation checklists, copy-paste reference tables, inline templates, anti-patterns, and decision matrices.


Templates (Copy-Paste Ready)

Production templates by use case and technology:

RAG Pipelines

  • Basic RAG - Simple retrieval-augmented generation
  • Advanced RAG - Hybrid retrieval, reranking, contextual embeddings

Prompt Engineering

Agentic Workflows

Data Pipelines

Deployment

Evaluation


Related Skills

This skill integrates with complementary Claude Code skills:

Core Dependencies

Production & Operations


External Resources

See data/sources.json for 50+ curated authoritative sources:

  • Official LLM platform docs - OpenAI, Anthropic, Gemini, Mistral, Azure OpenAI, AWS Bedrock
  • Open-source models and frameworks - HuggingFace Transformers, LLaMA, vLLM, PEFT/LoRA, DeepSpeed
  • RAG frameworks and vector DBs - LlamaIndex, LangChain, LangGraph, Haystack, Pinecone, Qdrant, Chroma
  • 2025 Agentic frameworks - Anthropic Agent SDK, AutoGen, CrewAI, LangGraph Multi-Agent, Semantic Kernel
  • 2025 RAG innovations - Microsoft GraphRAG (knowledge graphs), Pathway (real-time), hybrid retrieval
  • Prompt engineering - Anthropic Prompt Library, Prompt Engineering Guide, CoT/ReAct patterns
  • Evaluation and monitoring - OpenAI Evals, HELM, Anthropic Evals, LangSmith, W&B, Arize Phoenix
  • Production deployment - LiteLLM, Ollama, RunPod, Together AI, vLLM serving

Usage

For New Projects

  1. Start with Production Checklists - Validate all pre-deployment requirements
  2. Use Decision Matrices - Select technology stack
  3. Reference Project Planning Patterns - Design FTI pipeline
  4. Implement with Common Design Patterns - Copy-paste code examples
  5. Avoid Anti-Patterns - Learn from common mistakes

For Troubleshooting

  1. Check Anti-Patterns - Identify failure modes and mitigations
  2. Use Decision Matrices - Evaluate if architecture fits use case
  3. Reference Common Design Patterns - Verify implementation correctness

For Ongoing Operations

  1. Follow Production Checklists - Weekly operational tasks
  2. Integrate Evaluation Patterns - Continuous quality monitoring
  3. Apply LLMOps Best Practices - Deployment and rollback procedures

Navigation Summary

Quick Decisions: Decision Matrices Pre-Deployment: Production Checklists Planning: Project Planning Patterns Implementation: Common Design Patterns Troubleshooting: Anti-Patterns

Domain Depth: LLMOps | Evaluation | Prompts | Agents | RAG

Templates: templates/ - Copy-paste ready production code

Sources: data/sources.json - Authoritative documentation links


适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.56%
按下载量换算38

Codex

23.64%
按下载量换算30

Antigravity

16.81%
按下载量换算21

windsurf

14.14%
按下载量换算18

Gemini CLI

8.62%
按下载量换算11

OpenCode

3.71%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills