agentic-workflows

Installation
SKILL.md

Agentic Workflows & RAG

Core Principles

  • Modularity: Separate concerns into distinct agent roles (e.g., Planner, Executor, Reviewer).
  • Context Management: Use RAG to fetch only highly relevant context to reduce token bloat.

Multi-Agent Architecture

%%{init: {"theme": "default", "flowchart": {"useMaxWidth": true}}}%%
flowchart TD
    A[User Request] --> B{Planner Agent}
    B -->|Search Query| C[RAG Pipeline]
    C --> B
    B --> D[Executor Agent]
    B --> E[Executor Agent]
    D --> F[Reviewer Agent]
    E --> F
    F --> G[Final Response]
Installs
3
GitHub Stars
21
First Seen
Aug 4, 2026
agentic-workflows — j4flmao/agent-skills