Metadata-Version: 2.4
Name: mywork-ai
Version: 2.2.0
Summary: AI-powered development framework with tools, workflows, and brain (knowledge vault)
Home-page: https://github.com/dansidanutz/MyWork-AI
Author: Dan Sidanutz
Author-email: Dan Sidanutz <dan@mywork.ai>
License-Expression: MIT
Project-URL: Homepage, https://github.com/dansidanutz/MyWork-AI
Project-URL: Documentation, https://github.com/dansidanutz/MyWork-AI#readme
Project-URL: Repository, https://github.com/dansidanutz/MyWork-AI.git
Project-URL: Issues, https://github.com/dansidanutz/MyWork-AI/issues
Keywords: ai,development,framework,automation,claude,gsd
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: api
Requires-Dist: fastapi>=0.109.0; extra == "api"
Requires-Dist: uvicorn[standard]>=0.27.0; extra == "api"
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.7.0; extra == "dev"
Requires-Dist: pre-commit>=3.7.0; extra == "dev"
Provides-Extra: all
Requires-Dist: fastapi>=0.109.0; extra == "all"
Requires-Dist: uvicorn[standard]>=0.27.0; extra == "all"
Requires-Dist: pytest>=7.4.0; extra == "all"
Requires-Dist: pytest-cov>=4.1.0; extra == "all"
Requires-Dist: black>=23.0.0; extra == "all"
Requires-Dist: ruff>=0.1.0; extra == "all"
Requires-Dist: mypy>=1.7.0; extra == "all"
Requires-Dist: pre-commit>=3.7.0; extra == "all"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

<div align="center">

```
███╗   ███╗██╗   ██╗██╗    ██╗ ██████╗ ██████╗ ██╗  ██╗     █████╗ ██╗
████╗ ████║╚██╗ ██╔╝██║    ██║██╔═══██╗██╔══██╗██║ ██╔╝    ██╔══██╗██║
██╔████╔██║ ╚████╔╝ ██║ █╗ ██║██║   ██║██████╔╝█████╔╝     ███████║██║
██║╚██╔╝██║  ╚██╔╝  ██║███╗██║██║   ██║██╔══██╗██╔═██╗     ██╔══██║██║
██║ ╚═╝ ██║   ██║   ╚███╔███╔╝╚██████╔╝██║  ██║██║  ██╗    ██║  ██║██║
╚═╝     ╚═╝   ╚═╝    ╚══╝╚══╝  ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝    ╚═╝  ╚═╝╚═╝
```

# MyWork-AI

