Complete AI-powered development framework with 78 CLI commands for code generation, project analysis, n8n workflow automation, security scanning, and deployment
Project description
MyWork-AI
๐ค Build, Ship & Sell Software Products โ From One CLI
72+ commands ยท AI code generation ยท Agent engine ยท Marketplace included ยท n8n automation
๐ Quick Start ยท ๐ง Commands ยท ๐ก Examples ยท ๐ Marketplace
What Is MyWork-AI?
MyWork-AI is a complete development framework that takes you from idea to shipped product to revenue. It combines project scaffolding, AI code generation, security scanning, n8n workflow automation, deployment tools, and a marketplace โ all from a single mw command.
pip install mywork-ai โ mw setup โ mw new โ build โ mw deploy โ mw marketplace publish
This isn't another code assistant. It's the full pipeline.
๐ Quick Start
# Install
pip install mywork-ai
# Set up (configures API keys, preferences)
mw setup
# Create a project with AI (generates real code, not templates!)
mw new --ai "invoice API with PDF export and email delivery"
# Or use templates
mw new my-api fastapi
# Check health
cd my-project && mw doctor
# Run the AI agent built into your project
mw agent run agent.yaml
# Deploy
mw deploy
โจ AI Agent Engine (NEW in v2.7.0)
# Create an AI agent
mw agent init customer-bot
# Run it (CLI chat with tool calling)
mw agent run customer-bot.yaml
# Run with web UI
mw agent run customer-bot.yaml --web
# โ Open http://localhost:8080
# Supports 100+ models: OpenAI, Claude, DeepSeek, Gemini, Ollama, Mistral...
Agent config is a simple YAML file:
name: Code Reviewer
model: deepseek/deepseek-chat
instructions: |
Review code for bugs, security issues, and improvements.
tools:
- name: read_file
description: Read a source file
parameters:
path: {type: string, description: "File path"}
command: "cat '{path}'"
You're live in 5 minutes.
โจ Why MyWork-AI?
| Feature | MyWork-AI | Cursor | Aider | Zapier/Make |
|---|---|---|---|---|
| CLI-first (any editor) | โ | โ | โ | โ |
| Project scaffolding | โ 12 templates | โ | โ | โ |
| AI code generation | โ | โ | โ | โ |
| Security scanning | โ | โ | โ | โ |
| n8n workflow automation | โ 16 commands | โ | โ | โ (paid) |
| Deployment pipeline | โ Multi-platform | โ | โ | โ |
| Cost tracking (AI APIs) | โ | โ | โ | โ |
| Secrets vault | โ Encrypted | โ | โ | โ |
| Product marketplace | โ Built-in | โ | โ | โ (paid) |
| Open source & free | โ | ๐ฐ | ๐ฐ | ๐ฐ |
๐ฅ Core Features
๐๏ธ Project Scaffolding
mw new my-app basic # Simple Python project
mw new my-api fastapi # REST API with FastAPI
mw new my-saas saas # Full SaaS with auth, billing, dashboard
mw new my-bot chatbot # AI chatbot with conversation memory
mw new my-tool cli # Command-line tool with arg parsing
mw new my-scraper scraper # Web scraper with data export
mw new my-dash dashboard # Analytics dashboard
mw new my-auto automation # Task automation with scheduling
Each template includes: project structure, .env.example, tests, CI config, README, and .planning/ directory with roadmap.
๐ค AI-Powered Development
mw ai generate # Create complete files from natural language
mw ai refactor # AST-based code improvements
mw ai review # Automated code review
mw prompt-enhance # Improve rough prompts for better AI output
mw context # Build smart context for AI assistants
โก n8n Workflow Automation (16 Commands)
mw n8n setup # One-command n8n install (Docker or npm)
mw n8n status # Check n8n health
mw n8n list # List all workflows
mw n8n import # Import workflow from JSON
mw n8n export # Export workflow
mw n8n activate # Activate/deactivate workflows
mw n8n exec # Execute a workflow
mw n8n test # Validate workflow before deploy
mw n8n templates # Browse 2,700+ community templates
mw n8n config # Manage n8n configuration
๐ก๏ธ Security & Quality
mw security # Full security scan (OWASP checks)
mw secrets set/get # Encrypted secrets vault (Fernet)
mw env audit # Environment variable security scan
mw deps # Dependency vulnerability check
mw health # Project health score (0-100)
mw doctor # Comprehensive diagnostics
mw selftest # Framework self-check (11 checks)
๐ DevOps & Deployment
mw deploy # Multi-platform (Vercel, Railway, Docker)
mw ci # Auto-generate GitHub Actions CI/CD
mw launch # Pre-launch checklist with countdown
mw release # Version bump + changelog + publish
mw backup # Project backup & restore
๐ฐ Cost & Analytics
mw cost estimate # Estimate AI API costs for your project
mw cost track # Running cost tracker across all providers
mw cost budget # Set monthly budget alerts
mw cost report # Monthly breakdown by model/provider
mw benchmark # Code performance profiling
mw stats # Project statistics dashboard
mw recap # Daily/weekly productivity summaries
๐ Marketplace
mw marketplace browse # Browse products
mw marketplace search # Search by keyword
mw marketplace publish # Publish your project for sale
mw marketplace install # Download & install a product
mw clone <product> # Clone a marketplace product
๐ง Command Reference
๐ All 67+ Commands (click to expand)
# Core
mw setup, mw init, mw new, mw status, mw doctor, mw health, mw selftest
# AI & Code Generation
mw ai generate, mw ai refactor, mw ai review, mw ai optimize
mw context, mw prompt-enhance
# Project Planning (GSD)
mw gsd new, mw gsd status, mw gsd progress
# Automation (n8n)
mw n8n setup, mw n8n status, mw n8n list, mw n8n import, mw n8n export
mw n8n activate, mw n8n exec, mw n8n test, mw n8n config, mw n8n templates
# AutoForge (Autonomous Coding)
mw af start, mw af status, mw af queue
# Marketplace
mw marketplace browse, mw marketplace publish, mw marketplace install
mw marketplace search, mw marketplace status, mw clone
# Analysis & Metrics
mw stats, mw benchmark, mw recap, mw todo, mw snapshot
# Security & Quality
mw security, mw secrets, mw deps, mw env, mw audit, mw lint
# DevOps & Deployment
mw deploy, mw ci, mw release, mw launch, mw backup, mw clean
# Cost Tracking
mw cost estimate, mw cost track, mw cost budget, mw cost report
# Git & Collaboration
mw git summary, mw changelog, mw share export, mw share import
# Knowledge Vault
mw brain search, mw brain add, mw brain stats
# Documentation & Onboarding
mw tour, mw demo, mw guide, mw quickstart, mw docs, mw links
# Utilities
mw version, mw upgrade, mw config, mw ecosystem, mw webhook test
mw templates, mw cron, mw monitor
๐ก Examples
Build a SaaS App
mw new invoicer saas
cd invoicer
mw doctor # Check project health
mw security # Security scan
mw deploy # Ship it
Automate with n8n
mw n8n setup # Install n8n
mw n8n import lead-nurture.json # Import workflow
mw n8n test lead-nurture.json # Validate it
mw n8n activate 1 # Go live
Sell on Marketplace
mw marketplace publish # Package & list your project
# Set price, description, tags
# Buyers get: mw clone <your-product>
Track AI Costs
mw cost estimate # "Estimated $47/mo based on 15 API calls detected"
mw cost budget --set 50 # Alert when approaching $50/mo
mw cost report # Monthly breakdown: GPT-4 $23, Claude $18, Gemini $6
๐๏ธ Installation
Requirements
- Python: 3.9+
- OS: Linux, macOS, Windows
- Optional: Git, Docker, Node.js (for n8n features)
Install
# From PyPI (recommended)
pip install mywork-ai
# Development version
pip install git+https://github.com/dansidanutz/MyWork-AI.git
# Verify
mw version
mw selftest
๐ Stats
- 72+ CLI commands across 12 categories
- 424 automated tests passing
- 12 project templates (basic โ full SaaS)
- 16 n8n commands for workflow automation
- 13 marketplace products live
- 2,700+ n8n templates browseable
- v3.0.1 on PyPI
๐ค Contributing
git clone https://github.com/dansidanutz/MyWork-AI.git
cd MyWork-AI
pip install -e .[dev]
pytest # Run all 133 tests
See CONTRIBUTING.md for guidelines.
๐ License
MIT License โ see LICENSE.
โญ Star us on GitHub if MyWork-AI helps you build faster!
โญ Star on GitHub ยท ๐ Marketplace ยท ๐ฆ PyPI
Built by DansiDanutz
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mywork_ai-3.0.2.tar.gz.
File metadata
- Download URL: mywork_ai-3.0.2.tar.gz
- Upload date:
- Size: 695.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
729dfac441b0445f2944d3e0ebe1ede4cc927397d66cb5cf8b260fb4467b0445
|
|
| MD5 |
2c6a1ebd14e553135ca8365356d03178
|
|
| BLAKE2b-256 |
3df1a8fd093561f46456bd8ea8429b29e7c641af42868228b83ff9b6141d1418
|
File details
Details for the file mywork_ai-3.0.2-py3-none-any.whl.
File metadata
- Download URL: mywork_ai-3.0.2-py3-none-any.whl
- Upload date:
- Size: 751.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c30ccd3578e762844844cb240c18c6439683859a44fe2fc681f14247ca8790e5
|
|
| MD5 |
9893dc7877fe0050e27f3b555dda8eb6
|
|
| BLAKE2b-256 |
54011b5928b5e04ad0386a8df4841704d1e95a7a3e36df569cd763b7d1effb18
|