biz-scan
SolidScans 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
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
AI & Automation Listed
business-model-analysis
Business model analysis: revenue classification, customer concentration, unit economics extraction, and monetization-lever identification.
2 Updated 2 days ago
agentii-ai AI & Automation Listed
scan-codebase
Scan the Python codebase and build a structural JSON index (import graph + blast-radius metrics).
19 Updated yesterday
Borda Data & Documents Listed
scan
Quick assessment of a data source BEFORE committing to a full run. Estimates unit count, size, field inventory, and suggests a connector template. Use to decide "is this worth analyzing" or "which connector fits".
0 Updated today
SashaMarchuk