Agentic-Engineering-Playbook
A practical open-source roadmap to build production-grade AI agents, copilots, RAG systems, MCP tools, and agentic applications.
Install / Use
claude mcp add AnkitParekh007 -- npx -y github:AnkitParekh007/Agentic-Engineering-PlaybookIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
AutomationSupported Platforms
Tags
Skill content
View source on GitHubAgentic Engineering Playbook
A premium open-source AI engineering academy for developers who want to build production-grade agents, copilots, RAG systems, MCP integrations, eval pipelines, observability layers, and agentic UI through runnable projects.
Live docs: ankitparekh007.github.io/Agentic-Engineering-Playbook
Build premium AI engineering skill through runnable systems
Agentic Engineering Playbook is a project-first curriculum for developers, contributors, learners, and recruiters who want evidence of real AI engineering work rather than prompt-only demos.
- Learn through six runnable projects
- Study production tradeoffs in docs that stay close to implementation
- Contribute new chapters, diagrams, examples, and project upgrades
- Use the repo as a public proof-of-work system for AI engineering skill
Start here
- Live docs: Explore the academy
- Contributor onboarding: Contributor Quick Start
- Curriculum roadmap: Learning Path
- Angular track: Learning Path: Angular AI Engineer
- Agent track: Learning Path: AI Agentic Engineer
Visual preview
What this is
Agentic Engineering Playbook is a practical Docusaurus curriculum focused on production-grade AI application development. It covers the path from direct LLM API usage to RAG, orchestration, MCP, agentic UI, production security, evals, observability, deployment, and commercialization.
- Docs site: Explore the live academy
- GitHub: View the repository
Quick start
npm install
npm run start
npm run build
For a production-faithful local preview:
npm run build
npm run serve
Open the local site and start with the roadmap:
What you will build: visual map
flowchart LR
P1["P01: AI Provider Gateway"] --> P2["P02: Enterprise RAG Copilot"]
P2 --> P3["P03: Agent Workflow Orchestrator"]
P3 --> P4["P04: MCP Enterprise Toolkit"]
P4 --> P5["P05: Angular Agentic Copilot"]
P5 --> P6["P06: QA Browser Agent"]
P1 --> L1["Streaming + structured outputs"]
P2 --> L2["Retrieval + citations + evals"]
P3 --> L3["Plans + approvals + traces"]
P4 --> L4["Safe tools + resources + audit logs"]
P5 --> L5["Agentic UI + operator workflows"]
P6 --> L6["Browser automation + evidence capture"]
Launch status
- 6 runnable AI systems are implemented
- GitHub Pages is live
- CI covers docs plus safe local validation across the six projects
- real launch screenshots are now captured locally for the homepage, docs, Angular copilot, and QA report
- walkthrough GIFs are still an optional follow-up asset
Screenshots / demo assets
- social preview card in
static/img/social-card.svg - homepage dark capture in
static/img/screenshots/homepage-dark.png - homepage light capture in
static/img/screenshots/homepage-light.png - Angular Copilot capture in
static/img/screenshots/angular-copilot-demo.png - QA Browser Agent report capture in
static/img/screenshots/qa-browser-report.png - project doc dark-mode capture in
static/img/screenshots/project-doc-page-dark.png - local QA Browser Agent reports and screenshots are generated by Project 06 and intentionally ignored from Git
Visual system
- Inter for product and documentation typography
- JetBrains Mono for commands, code, and runtime surfaces
- dark-first AI-native theme with readable light-mode fallback
- reusable cards, badges, layout utilities, and MDX-friendly docs components
- visual QA checklist in
docs/open-source/visual-quality-checklist.md
Completed projects
| # | Project | What it teaches | Status | Link | | --- | --- | --- | --- | --- | | 01 | AI Provider Gateway | provider abstraction, streaming, structured outputs, tracing | Complete | Open | | 02 | Enterprise RAG Copilot | chunking, retrieval, citations, evals | Complete | Open | | 03 | Agent Workflow Orchestrator | state machines, approvals, retries, inspectable traces | Complete | Open | | 04 | MCP Enterprise Toolkit | safe tool interfaces, resources, audit logging, read-only MCP-style patterns | Complete | Open | | 05 | Angular Agentic Copilot | operator UX, streaming UI, approvals, session state | Complete | Open | | 06 | QA Browser Agent | safe browser automation, Playwright evidence capture, dry-run policy | Complete | Open |
What you will build
- a provider gateway that normalizes model calls
- a retrieval copilot with local evals
- an orchestration runtime with approval states
- an MCP-style enterprise tool layer
- an Angular copilot shell for operator-facing AI UX
- a safe QA browser agent with local evidence capture
Who should use this
- software engineers moving into AI product engineering
- full-stack developers building internal copilots
- founders validating agentic products
- consultants building enterprise AI delivery capability
What makes this different
- project-first instead of notes-first
- practical enterprise examples
- TypeScript-first with Python where useful
- security, evals, observability, and deployment included in the main path
- designed to create hiring signal, consulting leverage, and product-ready ideas
Why star, watch, or fork
- Star the repo if you want a practical open-source AI engineering curriculum to keep improving in public.
- Watch the repo if you want updates as new chapters, projects, challenges, and contributor workflows are added.
- Fork the repo if you want a personalized learning academy, an internal enablement version, or a portfolio variant tied to your own projects.
Recruiter value
This repository is useful to recruiters and hiring managers because it makes AI engineering skill visible in public:
- docs show architecture thinking, production constraints, and system boundaries
- projects show runnable implementation skill across backend, UI, evals, and deployment
- contribution guides and templates show collaboration readiness
- the learning paths make it easy to evaluate focus areas such as Angular AI engineering, agent orchestration, RAG, MCP, and observability
The repo does not claim student counts, adoption, or revenue. Its value is practical proof of work.
90-day roadmap
Days 1-30
- finish LLM foundations and provider gateway work
- learn prompt contracts, structured outputs, and streaming
- publish the first architecture note and demo
Days 31-60
- build the enterprise RAG copilot
- add retrieval quality thinking, citations, and evals
- document tradeoffs, metrics, and failure modes
Days 61-90
- build orchestration, MCP, agentic UI, and deployment layers
- add approvals, traces, and production hardening
- package the strongest projects into portfolio-ready public assets
Repository structure
docs/ Curriculum chapters and roadmap content
projects/ Project briefs and starter implementations
src/ Docusaurus site source
static/ Site assets
templates/ Reusable prompts, checklists, and diagrams
Community growth docs
- Contributor Quick Start
- Contribute a Chapter
- Weekly Challenge
- Project Submission Template
- Contributor Roadmap
- Launch Plan
Run all checks
Root docs:
npm run build
Project checks:
cd projects/p01-ai-provider-gateway && npm run typecheck && npm run build && npm run smoke
cd ../p02-enterprise-rag-copilot && npm run typecheck && npm run build && npm run smoke && npm run eval
cd ../p03-agent-workflow-orchestrator && npm run typecheck && npm run build && npm run smoke && npm run eval
cd ../p04-mcp-enterprise-toolkit && npm run typecheck && npm run build && npm run smoke && npm run eval
cd ../p05-angular-agentic-copilot && npm run build && npm run smoke
cd ../p06-qa-browser-agent && npm run typecheck && npm run build && npm run smoke && npm run eval
CI covers the same safe checks on pull requests and pushes to main. Project 06 deliberately keeps browser-smoke out of CI so the pipeline stays deterministic and does not depend on a browser install or external targets.
Deployment
The repository includes:
- CI build validation on
pushandpull_request - GitHub Pages deployment from
main - a Docusaurus config already aligned to
AnkitParekh007/Agentic-Engineering-Playbook
If GitHub Pages is not live yet, enable it in repository settings and choose GitHub Actions as the source.
Contributing
Contributions are welcome for curriculum accuracy, code examples, diagrams, Docusaurus improvements, and starter project scaffolding.
- Read CONTRIBUTING.md
- Start with Contributor Quick Start
- Use Contribute a Chapter for content PRs
- Use Project Submission Template when proposing a runnable project
- Open an issue for curriculum gaps or implementation bugs
- Send a PR for docs fixes, build improvements, or new examples
Launch and community CTA
If this repository is useful:
- star it to support the project
- watch it for roadmap updates
- fork it to build your own learning track or internal variant
- share it with developers who want to move from AI demos to real systems
License
MIT
Related Skills
Agent-Reach
80.9kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
ruflo
72.4k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
headroom
72.1kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
career-ops
71.6kOpen-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
