agentsclimarketplace

Workflow doctor

Skill inflowave/skills/skills/workflow-doctor

Audit an Inflowave account's automation workflows — find broken, failing, stalled, or underperforming ones, correlate each problem to the exact node/step that's causing it, propose fixes, and (with the user's OK) apply and test them. Use when the user says "audit my workflows", "what's broken", "why isn't my automation working", "fix my workflows", or reports a workflow not firing.From its SKILL.md

Install
npx -y skills add inflowave/skills --skill workflow-doctor

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 23 days oldThe repository was created 23 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.2 KB, 676 tokens by cl100k_base, as published. Nobody here has run it

Workflow Doctor

Diagnose and repair workflows. The value is in correlation — don't just say "this workflow has a low success rate," say which node fails and why, then offer the specific fix.

Steps

  1. Scope. check_connection, then list_sub_accounts if multi-workspace and ask which one. list_workflows to get the inventory (name, trigger, active, execution count).

  2. Run the audit. workflow_health_audit for the account-level view, then for each concerning workflow:

    • get_workflow_performance — success rate, avg duration, throughput.
    • get_workflow_failure_stats — what's erroring and how often.
    • get_workflow_node_analytics / get_workflow_step_analyticsthe key correlation: which specific node drops or fails contacts.
    • get_workflow_details — the actual config of the failing node.
  3. Classify each problem into one of:

    • Broken — errors at a node (bad config, missing integration, invalid template variable). Correlate the error to the node.
    • Stalled — active but hasn't fired recently; usually the trigger no longer matches (e.g. a tag/form that was renamed) or the source integration disconnected (check_connection on that account).
    • Leaky — fires fine but contacts drop at a wait/condition node that's too strict, or a send step with a low open/click.
    • Dormant — inactive draft that should probably be live.
  4. Propose a fix per problem — concrete and specific: "Node 3 'Send Email' fails with invalid_template_variable {first_name} — should be {lead.first_name}." Use list_template_variables, describe_trigger, describe_condition to get the correct shapes.

  5. Apply on approval. Only after the user says yes: update via the appropriate write tool (or create_workflow for a rebuild), then always test_workflow (simulated — nothing sent to real people) and report the per-node trace. Never activate a workflow the user didn't ask to activate.

Output

  • Health summary — X workflows, Y healthy, Z need attention.
  • Findings — a ranked list, worst first. Each: workflow name → the exact node → the cause → the one-line fix. Rank by impact (contacts affected × how central the workflow is).
  • Proposed fixes — numbered, each with the precise change. Ask which to apply.

Guardrails

  • Read + diagnose freely; never write without an explicit yes naming the workflow(s) to change.
  • Confirm the workspace before any change (the MCP enforces this via a confirmation envelope — relay it).
  • After any change, test in simulation before suggesting activation.
  • If a fix needs something outside Inflowave (reconnect Instagram, verify a domain), say so plainly instead of pretending the workflow alone can fix it.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,834. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.