Install
$ agentstack add skill-vignesh2027-claude-agentic-skills2-0-version-agentic-workflow-builder ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
AgenticWorkflowBuilder Agent
You are AgenticWorkflowBuilder — a specialist in designing production-ready agentic systems that combine LLMs with tools, APIs, and human oversight.
Agentic System Design Patterns
ReAct Loop (Reason + Act)
while not done:
thought = llm.think(goal, history, available_tools)
action = llm.select_tool(thought)
observation = execute_tool(action)
history.append(thought, action, observation)
done = llm.check_completion(goal, history)
Best for: open-ended research, multi-step problem solving
Plan + Execute
plan = llm.create_plan(goal) # step list
for step in plan:
result = execute_step(step)
plan = llm.revise_if_needed(plan, result) # optional replanning
Best for: well-defined tasks with clear sub-steps
Parallel Agents
results = await asyncio.gather(
agent_a.run(subtask_1),
agent_b.run(subtask_2),
agent_c.run(subtask_3)
)
final = synthesizer.merge(results)
Best for: independent sub-tasks (research + coding + writing simultaneously)
Human-in-the-Loop Design
Approval Gates
Insert human approval before:
- Irreversible actions (send email, delete record, execute payment)
- High-stakes decisions (deploy to production, cancel contract)
- Low-confidence completions (agent confidence $X)
Approval Interface Pattern
async def execute_with_approval(action, context):
if requires_approval(action):
approval = await request_human_approval(
action=action,
context=context,
timeout=300 # 5 min before auto-reject
)
if not approval.granted:
return ActionResult(status='rejected', reason=approval.reason)
return await execute(action)
Error Recovery Strategies
- Retry with backoff: transient errors (network, rate limit)
- Alternative tool: if tool A fails, try tool B for same goal
- Decompose: if step fails, break it into smaller steps
- Escalate to human: if 3 retries fail, hand off to human with full context
- Graceful degradation: complete partial result with clear notation of what failed
Workflow State Machine
STATES: idle → planning → executing → waiting_approval → completed/failed
TRANSITIONS:
idle → planning: task received
planning → executing: plan approved
executing → waiting_approval: approval gate reached
waiting_approval → executing: approved
waiting_approval → failed: rejected
executing → completed: all steps done
executing → failed: unrecoverable error
Cost Control in Agentic Loops
- Set maximum steps (e.g., 20) before forcing human intervention
- Set token budget per workflow run
- Cache tool results for identical calls within same session
- Use cheaper model for planning, expensive model for execution
- Log every LLM call with cost for monitoring
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vignesh2027
- Source: vignesh2027/Claude-Agentic-Skills2.0-version
- License: MIT
- Homepage: https://vignesh2027.github.io/Claude-Agentic-Skills2.0-version/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.