![Version](https://img.shields.io/badge/version-2.1.0-blue?style=flat-square)
![Python](https://img.shields.io/badge/python-%3E%3D3.9-3776AB?style=flat-square&logo=python&logoColor=white)
![Tests](https://img.shields.io/badge/tests-1032%20passing-brightgreen?style=flat-square)
![License](https://img.shields.io/badge/license-MIT-green?style=flat-square)
![Platform](https://img.shields.io/badge/platform-linux%20%7C%20macOS%20%7C%20windows-lightgrey?style=flat-square)

**The AI-Powered Development Framework**

Build complete applications from idea to production in minutes, not months.

</div>

## 🚀 Quick Start

### Installation

```bash
pip install mywork-ai
```

### Initialize Your First Project

```bash
# Create and configure new project
mw init my-app
cd my-app

# Generate full-stack application
mw generate app --type="task-tracker" --ai
mw deploy --platform=vercel
```

## ✨ Core Features

| Feature | Description | Command |
|---------|-------------|---------|
| 🤖 **AI Code Generation** | Generate complete applications with AI | `mw generate app` |
| 🔄 **Auto-Optimization** | AI-powered code optimization & refactoring | `mw optimize` |
| 🛡️ **Security-First** | Built-in security scanning & compliance | `mw scan security` |
| 📊 **Analytics** | Real-time project metrics & insights | `mw analytics` |
| 🚀 **One-Click Deploy** | Deploy to Vercel, Railway, Docker | `mw deploy` |
| 📚 **Smart Documentation** | Auto-generated docs from code | `mw docs generate` |
| 🧪 **AI Testing** | Generate comprehensive test suites | `mw test generate` |
| 🔧 **53+ Commands** | Complete development toolkit | `mw help` |

## 🏗️ Architecture

MyWork-AI provides a complete development ecosystem:

```
📦 MyWork-AI Framework
├── 🧠 AI Core Engine          # Code generation & optimization
├── 🔧 53+ CLI Commands        # Development automation
├── 📊 Analytics Dashboard     # Project insights
├── 🛒 Marketplace            # Buy/sell complete projects  
├── 🛡️ Security Suite         # Vulnerability scanning
├── 📚 Documentation Engine   # Auto-generated docs
└── 🚀 Deployment Pipeline    # Multi-platform deployment
```

## 🌐 Live Applications

Experience MyWork-AI in action:

- **[Marketplace](https://frontend-hazel-ten-17.vercel.app)** - Buy/sell complete projects
- **[Analytics Dashboard](https://ai-dashboard-pi-seven.vercel.app)** - Project insights
- **[Task Tracker Demo](https://task-tracker-pi-one.vercel.app)** - AI-generated app example

## 📖 Usage Examples

### Generate a Full-Stack App

```bash
# Create React + Node.js application
mw generate app --name="TaskManager" --frontend=react --backend=node

# Add AI-powered features
mw ai enhance --features="auth,dashboard,api"

# Deploy to production
mw deploy --platform=vercel --environment=production
```

### AI Code Optimization

```bash
# Optimize entire codebase
mw optimize --ai --scope=project

# AI-powered refactoring
mw refactor --target="performance" --ai-suggestions

# Generate comprehensive tests
mw test generate --coverage=90 --ai
```

### Security & Compliance

```bash
# Run security audit
mw scan security --fix-auto

# Check compliance
mw compliance check --standard=OWASP

# Generate security report
mw report security --format=pdf
```

## 🔧 Command Reference

### Core Commands
```bash
mw init              # Initialize new project
mw generate          # AI code generation
mw optimize          # Performance optimization
mw deploy            # Multi-platform deployment
mw test              # Testing automation
```

### AI Commands
```bash
mw ai chat           # AI assistant
mw ai review         # Code review
mw ai docs           # Documentation generation
mw ai enhance        # Feature enhancement
```

### Project Management
```bash
mw status            # Project health
mw analytics         # Performance metrics
mw security          # Security scanning
mw marketplace       # Project marketplace
```

[View all 53 commands](docs/commands.md)

## 📊 Performance

- **🚀 10x faster** development cycles
- **🛡️ Zero** critical vulnerabilities in generated code
- **📈 95%+** test coverage on AI-generated projects
- **⚡ <2s** average command execution time
- **🏆 1032** automated tests ensure reliability

## 🛡️ Security

MyWork-AI is built with security-first principles:

- ✅ Automated vulnerability scanning
- ✅ OWASP compliance checking  
- ✅ Secure code generation
- ✅ Regular security audits
- ✅ Zero-trust architecture

See our [Security Policy](SECURITY.md) for details.

## 📚 Documentation

- **[Getting Started](docs/getting-started.md)** - Installation and setup
- **[Commands Reference](docs/commands.md)** - All 53+ commands
- **[AI Features](docs/ai-features.md)** - AI capabilities guide
- **[Deployment Guide](docs/deployment.md)** - Production deployment
- **[API Reference](docs/api.md)** - SDK documentation

## 🤝 Contributing

We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

### Development Setup

```bash
# Clone repository
git clone https://github.com/yourusername/MyWork-AI.git
cd MyWork-AI

# Install dependencies
pip install -e .

# Run tests
pytest

# Run security checks
mw scan security
```

## 📈 Roadmap

See [ROADMAP.md](ROADMAP.md) for upcoming features and planned enhancements.

## 📄 License

MyWork-AI is open source software licensed under the [MIT License](LICENSE).

## 🆘 Support

- **Documentation**: [docs/](docs/)
- **Issues**: [GitHub Issues](https://github.com/yourusername/MyWork-AI/issues)
- **FAQ**: [FAQ.md](FAQ.md)
- **Security**: [SECURITY.md](SECURITY.md)

---

<div align="center">

**Built with ❤️ by the MyWork-AI team**

[Website](https://mywork-ai.dev) • [Documentation](docs/) • [Marketplace](https://frontend-hazel-ten-17.vercel.app) • [Support](https://github.com/yourusername/MyWork-AI/issues)

</div>
