Intent-Driven, Multi-Language Code Generator — published on PyPI
AUTO-CODEX is a developer tool that converts human intent into working code using a simple CLI.
It supports project initialization, multi-language code generation, and code improvement, making it ideal for students, hackathons, rapid prototyping, and AI-assisted development workflows.
🔗 PyPI: https://pypi.org/project/autocodex-gen/
🔧 CLI Tool | Python Package | Open Source
-
Intent-Driven Development
Write what you want to build in plain English. -
Multi-Language Code Generation
Generate code for: -
Python
-
JavaScript
-
C
-
Java
(Easily extendable) -
CLI-Based Workflow
-
init→ setup project -
generate→ create code -
improve→ refactor existing code -
Published on PyPI Installable globally via
pip. -
Modular Architecture Clean, scalable design for future AI integration.
pip install autocodex-genVerify installation:
autocodex --helpautocodex initCreates the required structure and prepares the workspace.
Edit the file:
intent/idea.md
Example:
Build a simple calculator with add, subtract, multiply, and divide functions.
autocodex generate python
autocodex generate javascript
autocodex generate c
autocodex generate javaGenerated files appear in:
projects/generated_app/
autocodex improve- Refactors generated code
- Improves structure
- Updates documentation automatically
AUTO-CODEX/
├── codex_engine/
│ ├── cli.py
│ ├── generate.py
│ ├── explain.py
│ └── improve.py
├── intent/
│ └── idea.md
├── projects/
│ └── generated_app/
├── pyproject.toml
├── README.md
└── requirements.txt
- Reads intent from
intent/idea.md - Detects target language
- Generates language-specific starter code
- Writes clean, runnable files
- Updates documentation automatically
(Mock mode runs locally — AI mode can be plugged in later.)
- Students — learn code structure quickly
- Hackathons — rapid MVP generation
- Prototyping — scaffold ideas fast
- AI Tooling — base for LLM-powered generators
- Internal Dev Tools — automate boilerplate creation
- Python Packaging & PyPI Publishing
- CLI Tooling & Entry Points
- Modular Software Architecture
- Automation & Build Pipelines
- GitHub Actions & CI/CD
- Cross-Platform Development
Varkala Shashidhar
MIT License — free to use, modify, and distribute.
AUTO-CODEX is not just a script — it is a published developer product. It demonstrates real-world software engineering skills, packaging knowledge, and scalable design.
If you’re reviewing this as a recruiter: CLI Tool PyPI Package Modular Architecture Real Distribution Pipeline
From intent → to code → to product.