Loading...
Loading...
Review and modernize Agent OS product documentation to ensure quantifiable value propositions and workspace-hub standards compliance.
npx skill4agent add vamseeachanta/workspace-hub product-documentationVersion: 1.0.0 Created: 2026-01-08 Category: Documentation, Product Management, Standards Compliance
**Business Administrator** (28-45 years old)
- **Role:** Administrative Manager or Business Operations Coordinator
- **Context:** Day-to-day management of business finances, invoicing, and compliance for 3-7 concurrent engineering projects
- **Pain Points:**
- Spending 6-8 hours/week on invoice generation across multiple clients
- Manual expense categorization from credit card statements (2-3 hours/week)
- Annual tax preparation requires 20-30 hours of document organization
- **Goals:**
- Reduce administrative time by 70% to focus on business development
- Achieve 100% on-time invoice delivery (currently 75%)invoice-gentax-prep[project.optional-dependencies][project.scripts]# ✅ Correct
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .
# ❌ Wrong
conda create -n myenv
pip install -r requirements.txt# ✅ Correct - Plotly interactive
import plotly.express as px
fig = px.scatter(df, x='time', y='value')
fig.write_html('../reports/analysis.html')
# ❌ Wrong - Matplotlib static
import matplotlib.pyplot as plt
plt.scatter(df['time'], df['value'])
plt.savefig('plot.png')/reports//data//src/Before: 15 minutes per invoice × 10 invoices/month = 150 minutes/month
After: 2 minutes per invoice × 10 invoices/month = 20 minutes/month
Reduction: 130 minutes/month = 87% time savingsHourly rate: $75/hour
Time saved: 130 minutes/month × 12 months = 1,560 minutes/year = 26 hours/year
Value: 26 hours × $75 = $1,950/year per use case
Total across 3 use cases: ~$5,850/year
Add accountant fee reduction: $2,000-5,000/year
Total: $15,000-25,000/yearWeek 1-2: Initial setup and first automated invoice
Week 3-4: Expense tracking automation
Week 5-8: Full tax preparation integration
Result: 8 weeks to full adoption### Engineering Project Financial Tracking
Unlike generic accounting systems, we provide project-based billing with technical hours tracking, multi-client parallel project management, and engineering service-specific expense categorization (design software, certifications, industry standards). This results in accurate project profitability analysis and improved resource allocation for engineering teams.# Read all three product documents
cat .agent-os/product/mission.md
cat .agent-os/product/tech-stack.md
cat .agent-os/product/decisions.md## Success Metrics
### Efficiency Gains
- **[Feature]:** [%] reduction in time ([before] → [after])
- **[Feature]:** [%] reduction in [metric] ([before] → [after])
### Business Impact
- **Cost Savings:** $[amount] annually ([breakdown])
- **Revenue Protection:** $[amount] in [area]
- **Risk Reduction:** [%] accuracy improvement
### Adoption Success
- **Time to First Value:** [timeframe]
- **Full System Adoption:** [timeframe]
- **User Satisfaction:** [measurable outcome][project]
name = "project-name"
version = "1.0.0"
description = "Brief description"
requires-python = ">=3.11"
dependencies = [
# Data Processing
"pandas>=2.0.0",
"numpy>=1.24.0",
# Visualization (Interactive Only)
"plotly>=5.14.0",
"kaleido>=0.2.1",
# CLI Development
"click>=8.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
]
[project.scripts]
module-name = "package.module:main"# In Claude Code or AI agent
"Review the mission.md file and suggest improvements following the Product Documentation Modernization skill. Focus on adding quantifiable metrics and engineering-specific value propositions."# In Claude Code or AI agent
"Review tech-stack.md for compliance with workspace-hub standards. Replace Conda with UV, ensure Plotly is mandatory, and add complete pyproject.toml configuration."@/mnt/github/workspace-hub/docs/modules/standards/@~/.agent-os/instructions/