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]