bizy-ai


Namebizy-ai JSON
Version 1.1.1 PyPI version JSON
download
home_pageNone
SummaryAI-powered business planning and execution agent
upload_time2025-10-11 18:35:03
maintainerNone
docs_urlNone
authorReid Chatham
requires_python>=3.8
licenseMIT
keywords ai business planning productivity cli agent
VCS
bugtrack_url
requirements anthropic schedule python-dotenv pyyaml sqlalchemy requests beautifulsoup4 pandas rich python-dateutil click jinja2
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Bizy AI - AI-Powered Business Planning & Execution Agent

[![PyPI version](https://badge.fury.io/py/bizy-ai.svg)](https://badge.fury.io/py/bizy-ai)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

An autonomous AI agent that runs daily to help you execute your business plan, manage tasks, conduct research, and stay on track toward your goals.

## ๐ŸŽฏ Current Status: Phase 1 Complete โœ…

**Local Python MVP** with full AI-powered features is ready to use!

---

## Quick Start

### Installation

```bash
# Install globally via pip
pip install business-agent

# Set up your API key
mkdir -p ~/.business-agent
echo "ANTHROPIC_API_KEY=your-key-here" > ~/.business-agent/.env

# Initialize database
python -c "from agent.models import init_database; init_database()"

# Use the CLI
bizy task list
bizy goal list
```

### Development Setup

```bash
# Clone the repository
git clone https://github.com/reidchatham/business-agent.git
cd business-agent

# Install in editable mode
pip install -e .

# Run setup script
./setup.sh
```

See **[INSTALL.md](docs/INSTALL.md)** for detailed installation options.

---

## Development

### Test-Driven Development (TDD)

This project follows TDD principles. All new features must:

1. **Write tests first** - Define expected behavior
2. **Run tests (they should fail)** - Red phase
3. **Implement feature** - Green phase
4. **Refactor** - Clean up code

### Running Tests

```bash
# Run all tests with coverage
make test

# Run tests in watch mode
make test-watch

# Run specific test file
pytest tests/test_tasks.py -v
```

### Database Environments

- **Production**: `~/.business-agent/tasks.db` - Your actual business data ๐Ÿ”’
- **Development**: `~/.business-agent/dev_tasks.db` - Safe for experimentation โš™๏ธ
- **Test**: In-memory - Isolated, clean for each test ๐Ÿงช

```bash
# Use development database
export BIZY_ENV=development
make dev

# Use production database (default)
export BIZY_ENV=production
```

See **[CONTRIBUTING.md](CONTRIBUTING.md)** for detailed development guidelines.

---

## Features (Phase 1)

โœ… **AI-Powered Goal Breakdown** - Claude breaks big goals into 5-10 actionable tasks  
โœ… **Daily Morning Briefings** - Personalized insights and prioritized tasks  
โœ… **Evening Reviews** - Reflect with AI analysis  
โœ… **Weekly Strategic Reports** - Comprehensive progress analysis  
โœ… **Research Agent** - Market research and competitive intelligence  
โœ… **Task Management** - Priorities, dependencies, progress tracking  
โœ… **CLI Tool** - Quick command-line interactions  
โœ… **Automated Scheduling** - Runs briefings/reviews automatically  

---

## ๐Ÿ“ˆ Development Roadmap

The project is designed to evolve through 4 phases:

### Phase 2: Enhanced Python (Weeks 4-6) ๐Ÿ”œ
- Live CLI dashboard with real-time updates
- Google Calendar integration
- Email integration
- Velocity-based predictions
- Advanced analytics with charts
- PDF/CSV exports

### Phase 3: Web Interface (Weeks 7-10)
- FastAPI backend
- React + TypeScript frontend
- PostgreSQL database
- Real-time WebSocket updates
- Multi-device access
- User authentication

### Phase 4: Production & Scale (Weeks 11-14)
- Cloud deployment (AWS/Railway)
- Mobile apps (PWA/React Native)
- Team collaboration
- Payment integration (Stripe)
- Integration marketplace
- Advanced analytics

**See [ROADMAP.md](ROADMAP.md) for complete migration plan and technical details.**

---

## Project Structure

```
business-agent/
โ”œโ”€โ”€ agent/                   # Core modules
โ”‚   โ”œโ”€โ”€ core.py             # AI agent (briefings, reviews)
โ”‚   โ”œโ”€โ”€ models.py           # Database schema
โ”‚   โ”œโ”€โ”€ tasks.py            # Task management
โ”‚   โ”œโ”€โ”€ planner.py          # Goal planning & AI breakdown
โ”‚   โ””โ”€โ”€ research.py         # Research & intelligence
โ”‚
โ”œโ”€โ”€ scripts/                 # Automation scripts
โ”‚   โ”œโ”€โ”€ init_db.py          # Database setup
โ”‚   โ”œโ”€โ”€ morning_brief.py    # Morning briefing
โ”‚   โ”œโ”€โ”€ evening_review.py   # Evening review
โ”‚   โ”œโ”€โ”€ weekly_review.py    # Weekly report
โ”‚   โ””โ”€โ”€ agent_cli.py        # CLI tool
โ”‚
โ”œโ”€โ”€ templates/               # Configuration
โ”‚   โ””โ”€โ”€ business_plan_template.yaml
โ”‚
โ”œโ”€โ”€ main.py                  # Scheduler daemon
โ”œโ”€โ”€ requirements.txt         # Python dependencies
โ”œโ”€โ”€ setup.sh                 # Automated setup
โ”‚
โ””โ”€โ”€ Documentation
    โ”œโ”€โ”€ README.md            # This file
    โ”œโ”€โ”€ QUICKSTART.md        # 5-minute quick start
    โ”œโ”€โ”€ ROADMAP.md           # Complete development roadmap
    โ”œโ”€โ”€ GETTING_STARTED.md   # Development guide
    โ””โ”€โ”€ PROJECT_COMPLETE.md  # Setup summary
```

---

## Essential Commands

### Daily Use
```bash
# Morning
python scripts/morning_brief.py

# Complete a task
python scripts/agent_cli.py task complete 5

# Evening
python scripts/evening_review.py
```

### Task Management
```bash
# Add task
python scripts/agent_cli.py task add "Task title" -p 1 -h 3

# List tasks
python scripts/agent_cli.py task list

# Complete task
python scripts/agent_cli.py task complete <ID>
```

### Goal Management
```bash
# Add goal
python scripts/agent_cli.py goal add "Goal title" -h quarterly -t 2025-12-31

# List goals
python scripts/agent_cli.py goal list

# AI breakdown (creates tasks automatically)
python scripts/agent_cli.py goal breakdown <ID>
```

### Research
```bash
# Research topic
python scripts/agent_cli.py research topic "market trends"

# Competitor analysis
python scripts/agent_cli.py research competitors "domain" "offering"
```

### Automation
```bash
# Start scheduler (runs morning/evening/weekly automatically)
python main.py
```

---

## Technology Stack

### Phase 1 (Current)
- **Python 3.8+**
- **Claude (Anthropic API)** - AI intelligence
- **SQLAlchemy + SQLite** - Database
- **Rich** - Beautiful terminal UI
- **Click** - CLI framework
- **Schedule** - Task automation

### Phase 2 (Planned)
- **Textual** - Advanced TUI
- **Google Calendar API** - Calendar sync
- **Gmail API** - Email integration
- **Plotext** - Terminal charts
- **ReportLab** - PDF generation

### Phase 3 (Planned)
- **FastAPI** - Backend framework
- **PostgreSQL** - Production database
- **React + TypeScript** - Frontend
- **TailwindCSS** - Styling
- **WebSockets** - Real-time updates

### Phase 4 (Planned)
- **AWS/Railway** - Cloud hosting
- **React Native/PWA** - Mobile apps
- **Stripe** - Payments
- **Redis** - Caching
- **Celery** - Background jobs

---

## Development with Claude Code

This project is configured for Claude Code development:

```bash
# The project includes:
.claude_code.json          # Claude Code workspace config
GETTING_STARTED.md         # Development guide
ROADMAP.md                 # Migration path details
```

Open this directory in Claude Code to start developing with AI assistance!

---

## Documentation

- **[QUICKSTART.md](QUICKSTART.md)** - Get started in 5 minutes
- **[ROADMAP.md](ROADMAP.md)** - Complete development roadmap with migration plans
- **[GETTING_STARTED.md](GETTING_STARTED.md)** - Development guide for Claude Code
- **[PROJECT_COMPLETE.md](PROJECT_COMPLETE.md)** - Setup summary and status
- **[templates/business_plan_template.yaml](templates/business_plan_template.yaml)** - Business plan with roadmap

---

## Key Benefits

โœ… **Never forget important tasks** - AI breaks down goals automatically  
โœ… **Stay on track daily** - Morning briefings keep you focused  
โœ… **Learn from patterns** - Evening reviews capture insights  
โœ… **Make informed decisions** - Research agent gathers intelligence  
โœ… **Adapt your strategy** - Weekly reviews suggest improvements  
โœ… **Build momentum** - Daily habit creates consistent progress  

---

## Examples

### Create Your First Goal
```bash
# 1. Create a quarterly goal
python scripts/agent_cli.py goal add "Launch MVP Product" \
  -h quarterly \
  -t 2025-06-30

# 2. Let AI break it down into tasks
python scripts/agent_cli.py goal breakdown 1

# Output: Claude creates 5-10 actionable tasks like:
#   - Design database schema (3h, priority 1)
#   - Implement user authentication (6h, priority 1)
#   - Build frontend UI (16h, priority 2)
#   - etc.

# 3. View your tasks
python scripts/agent_cli.py task list

# 4. Get your morning briefing
python scripts/morning_brief.py
```

---

## How It Works

```
1. YOU define goals
   โ†“
2. AI breaks down goals into tasks
   โ†“
3. Morning briefing prioritizes today's tasks
   โ†“
4. YOU work on tasks throughout the day
   โ†“
5. Evening review captures learnings
   โ†“
6. AI analyzes patterns and suggests improvements
   โ†“
7. Weekly review provides strategic insights
   โ†“
8. Cycle repeats, continuously improving
```

---

## Troubleshooting

### API Key Issues
```bash
# Check .env file exists
ls -la .env

# Verify key is set
cat .env | grep ANTHROPIC_API_KEY
```

### Virtual Environment
```bash
# Always activate first
source venv/bin/activate

# Check Python version
python --version  # Should be 3.8+
```

### Database Issues
```bash
# Reset database
rm data/tasks.db
python scripts/init_db.py
```

### Permission Issues
```bash
# Make scripts executable
chmod +x setup.sh main.py scripts/*.py
```

---

## Cost Estimate

Based on typical usage with Claude Sonnet:

- Morning briefing: ~1,000 tokens (~$0.003)
- Evening review: ~1,500 tokens (~$0.005)
- Weekly review: ~3,000 tokens (~$0.009)
- Goal breakdown: ~2,000 tokens per goal (~$0.006)
- Research: ~3,000-5,000 tokens per query (~$0.009-0.015)

**Monthly estimate**: $5-15 depending on usage

---

## Contributing to This Project

This is a personal business tool, but if you're building something similar:

1. Fork the repository
2. Check the [ROADMAP.md](ROADMAP.md) for upcoming features
3. Build Phase 2 features
4. Share your improvements!

---

## Roadmap Highlights

### ๐Ÿ”œ Next Up: Phase 2 (Weeks 4-6)

**Top priorities:**
1. **Live Dashboard** - Real-time task updates in terminal
2. **Calendar Integration** - Sync with Google Calendar
3. **Velocity Predictions** - AI predicts completion dates
4. **Email Integration** - Daily briefings via email

**Timeline:** 3 weeks  
**Start Date:** This week!

See [ROADMAP.md](ROADMAP.md) for detailed implementation plans.

---

## Requirements

- Python 3.8 or higher
- Anthropic API access (Claude)
- ~50MB disk space
- Works on: macOS, Linux, Windows

---

## License

MIT License - feel free to use and modify for your business.

---

## Support

- ๐Ÿ“– **Documentation**: Check the docs in this directory
- ๐Ÿ› **Issues**: Check error logs in `data/logs/`
- ๐Ÿ’ฌ **Questions**: Review `GETTING_STARTED.md` and `ROADMAP.md`
- ๐Ÿš€ **Updates**: Follow the roadmap for upcoming features

---

## Next Steps

### If You're Just Getting Started:
1. Run `./setup.sh` to set up the environment
2. Add your Anthropic API key to `.env`
3. Run `python scripts/morning_brief.py` to test
4. Create your first goal and let AI break it down
5. Start using daily for one week

### If You Want to Develop:
1. Review [ROADMAP.md](ROADMAP.md) for migration path
2. Check [GETTING_STARTED.md](GETTING_STARTED.md) for dev guide
3. Open in Claude Code for AI-assisted development
4. Start building Phase 2 features
5. Test with beta users

### If You Want to Understand the Vision:
1. Read [templates/business_plan_template.yaml](templates/business_plan_template.yaml)
2. Review the 4-phase roadmap
3. Understand the migration from Python โ†’ Web โ†’ Production
4. See how each phase builds on the previous

---

**Ready to execute your business plan? Let's go! ๐Ÿš€**

Built with โค๏ธ using Claude (Anthropic)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bizy-ai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "ai, business, planning, productivity, cli, agent",
    "author": "Reid Chatham",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/74/0d/67d234b4f989c104e5dcad18d65fc7b955ab64ea973b529251c662b7b54a/bizy_ai-1.1.1.tar.gz",
    "platform": null,
    "description": "# Bizy AI - AI-Powered Business Planning & Execution Agent\n\n[![PyPI version](https://badge.fury.io/py/bizy-ai.svg)](https://badge.fury.io/py/bizy-ai)\n[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nAn autonomous AI agent that runs daily to help you execute your business plan, manage tasks, conduct research, and stay on track toward your goals.\n\n## \ud83c\udfaf Current Status: Phase 1 Complete \u2705\n\n**Local Python MVP** with full AI-powered features is ready to use!\n\n---\n\n## Quick Start\n\n### Installation\n\n```bash\n# Install globally via pip\npip install business-agent\n\n# Set up your API key\nmkdir -p ~/.business-agent\necho \"ANTHROPIC_API_KEY=your-key-here\" > ~/.business-agent/.env\n\n# Initialize database\npython -c \"from agent.models import init_database; init_database()\"\n\n# Use the CLI\nbizy task list\nbizy goal list\n```\n\n### Development Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/reidchatham/business-agent.git\ncd business-agent\n\n# Install in editable mode\npip install -e .\n\n# Run setup script\n./setup.sh\n```\n\nSee **[INSTALL.md](docs/INSTALL.md)** for detailed installation options.\n\n---\n\n## Development\n\n### Test-Driven Development (TDD)\n\nThis project follows TDD principles. All new features must:\n\n1. **Write tests first** - Define expected behavior\n2. **Run tests (they should fail)** - Red phase\n3. **Implement feature** - Green phase\n4. **Refactor** - Clean up code\n\n### Running Tests\n\n```bash\n# Run all tests with coverage\nmake test\n\n# Run tests in watch mode\nmake test-watch\n\n# Run specific test file\npytest tests/test_tasks.py -v\n```\n\n### Database Environments\n\n- **Production**: `~/.business-agent/tasks.db` - Your actual business data \ud83d\udd12\n- **Development**: `~/.business-agent/dev_tasks.db` - Safe for experimentation \u2699\ufe0f\n- **Test**: In-memory - Isolated, clean for each test \ud83e\uddea\n\n```bash\n# Use development database\nexport BIZY_ENV=development\nmake dev\n\n# Use production database (default)\nexport BIZY_ENV=production\n```\n\nSee **[CONTRIBUTING.md](CONTRIBUTING.md)** for detailed development guidelines.\n\n---\n\n## Features (Phase 1)\n\n\u2705 **AI-Powered Goal Breakdown** - Claude breaks big goals into 5-10 actionable tasks  \n\u2705 **Daily Morning Briefings** - Personalized insights and prioritized tasks  \n\u2705 **Evening Reviews** - Reflect with AI analysis  \n\u2705 **Weekly Strategic Reports** - Comprehensive progress analysis  \n\u2705 **Research Agent** - Market research and competitive intelligence  \n\u2705 **Task Management** - Priorities, dependencies, progress tracking  \n\u2705 **CLI Tool** - Quick command-line interactions  \n\u2705 **Automated Scheduling** - Runs briefings/reviews automatically  \n\n---\n\n## \ud83d\udcc8 Development Roadmap\n\nThe project is designed to evolve through 4 phases:\n\n### Phase 2: Enhanced Python (Weeks 4-6) \ud83d\udd1c\n- Live CLI dashboard with real-time updates\n- Google Calendar integration\n- Email integration\n- Velocity-based predictions\n- Advanced analytics with charts\n- PDF/CSV exports\n\n### Phase 3: Web Interface (Weeks 7-10)\n- FastAPI backend\n- React + TypeScript frontend\n- PostgreSQL database\n- Real-time WebSocket updates\n- Multi-device access\n- User authentication\n\n### Phase 4: Production & Scale (Weeks 11-14)\n- Cloud deployment (AWS/Railway)\n- Mobile apps (PWA/React Native)\n- Team collaboration\n- Payment integration (Stripe)\n- Integration marketplace\n- Advanced analytics\n\n**See [ROADMAP.md](ROADMAP.md) for complete migration plan and technical details.**\n\n---\n\n## Project Structure\n\n```\nbusiness-agent/\n\u251c\u2500\u2500 agent/                   # Core modules\n\u2502   \u251c\u2500\u2500 core.py             # AI agent (briefings, reviews)\n\u2502   \u251c\u2500\u2500 models.py           # Database schema\n\u2502   \u251c\u2500\u2500 tasks.py            # Task management\n\u2502   \u251c\u2500\u2500 planner.py          # Goal planning & AI breakdown\n\u2502   \u2514\u2500\u2500 research.py         # Research & intelligence\n\u2502\n\u251c\u2500\u2500 scripts/                 # Automation scripts\n\u2502   \u251c\u2500\u2500 init_db.py          # Database setup\n\u2502   \u251c\u2500\u2500 morning_brief.py    # Morning briefing\n\u2502   \u251c\u2500\u2500 evening_review.py   # Evening review\n\u2502   \u251c\u2500\u2500 weekly_review.py    # Weekly report\n\u2502   \u2514\u2500\u2500 agent_cli.py        # CLI tool\n\u2502\n\u251c\u2500\u2500 templates/               # Configuration\n\u2502   \u2514\u2500\u2500 business_plan_template.yaml\n\u2502\n\u251c\u2500\u2500 main.py                  # Scheduler daemon\n\u251c\u2500\u2500 requirements.txt         # Python dependencies\n\u251c\u2500\u2500 setup.sh                 # Automated setup\n\u2502\n\u2514\u2500\u2500 Documentation\n    \u251c\u2500\u2500 README.md            # This file\n    \u251c\u2500\u2500 QUICKSTART.md        # 5-minute quick start\n    \u251c\u2500\u2500 ROADMAP.md           # Complete development roadmap\n    \u251c\u2500\u2500 GETTING_STARTED.md   # Development guide\n    \u2514\u2500\u2500 PROJECT_COMPLETE.md  # Setup summary\n```\n\n---\n\n## Essential Commands\n\n### Daily Use\n```bash\n# Morning\npython scripts/morning_brief.py\n\n# Complete a task\npython scripts/agent_cli.py task complete 5\n\n# Evening\npython scripts/evening_review.py\n```\n\n### Task Management\n```bash\n# Add task\npython scripts/agent_cli.py task add \"Task title\" -p 1 -h 3\n\n# List tasks\npython scripts/agent_cli.py task list\n\n# Complete task\npython scripts/agent_cli.py task complete <ID>\n```\n\n### Goal Management\n```bash\n# Add goal\npython scripts/agent_cli.py goal add \"Goal title\" -h quarterly -t 2025-12-31\n\n# List goals\npython scripts/agent_cli.py goal list\n\n# AI breakdown (creates tasks automatically)\npython scripts/agent_cli.py goal breakdown <ID>\n```\n\n### Research\n```bash\n# Research topic\npython scripts/agent_cli.py research topic \"market trends\"\n\n# Competitor analysis\npython scripts/agent_cli.py research competitors \"domain\" \"offering\"\n```\n\n### Automation\n```bash\n# Start scheduler (runs morning/evening/weekly automatically)\npython main.py\n```\n\n---\n\n## Technology Stack\n\n### Phase 1 (Current)\n- **Python 3.8+**\n- **Claude (Anthropic API)** - AI intelligence\n- **SQLAlchemy + SQLite** - Database\n- **Rich** - Beautiful terminal UI\n- **Click** - CLI framework\n- **Schedule** - Task automation\n\n### Phase 2 (Planned)\n- **Textual** - Advanced TUI\n- **Google Calendar API** - Calendar sync\n- **Gmail API** - Email integration\n- **Plotext** - Terminal charts\n- **ReportLab** - PDF generation\n\n### Phase 3 (Planned)\n- **FastAPI** - Backend framework\n- **PostgreSQL** - Production database\n- **React + TypeScript** - Frontend\n- **TailwindCSS** - Styling\n- **WebSockets** - Real-time updates\n\n### Phase 4 (Planned)\n- **AWS/Railway** - Cloud hosting\n- **React Native/PWA** - Mobile apps\n- **Stripe** - Payments\n- **Redis** - Caching\n- **Celery** - Background jobs\n\n---\n\n## Development with Claude Code\n\nThis project is configured for Claude Code development:\n\n```bash\n# The project includes:\n.claude_code.json          # Claude Code workspace config\nGETTING_STARTED.md         # Development guide\nROADMAP.md                 # Migration path details\n```\n\nOpen this directory in Claude Code to start developing with AI assistance!\n\n---\n\n## Documentation\n\n- **[QUICKSTART.md](QUICKSTART.md)** - Get started in 5 minutes\n- **[ROADMAP.md](ROADMAP.md)** - Complete development roadmap with migration plans\n- **[GETTING_STARTED.md](GETTING_STARTED.md)** - Development guide for Claude Code\n- **[PROJECT_COMPLETE.md](PROJECT_COMPLETE.md)** - Setup summary and status\n- **[templates/business_plan_template.yaml](templates/business_plan_template.yaml)** - Business plan with roadmap\n\n---\n\n## Key Benefits\n\n\u2705 **Never forget important tasks** - AI breaks down goals automatically  \n\u2705 **Stay on track daily** - Morning briefings keep you focused  \n\u2705 **Learn from patterns** - Evening reviews capture insights  \n\u2705 **Make informed decisions** - Research agent gathers intelligence  \n\u2705 **Adapt your strategy** - Weekly reviews suggest improvements  \n\u2705 **Build momentum** - Daily habit creates consistent progress  \n\n---\n\n## Examples\n\n### Create Your First Goal\n```bash\n# 1. Create a quarterly goal\npython scripts/agent_cli.py goal add \"Launch MVP Product\" \\\n  -h quarterly \\\n  -t 2025-06-30\n\n# 2. Let AI break it down into tasks\npython scripts/agent_cli.py goal breakdown 1\n\n# Output: Claude creates 5-10 actionable tasks like:\n#   - Design database schema (3h, priority 1)\n#   - Implement user authentication (6h, priority 1)\n#   - Build frontend UI (16h, priority 2)\n#   - etc.\n\n# 3. View your tasks\npython scripts/agent_cli.py task list\n\n# 4. Get your morning briefing\npython scripts/morning_brief.py\n```\n\n---\n\n## How It Works\n\n```\n1. YOU define goals\n   \u2193\n2. AI breaks down goals into tasks\n   \u2193\n3. Morning briefing prioritizes today's tasks\n   \u2193\n4. YOU work on tasks throughout the day\n   \u2193\n5. Evening review captures learnings\n   \u2193\n6. AI analyzes patterns and suggests improvements\n   \u2193\n7. Weekly review provides strategic insights\n   \u2193\n8. Cycle repeats, continuously improving\n```\n\n---\n\n## Troubleshooting\n\n### API Key Issues\n```bash\n# Check .env file exists\nls -la .env\n\n# Verify key is set\ncat .env | grep ANTHROPIC_API_KEY\n```\n\n### Virtual Environment\n```bash\n# Always activate first\nsource venv/bin/activate\n\n# Check Python version\npython --version  # Should be 3.8+\n```\n\n### Database Issues\n```bash\n# Reset database\nrm data/tasks.db\npython scripts/init_db.py\n```\n\n### Permission Issues\n```bash\n# Make scripts executable\nchmod +x setup.sh main.py scripts/*.py\n```\n\n---\n\n## Cost Estimate\n\nBased on typical usage with Claude Sonnet:\n\n- Morning briefing: ~1,000 tokens (~$0.003)\n- Evening review: ~1,500 tokens (~$0.005)\n- Weekly review: ~3,000 tokens (~$0.009)\n- Goal breakdown: ~2,000 tokens per goal (~$0.006)\n- Research: ~3,000-5,000 tokens per query (~$0.009-0.015)\n\n**Monthly estimate**: $5-15 depending on usage\n\n---\n\n## Contributing to This Project\n\nThis is a personal business tool, but if you're building something similar:\n\n1. Fork the repository\n2. Check the [ROADMAP.md](ROADMAP.md) for upcoming features\n3. Build Phase 2 features\n4. Share your improvements!\n\n---\n\n## Roadmap Highlights\n\n### \ud83d\udd1c Next Up: Phase 2 (Weeks 4-6)\n\n**Top priorities:**\n1. **Live Dashboard** - Real-time task updates in terminal\n2. **Calendar Integration** - Sync with Google Calendar\n3. **Velocity Predictions** - AI predicts completion dates\n4. **Email Integration** - Daily briefings via email\n\n**Timeline:** 3 weeks  \n**Start Date:** This week!\n\nSee [ROADMAP.md](ROADMAP.md) for detailed implementation plans.\n\n---\n\n## Requirements\n\n- Python 3.8 or higher\n- Anthropic API access (Claude)\n- ~50MB disk space\n- Works on: macOS, Linux, Windows\n\n---\n\n## License\n\nMIT License - feel free to use and modify for your business.\n\n---\n\n## Support\n\n- \ud83d\udcd6 **Documentation**: Check the docs in this directory\n- \ud83d\udc1b **Issues**: Check error logs in `data/logs/`\n- \ud83d\udcac **Questions**: Review `GETTING_STARTED.md` and `ROADMAP.md`\n- \ud83d\ude80 **Updates**: Follow the roadmap for upcoming features\n\n---\n\n## Next Steps\n\n### If You're Just Getting Started:\n1. Run `./setup.sh` to set up the environment\n2. Add your Anthropic API key to `.env`\n3. Run `python scripts/morning_brief.py` to test\n4. Create your first goal and let AI break it down\n5. Start using daily for one week\n\n### If You Want to Develop:\n1. Review [ROADMAP.md](ROADMAP.md) for migration path\n2. Check [GETTING_STARTED.md](GETTING_STARTED.md) for dev guide\n3. Open in Claude Code for AI-assisted development\n4. Start building Phase 2 features\n5. Test with beta users\n\n### If You Want to Understand the Vision:\n1. Read [templates/business_plan_template.yaml](templates/business_plan_template.yaml)\n2. Review the 4-phase roadmap\n3. Understand the migration from Python \u2192 Web \u2192 Production\n4. See how each phase builds on the previous\n\n---\n\n**Ready to execute your business plan? Let's go! \ud83d\ude80**\n\nBuilt with \u2764\ufe0f using Claude (Anthropic)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "AI-powered business planning and execution agent",
    "version": "1.1.1",
    "project_urls": {
        "Documentation": "https://github.com/reidchatham/bizy-ai#readme",
        "Homepage": "https://github.com/reidchatham/bizy-ai",
        "Issues": "https://github.com/reidchatham/bizy-ai/issues",
        "Repository": "https://github.com/reidchatham/bizy-ai"
    },
    "split_keywords": [
        "ai",
        " business",
        " planning",
        " productivity",
        " cli",
        " agent"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdc5bde71738a38827f2568ce296832ada90e05d6583336a68480afb7c56e7ba",
                "md5": "dd841d2b11d77a5133abd77b4988f59f",
                "sha256": "becb29cbe516c240411e77407be84242b37834bfd647d560f0913c94c545f15c"
            },
            "downloads": -1,
            "filename": "bizy_ai-1.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dd841d2b11d77a5133abd77b4988f59f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 38044,
            "upload_time": "2025-10-11T18:35:02",
            "upload_time_iso_8601": "2025-10-11T18:35:02.363398Z",
            "url": "https://files.pythonhosted.org/packages/cd/c5/bde71738a38827f2568ce296832ada90e05d6583336a68480afb7c56e7ba/bizy_ai-1.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "740d67d234b4f989c104e5dcad18d65fc7b955ab64ea973b529251c662b7b54a",
                "md5": "845f43e49b55c6b1c69d31f53a976fa8",
                "sha256": "7e470e12a4e00243dd5f3dab9af4db9323e0733e2b47b1f93dd9d78077674311"
            },
            "downloads": -1,
            "filename": "bizy_ai-1.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "845f43e49b55c6b1c69d31f53a976fa8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 41478,
            "upload_time": "2025-10-11T18:35:03",
            "upload_time_iso_8601": "2025-10-11T18:35:03.750952Z",
            "url": "https://files.pythonhosted.org/packages/74/0d/67d234b4f989c104e5dcad18d65fc7b955ab64ea973b529251c662b7b54a/bizy_ai-1.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-11 18:35:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "reidchatham",
    "github_project": "bizy-ai#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "anthropic",
            "specs": [
                [
                    ">=",
                    "0.18.0"
                ]
            ]
        },
        {
            "name": "schedule",
            "specs": [
                [
                    ">=",
                    "1.2.0"
                ]
            ]
        },
        {
            "name": "python-dotenv",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "pyyaml",
            "specs": [
                [
                    ">=",
                    "6.0"
                ]
            ]
        },
        {
            "name": "sqlalchemy",
            "specs": [
                [
                    ">=",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    ">=",
                    "4.12.0"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    ">=",
                    "13.0.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    ">=",
                    "2.8.2"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    ">=",
                    "8.1.0"
                ]
            ]
        },
        {
            "name": "jinja2",
            "specs": [
                [
                    ">=",
                    "3.1.2"
                ]
            ]
        }
    ],
    "lcname": "bizy-ai"
}
        
Elapsed time: 1.90933s