






















MLS · Machine Learning Systems · Workshop
From vibe coding to engineering with AI agents
🤖 Agent Loop · 🔌 MCP · 🔧 Tools · 🧠 Memory · 📐 Skills
| When | What | Note |
|---|---|---|
| 2023 | “The hottest new programming language is English.” | — Karpathy |
| Feb 2025 | “Vibe coding” coined | “Forget the code exists.” Collins Word of the Year. |
| Late 2025 | The hangover | Security flaws. Unmaintainable code. |
| Feb 2026 | “Agentic engineering” | Orchestrate agents with oversight. Human as reviewer. |
Key shift: From “accept all, don’t read diffs” → “define goals, review results, verify performance.”

Ref: Steve Yegge — “Welcome to Gas Town” (2025)
1 | |
Human does all the work.
1 | |
Agent loops until pass; human reviews.
| Date | Model | Highlights |
|---|---|---|
| Sep 2025 | Sonnet 4.5 | SWE-bench 77.2%, 30+ hour tasks |
| Nov 2025 | Opus 4.5 | Flagship reasoning, major coding gains |
| Feb 2026 | Opus 4.6 + Sonnet 4.6 | Agent Teams, 1M context, SWE-bench 79.6% |
Key insight: Models went from “fancy autocomplete” to autonomous multi-step execution. That’s the difference between Copilot 2024 and Claude Code 2026.
1 | |
Human role: Define goals, review results, understand the hardware. The agent writes code; you verify it’s correct and efficient.
Let’s learn how to break tasks into agentic skills.

Result: Agent + Skills + Agent VM = an autonomous coding partner, not just a chatbot.

🤖 Agent — the reasoning engine
Reason → Act → Observe → Loop. Drives the autonomous cycle.
🔌 MCP — connect external tools
Gives AI structured docs about external tools + JSON output for precise API calls.
📐 Skills — what to do & how
Folders of instructions (SKILL.md) + scripts + reference files. Agent discovers & loads them on demand.
Most skills execute locally but in separate virtual environments (e.g. Python venv, Node env) to isolate dependencies and side effects.
Skills encode workflows; MCP connects tools; the Agent reasons over both. Together they turn a chatbot into an autonomous coding partner.
Ref: Equipping agents for the real world with agent skills

A single SKILL.md file with all instructions.
Good for: commit conventions, code review checklists, deploy scripts.
Ref: Equipping agents for the real world with agent skills

SKILL.md + optional bundled components, loaded on demand.
SKILL.md — core instructions (always the entry point)Common optional extensions:
code/ — executable scripts, helperstemplates/ — boilerplate, scaffoldingforms/ — structured input schemasreference/ — docs, examples, specsAgent only pulls each component when the task actually needs it — keeps the context window lean.
Ref: Equipping agents for the real world with agent skills
| Claude Code / Cursor | Copilot (Plugin) | |
|---|---|---|
| Form factor | Terminal / Full IDE | VS Code extension |
| Context | @ to add files & folders |
@ to add files |
| Commands | / to invoke tools & skills |
/ to load saved prompts |
| Agent loop | YOLO mode, git worktree for parallel agents | Chat + inline |
Note: boundaries aren’t absolute — Cursor has its own agent mode, and Cline as a plugin also supports full agent workflows. What matters is learning to use agent skills effectively.
1 | |
Without clear pass/fail, the agent can’t self-correct.
CLAUDE.md for project rulesnpm install -g @anthropic-ai/claude-code — Install (Node.js 18+)cd your-project && claude — Launch in your project directory"Read the README and explain the project structure" — Agent analyzes"Implement feature X following the existing patterns. Run the tests." — Start small"Fix any failing tests and explain what went wrong" — Let the agent loopAlternatives: Cursor · GitHub Copilot (free for students) · Antigravity
Questions? 🚀
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。