Venture Status
Check the status of one or all ventures in the portfolio
/venture-status — Check Venture Status
Input
Optional venture slug: $ARGUMENTS
If No Slug Provided — Portfolio Overview
Read portfolio/registry.md and display the portfolio table:
## Portfolio Overview
| Venture | Stage | Health | MRR | Last Check | Next Action |
|---------|-------|--------|-----|------------|-------------|
Then ask: "Want details on a specific venture? Provide the slug."
If Slug Provided — Venture Deep Dive
-
Pull latest from the venture repo:
cd $PROJECTS_DIR/{slug} && git pull --quiet 2>/dev/nullIf not cloned, clone it first.
-
Read venture state files:
CLAUDE.md— context, stage, focusplans/current.md— active plan and tasksdocs/changelog.md— recent changesmetrics/— KPIs (if any)decisions/— recent decisions- Recent git log:
git log --oneline -5 --format="%ad %s" --date=short
-
Display a comprehensive status:
## {Venture Name}
**Stage:** {stage} | **Health:** {score}/100 | **Type:** {type}
### Current Focus
{From CLAUDE.md current focus}
### Active Plan
{From plans/current.md — objectives and task completion status}
### Recent Activity
{Last 5 commits}
### Key Metrics
| Metric | Current | Target |
|--------|---------|--------|
### Recent Decisions
{From decisions/ — last 2-3}
### Recent Changes
{From changelog — last 2-3 entries}
### Agent Team
{From CLAUDE.md agent table}
**Repo:** https://github.com/{user}/{slug}