agentsclimarketplace

Flow network builder

Skill a5c-ai/babysitter/library/specializations/algorithms-optimization/skills/flow-network-builder

Model optimization problems as network flow problemsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill flow-network-builder

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

SKILL.md

2.0 KB, 428 tokens by cl100k_base, as published. Nobody here has run it

Flow Network Builder Skill

Purpose

Model optimization problems as network flow problems, constructing appropriate flow networks and selecting optimal algorithms.

Capabilities

  • Identify max-flow/min-cut modeling opportunities
  • Construct flow network from problem description
  • Select optimal flow algorithm
  • Handle min-cost flow variants
  • Bipartite matching reduction
  • Circulation problems

Target Processes

  • advanced-graph-algorithms
  • graph-modeling
  • optimization problems

Flow Problem Types

  1. Maximum Flow: Find max flow from source to sink
  2. Minimum Cut: Partition minimizing cut capacity
  3. Bipartite Matching: Maximum matching via flow
  4. Min-Cost Max-Flow: Cheapest maximum flow
  5. Circulation: Flow with lower bounds

Reduction Patterns

  • Assignment problems -> Bipartite matching
  • Scheduling -> Flow with constraints
  • Path cover -> Flow reduction
  • Edge-disjoint paths -> Unit capacity flow

Input Schema

{
  "type": "object",
  "properties": {
    "problemDescription": { "type": "string" },
    "problemType": {
      "type": "string",
      "enum": ["maxFlow", "minCut", "matching", "minCostFlow", "circulation"]
    },
    "constraints": { "type": "object" }
  },
  "required": ["problemDescription"]
}

Output Schema

{
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "networkDescription": { "type": "string" },
    "nodes": { "type": "array" },
    "edges": { "type": "array" },
    "source": { "type": "string" },
    "sink": { "type": "string" },
    "algorithm": { "type": "string" },
    "reduction": { "type": "string" }
  },
  "required": ["success"]
}

What ships with it: 1 file

622 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. 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.