fix(startup-business-analyst): add allowed-tools to commands and simplify marketplace entry

Add allowed-tools field to command frontmatter and simplify marketplace.json
entry to rely on auto-discovery instead of explicit arrays.
This commit is contained in:
Seth Hobson
2026-01-15 21:33:44 -05:00
parent 3e673da18e
commit 58f4038326
4 changed files with 7 additions and 29 deletions

View File

@@ -1373,40 +1373,15 @@
}, },
{ {
"name": "startup-business-analyst", "name": "startup-business-analyst",
"source": "./plugins/startup-business-analyst",
"description": "Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research for early-stage companies", "description": "Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research for early-stage companies",
"version": "1.0.2", "version": "1.0.3",
"author": { "author": {
"name": "Seth Hobson", "name": "Seth Hobson",
"url": "https://github.com/wshobson" "email": "seth@major7apps.com"
}, },
"homepage": "https://github.com/wshobson/agents", "source": "./plugins/startup-business-analyst",
"repository": "https://github.com/wshobson/agents",
"license": "MIT",
"keywords": [
"startup",
"business-analysis",
"market-sizing",
"tam-sam-som",
"financial-modeling",
"business-planning",
"fundraising"
],
"category": "business", "category": "business",
"strict": false, "homepage": "https://github.com/wshobson/agents"
"commands": [
"./commands/market-opportunity.md",
"./commands/financial-projections.md",
"./commands/business-case.md"
],
"agents": ["./agents/startup-analyst.md"],
"skills": [
"./skills/market-sizing-analysis",
"./skills/startup-financial-modeling",
"./skills/team-composition-analysis",
"./skills/competitive-landscape",
"./skills/startup-metrics-framework"
]
}, },
{ {
"name": "hr-legal-compliance", "name": "hr-legal-compliance",

View File

@@ -1,5 +1,6 @@
--- ---
description: "Generate comprehensive investor-ready business case document with market, solution, financials, and strategy" description: "Generate comprehensive investor-ready business case document with market, solution, financials, and strategy"
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "WebSearch", "WebFetch"]
--- ---
# Business Case Generator # Business Case Generator

View File

@@ -1,5 +1,6 @@
--- ---
description: "Create detailed 3-5 year financial model with revenue, costs, cash flow, and scenarios" description: "Create detailed 3-5 year financial model with revenue, costs, cash flow, and scenarios"
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "WebSearch", "WebFetch"]
--- ---
# Financial Projections # Financial Projections

View File

@@ -1,5 +1,6 @@
--- ---
description: "Generate comprehensive market opportunity analysis with TAM/SAM/SOM calculations" description: "Generate comprehensive market opportunity analysis with TAM/SAM/SOM calculations"
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "WebSearch", "WebFetch"]
--- ---
# Market Opportunity Analysis # Market Opportunity Analysis