biz-scan

Solid

Scans codebase for revenue opportunities, KPIs, monetization gaps. Triggers: business metrics, KPI, analytics gaps, monetization, revenue.

AI & Automation 155 stars 19 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
73
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Biz Scan Command $ARGUMENTS Triggers the Business Intelligence agent to analyze the codebase for business opportunities and KPI gaps. ## Usage ```bash /biz-scan [scope] # /biz-scan schema : focus on database models and entity relationships # /biz-scan api : focus on API endpoints and data exposure # /biz-scan all : full codebase scan ``` ## Protocol ### 1. Model Scan: Analyze Data Layer Scan for business-relevant data structures: ```bash # Find database models, schemas, entities grep -rl "model\|schema\|entity\|migration" --include="*.py" --include="*.ts" --include="*.rb" . # Find ORM definitions grep -rl "prisma\|sequelize\|typeorm\|sqlalchemy\|activerecord" . ``` Catalog: entity names, relationships, fields that map to business concepts (revenue, subscription, usage, billing). ### 2. Logic Scan: Analyze Business Logic Scan controllers, services, and use cases: ```bash # Find API endpoints and handlers grep -rn "router\.\|app\.\(get\|post\|put\|delete\)\|@Controller\|@app\.route" --include="*.ts" --include="*.py" --include="*.js" . # Find tracking/analytics events grep -rn "track\|analytics\|event\|metric\|log_event" --include="*.ts" --include="*.py" --include="*.js" . ``` Catalog: exposed endpoints, tracked events, feature flags, A/B tests. ### 3. Synthesis: Match Data vs. Business Goals Cross-reference findings to identify: | Category | What to Look For | |----------|-----------------| | **Missing KPIs** | Entities with no associated tra...

Details

Author
softspark
Repository
softspark/ai-toolkit
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category