SkillAgentSearch skills...

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-Playbook

If the server publishes to npm under a different name, use that package instead — check the repo README.

About this skill
🔌

MCP Server

Model Context Protocol server

Quality Score

81/100

Category

Automation

Supported Platforms

Claude Code
Claude Desktop
GitHub Copilot

Tags

Agentic Engineering Playbook

Build Deploy License Docs Status Systems

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

Visual preview

Agentic Engineering Playbook social 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.

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

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

  1. a provider gateway that normalizes model calls
  2. a retrieval copilot with local evals
  3. an orchestration runtime with approval states
  4. an MCP-style enterprise tool layer
  5. an Angular copilot shell for operator-facing AI UX
  6. 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

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 push and pull_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.

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

View on GitHub
GitHub Stars3
CategoryAutomation
Updated1mo ago
Forks0

Languages

TypeScript

Security Score

92/100

Audited on Aug 9, 2026

1 low