Skip to main content

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

PyPI Version Python Version Downloads License Tests

๐Ÿค– 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
  • v2.8.0 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mywork_ai-3.0.1.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mywork_ai-3.0.1-py3-none-any.whl (834.9 kB view details)

Uploaded Python 3

File details

Details for the file mywork_ai-3.0.1.tar.gz.

File metadata

  • Download URL: mywork_ai-3.0.1.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for mywork_ai-3.0.1.tar.gz
Algorithm Hash digest
SHA256 5edf9ccec7ceb3fe6b9003d8411d1a4c94739b4c39fc249e2a92ea8ec08b908d
MD5 389d8dde2e6737407b82ce84967f4670
BLAKE2b-256 b5e53e5d690d9f27675bca82391d8b038d561959bc64593b0d0bc8126c407988

See more details on using hashes here.

File details

Details for the file mywork_ai-3.0.1-py3-none-any.whl.

File metadata

  • Download URL: mywork_ai-3.0.1-py3-none-any.whl
  • Upload date:
  • Size: 834.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for mywork_ai-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fc4bcccdfc3b60b7f5ba926ee8d48b71795f4d50ebfe377378d4b2d27c4b6845
MD5 9f6f175d5d2b2ac7be779170bbdf5797
BLAKE2b-256 c443d0633eef74ac15065f2dc5152386864a7077b14d756b53744e98616f954c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page