{
  "tool_id": "ship_or_kill_score",
  "slug": "ship-or-kill-score",
  "path": "/ship-or-kill-score/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/ship-or-kill-score/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/ship-or-kill-score.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/ship-or-kill-score/",
  "sample_input": {
    "tool": "ship_or_kill_score",
    "hours_spent": 200,
    "hours_per_week": 10,
    "paying_customers": 5,
    "mrr": 100,
    "free_users": 50,
    "wow_growth": 5,
    "monthly_cost": 50,
    "monthly_revenue": 100,
    "competitors": 5,
    "distribution": "organic",
    "differentiation": "better_ux"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "hours_spent": {
        "type": "number"
      },
      "hours_per_week": {
        "type": "number"
      },
      "paying_customers": {
        "type": "number"
      },
      "mrr": {
        "type": "number"
      },
      "free_users": {
        "type": "number"
      },
      "wow_growth": {
        "type": "number"
      },
      "monthly_cost": {
        "type": "number"
      },
      "monthly_revenue": {
        "type": "number"
      },
      "competitors": {
        "type": "number"
      },
      "distribution": {
        "type": "string"
      },
      "differentiation": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "hours_spent",
      "hours_per_week",
      "paying_customers",
      "mrr",
      "free_users",
      "wow_growth",
      "monthly_cost",
      "monthly_revenue",
      "competitors",
      "distribution",
      "differentiation"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "composite": {
        "type": "integer"
      },
      "verdict": {
        "type": "string"
      },
      "dimensions": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "score": {
              "type": "integer"
            },
            "weight": {
              "type": "number"
            },
            "insight": {
              "type": "string"
            }
          }
        }
      },
      "summary": {
        "type": "string"
      },
      "nextSteps": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}
