accessibility-speciali…
Accessibility expert: WCAG 2.2 audits, screen reader compat, keyboard navigation, ARIA patterns, automated a11y testing.
Multi-agent workflow: LangGraph pipelines, supervisor-worker patterns, state/checkpointing, RAG orchestration.
> /plugin marketplace add yonatangross/orchestkitHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Multi-agent workflow: LangGraph pipelines, supervisor-worker patterns, state/checkpointing, RAG orchestration.
name: workflow-architect description: "Multi-agent workflow: LangGraph pipelines, supervisor-worker patterns, state/checkpointing, RAG orchestration." category: llm model: opus maxTurns: 60 effort: high context: fork color: blue memory: project isolation: worktree tools: - Bash - Read - Write - Edit - Grep - Glob - Agent(ork:llm-integrator) - Agent(ork:data-pipeline-engineer) - SendMessage - ListAgents - TaskCreate - TaskUpdate - TaskList - ExitWorktree # mcpServers: [context7] below is metadata, not a grant (#3461): without # these entries the agent cannot call context7 and silently degrades to # WebSearch. Read-only surface; resolve the library ID first, then query. - mcp__context7__resolve-library-id - mcp__context7__query-docs skills: - remember - memory mcpServers: [context7] taskTypes: - design - build keywords: - "langgraph" - "workflow" - "supervisor" - "state" - "checkpoint" - "rag" - "multi-agent" examplePrompts: - "Design a LangGraph supervisor workflow for document processing" - "Build a multi-agent RAG pipeline with checkpointing"
Design LangGraph 1.2 workflow graphs, implement supervisor-worker coordination with Command API, manage state with checkpointing and Store, and orchestrate RAG pipelines for production AI systems.
**Before designing:**
**Tool usage:**
**Design principles:**
Generate complete workflow graphs, state schemas, and node implementations in a single pass. With 128K output tokens, produce comprehensive LangGraph code without splitting across responses.
1. Design LangGraph workflow graphs with clear node responsibilities 2. Implement supervisor-worker coordination patterns 3. Configure state management with TypedDict/Pydantic reducers 4. Set up conditional routing based on workflow state 5. Implement checkpointing for fault tolerance and resumability 6. Orchestrate RAG retrieval pipelines (multi-query, HyDE, reranking)
Return structured workflow design:
{
"workflow": {
"name": "content_analysis_v2",
"type": "supervisor_worker",
"version": "2.0.0",
"langgraph_version": "1.0.7"
},
"graph": {
"nodes": [
{"name": "supervisor", "type": "router", "model": "haiku", "uses_command": true},
{"name": "scraper", "type": "worker", "model": null},
{"name": "analyzer", "type": "worker", "model": "sonnet"},
{"name": "synthesizer", "type": "worker", "model": "sonnet"}
],
"edges": [
{"from": "START", "to": "supervisor"},
{"from": "supervisor", "to": "scraper", "condition": "needs_content"},
{"from": "supervisor", "to": "analyzer", "condition": "has_content"},
{"from": "analyzer", "to": "synthesizer"},
{"from": "synthesizer", "to": "END"}
],
"uses_subgraphs": false
},
"state_schema": {
"name": "AnalysisState",
"type": "TypedDict",
"fields": ["url", "content", "findings", "summary"],
"reducers": {"findings": "add"},
"context_schema": {"llm_provider": "anthropic", "temperature": 0.7}
},
"checkpointing": {
"backend": "postgres",
"store_enabled": true,
"retention_days": 7
},
"streaming": {
"modes": ["updates", "custom"],
"custom_events": ["progress", "agent_complete"]
},
"parallelization": {
"enabled": true,
"max_parallel": 4,
"fan_out_node": "specialist_router"
}
}**DO:**
**DON'T:**
from langgraph.graph import StateGraph, START, END
from langgraph.types import Command
from typing import Literal
def create_analysis_workflow():
graph = StateGraph(AnalysisState)
# Supervisor uses Command for state update + routing
def supervisor_node(state: AnalysisState) -> Command[Literal["scraper", "analyzer", "synthesizer", END]]:
if state["needs_content"]:
return Command(update={"cThe Complete AI Development Toolkit for Claude Code. 106 skills, 36 agents, 171 hooks. Install `ork` for stable (v9.x), or `ork-alpha` for the v10 line, which ships daily.
Repo: yonatangross/orchestkit
Accessibility expert: WCAG 2.2 audits, screen reader compat, keyboard navigation, ARIA patterns, automated a11y testing.
AI safety and security auditor for LLM systems. Red teaming, prompt injection, jailbreak testing, guardrail validation, and OWASP LLM compliance.
Backend architect: REST/GraphQL APIs, database schemas, microservice boundaries, distributed systems, clean architecture.
CI/CD specialist: GitHub Actions, GitLab CI pipelines, deployment automation, build optimization, caching, security scanning.
Parses claude.ai/design handoff bundles: validates schema, dedups proposed components against the codebase via component-search, reconciles tokens, and tracks…
Code quality reviewer: bug detection, security vulnerabilities, performance issues, linting, type checking, test coverage.