What is AI?
AI is software that can process information, recognize patterns, make decisions, and generate useful output. Example: a model can summarize a failed Jenkins log and suggest the likely root cause.
Core concepts
These are the terms you need to understand clearly before building anything serious. They are not just buzzwords. Each one matters in how AI systems behave and how you design reliable agents.
AI is software that can process information, recognize patterns, make decisions, and generate useful output. Example: a model can summarize a failed Jenkins log and suggest the likely root cause.
A prompt is the instruction you give the model. It tells the AI the task, context, constraints, and how you want the answer structured.
A workflow is the sequence of steps an AI follows: read input → gather context → analyze → decide → return result. Example: inspect Terraform → find risky configuration → explain impact → suggest fix.
An LLM is a large language model. It predicts the next text based on learned patterns and can generate explanations, summaries, code, and structured output.
RAG means Retrieval-Augmented Generation. It combines search and retrieval with AI generation so the model uses your docs, runbooks, or architecture files as context.
An agent is an AI system with a goal. It can use tools, follow a workflow, and iterate until it solves the task or reaches a stop condition.
A skill is a reusable instruction set for one job, such as AWS cost optimization, Kubernetes troubleshooting, or Jenkins failure review. It sets boundaries and expected output.
MCP stands for Model Context Protocol. It is a standard interface for connecting an AI system to tools, files, APIs, and local services in a structured way.
This is when one agent does one job and then calls another agent for the next stage. Example: a Research Agent gathers sources, a Summarizer Agent writes a brief, and a Validator Agent checks for mistakes.
In plain English
A prompt is the instruction you give the AI. Example: “Review this Terraform file and list 3 possible security issues.”
A workflow is the step sequence. Example: read file → detect issue → explain risk → suggest fix.
An LLM is the model that generates human-like answers from the prompt and context.
An agent is a system that does a real job using a prompt, workflow, tools, and memory.
A skill is a reusable job-specific instruction set. Example: Kubernetes troubleshooting skill.
MCP is a way for the agent to connect to tools and external systems in a structured way.