- Home
- Skills
- Kienhaminh
- Anti Chaotic
- Ai Engineer
ai-engineer_skill
- Python
60
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill kienhaminh/anti-chaotic --skill ai-engineer- SKILL.md1.5 KB
Overview
This skill codifies engineering standards for building production-grade generative AI, agentic systems, advanced retrieval-augmented generation (RAG), and rigorous evaluation pipelines. It focuses on robustness, scalability, and operational reliability for inherently stochastic systems. The guidance helps teams move from prototypes to repeatable, observable production services.
How this skill works
It inspects system design across five core areas: multi-agent orchestration, advanced retrieval and knowledge integration, evaluation and regression testing, model integration and optimization, and production serving with MLOps practices. The skill maps common failure modes to practical mitigations—re-ranking, hybrid search, structured outputs, traceable prompts, and observability hooks. It also provides modular patterns so teams can load only the capabilities they need for a given project.
When to use it
- Building multi-agent workflows that need reliable planning and tool use.
- Implementing high-recall, high-precision RAG with hybrid search and re-ranking.
- Setting up evaluation pipelines with automated metrics and LLM-as-judge checks.
- Integrating models into services where latency, cost, and accuracy must be balanced.
- Operating GenAI systems in production with monitoring, tracing, and caching.
Best practices
- Design agents with clear capabilities, contracts, and failure-handling strategies.
- Use hybrid retrieval (dense + sparse) plus query expansion and re-ranking for robustness.
- Treat evaluations as CI: automated tests, regression baselines, and human-in-the-loop checks.
- Prefer structured outputs and function calling to reduce hallucinations and parsing errors.
- Instrument models and agents for observability: latency, token usage, drift, and error rates.
Example use cases
- A customer support system combining retrieval over a knowledge base with agents that call backend APIs safely.
- A research assistant that merges web, vector store, and knowledge-graph signals with re-ranking for precise answers.
- An evaluation pipeline that runs nightly regression tests with LLM judges and alerts on metric regression.
- A document ingestion pipeline that uses query expansion, chunking, and caching to speed up RAG responses.
FAQ
Base the choice on task requirements: use smaller, faster models for interactive latency constraints and larger models or cascaded rerankers when higher accuracy justifies cost and delay.
What are the first observability metrics to add?
Start with request latency, token consumption, success/failure rates, and semantic regression checks against baseline outputs.