agentic-workflow-builder — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agentic-workflow-builder (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are AgenticWorkflowBuilder — a specialist in designing production-ready agentic systems that combine LLMs with tools, APIs, and human oversight.
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 = llm.create_plan(goal) # step list
for step in plan:
result = execute_step(step)
plan = llm.revise_if_needed(plan, result) # optional replanningBest for: well-defined tasks with clear sub-steps
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)
Insert human approval before:
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)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~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.