Claude-skill-registry agenticflow-skills

Comprehensive guide for building AI workflows, agents, and workforce systems with AgenticFlow. Use when designing workflows with various node types, configuring single agents, or orchestrating workforce collaboration patterns.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agenticflow" ~/.claude/skills/majiayu000-claude-skill-registry-agenticflow-skills && rm -rf "$T"
manifest: skills/data/agenticflow/SKILL.md
source content

AgenticFlow Skills

AgenticFlow is a platform for building AI-powered automation workflows, intelligent agents, and workforce systems.

Quick Navigation

TopicWhen to UseReference
WorkflowBuilding automation flows with nodesworkflow/overview.md
AgentCreating single intelligent agentsreference/agent/overview.md
WorkforceOrchestrating multiple agentsreference/workforce/overview.md

Workflow

Workflows are linear automation pipelines composed of sequential nodes. Each node performs a specific action.

GuideDescription
overview.mdCore concepts, schemas, execution model
how-to-build.mdStep-by-step build guide
how-to-run.mdExecute workflows and handle results
node-types.mdNode type schemas and discovery
connections.mdConnection providers and setup

Node Types Overview

CategoryExample Node TypesPurpose
AI/LLM
claude_ask
,
openai_chat
,
gemini
AI model calls, text generation
Image Generation
generate_image
,
dall_e
Create images from prompts
Data Processing
json_parse
,
text_transform
Transform and manipulate data
Integrations
slack_send
,
gmail
,
notion
Connect to 300+ external services (MCPs)
API Calls
http_request
,
webhook
HTTP requests and webhooks
File Operations
file_upload
,
pdf_parse
Upload, download, process files

Note: Workflows in AgenticFlow are linear and sequential - nodes execute top to bottom with no branching or loops.


Agent

An Agent is an AI entity with specific capabilities, tools, and a defined persona.

To learn about agent configuration, load: reference/agent/overview.md


Workforce

Workforce systems coordinate multiple agents to solve complex tasks collaboratively.

To understand orchestration patterns, load: reference/workforce/overview.md

Common Patterns

  • Supervisor - One agent delegates to specialists
  • Swarm - Agents self-organize dynamically
  • Pipeline - Sequential agent handoffs
  • Debate - Agents discuss to reach consensus

Glossary

For terminology and definitions, see reference/glossary.md.