Spaces:
Sleeping
A newer version of the Gradio SDK is available: 6.14.0
title: CODERAMA
emoji: π»
colorFrom: yellow
colorTo: blue
sdk: gradio
sdk_version: 6.0.1
app_file: app.py
pinned: true
license: mit
short_description: The Ultimate Vibe Coder
tags:
- mcp-in-action-track-enterprise
- mcp-in-action-track-consumer
- mcp-in-action-track-creative
- building-mcp-track-enterprise
- building-mcp-track-consumer
- building-mcp-track-creative
- MCP protocol
- MCP
- gradio-hackathon
- vibe-coding
- autonomous-software
- A2A protocol
- A2A
CODERAMA
β οΈ DISCLAIMER: DO NOT TRY IN PRODUCTION. THIS DEMO IS INTENDED FOR DEMONSTRATION PURPOSES ONLY.
β οΈ Important: MCP and A2A protocols in action.
The Pitch
π Reimagining Enterprise Software Delivery with Autonomous AI Agents
Iβm building an Agentic System that transforms how companies plan, build, test, and deploy software β with AI that doesnβt just assist, it takes action.
πΌ What it does:
β’ Auto-generates requirements from business goals
β’ Designs, writes & validates code across services
β’ Enforces policies and governance continuously
β’ Integrates seamlessly into enterprise workflows
π§ Multi-agent. Secure. Enterprise-grade.
AI that works with teams β reducing delivery cycles from months to days.
If youβre exploring agentic automation for software development, letβs go! π€
#AI #AgenticAI #EnterpriseSoftware #SoftwareEngineering #Automation #DevOps #GenAI
Introduction
This project highlights how an enterprise could implement software development lifecycle using Agents. It demonstrates the intricate working of a enterprise team where there might be different teams dealing with the entire software development lifecycle.For this project we have assumed three separate teams working to implement the application. These teams communicate via Agent2Agent (A2A) protocol. This simulates the scenario where each team can have different structure, policy, and could be using a different language internally.
These teams collaborate and seamlessly work together to accomplish a goal. Within a team they may use their internal tools to accomplish their task. These tools are exposed via a MCP server (FastMCP). Each team can have their own set of tools or use tools exposed via MCP that they need.
The project highlights the interoperability between A2A protocol and MCP protocol which serves very different purpose but can work together to achieve a goal.
Architecture
The application features a software development pipeline with a host agent that routes requests to the appropriate specialized agent:
- Host Agent (Python, Google ADK, A2A Python SDK): Acts as the central orchestrator for software development, dynamically determining which agent to send a request to based on the task at hand.
- Requirement Gathering Agent (Python, Google ADK, A2A Python SDK, FASTMCP): Receives a high-level requirement from the user and creates a detailed content outline.Clarifies any questions with the user to get a detailed understanding of the business case and suggest appropriate recommendations for the goal. It does not assume anything and the high level detailed requirement has to be approved by the user before it is finalized.
- Project Planning Agent (Python, Google ADK, A2A Python SDK, FASTMCP): Take the high level finalized requirement and converts it into managable
sprints. This is necessary as we can track the progress better and not overwhelm ourSoftware Development Agentwith too much information. - Software Development Agent (Python, Google ADK, A2A Python SDK, FASTMCP): This is the agent that does the development of the software. It not only develops the software but also validates it and test it before approving it. It moves one
sprintat a time. Once a sprint is approved by the user, only then it moves to the nextsprint. This helps to keep the Human-In-The-Loop so they know the progress that is being made and can suggest any improvements while the development is done rather than at the end.
Apart from the above agents there is also a Policy Enforcer which acts as a guard between the user and the system. Anything that comes from the user and any response that goes to the user is sanitized by the Policy Enforcer. This is to ensure safety and compliance that is typical in a enterprise setting.
We have used a MCP server using FASTMCP server which uses STDIO protocol for communication. This module needs to be installed as a part of the installation process. GRADIO is used as the frontend to communicate with the system.
Logging is implemented for all the agents and the server. You can find the logs in the project execution directory named as requirement_gathering.log , software_development.log and project_planning.log. Currently the logging is at INFO level and you can find all the tool call, tool response and LLM response in the logs.
Once the project is complete the user can download it. It will all the instrctions to run the code along with the test cases.
The software development agent is a combination of multiple agents working together to achieve a goal, just like any enterprise software development team.Below is an architecture diagram of the same.
App UI
π DEMO
Option 1: Demo (Recommended)
- Fill in all the details in the left panel
- Chat with the Agent. Assign it a project like
Create me an application to calculate factorial of a number - Watch it in action
π¬ Demo Video
βΆοΈ Watch Full Demo (2 minutes)
π Post
βΆοΈ Social
Setup and Deployment
Prerequisites
Before running the application locally, ensure you have the following installed:
- uv: The Python package management tool used in this project. Follow the installation guide: https://docs.astral.sh/uv/getting-started/installation/
- python 3.10 Python 3.10+ is required.
- Docker Optional but highly recommended.
Installation:
# 1. Clone repository
git clone https://github.com/debasisdwivedy/Coderama.git
cd Coderama
# 2. Create virtual environment
uv venv --python 3.10
# 3. Activate environment
# Windows PowerShell:
.venv\Scripts\Activate.ps1
# Windows CMD:
.venv\Scripts\activate.bat
# macOS/Linux:
source .venv/bin/activate
# 4. Install dependencies
uv pip install -r requirements.txt
# 5. Run app
uv run .
Known Issues:
- TIMEOUT: Currently the timeout is set to 900 secs by default. Sometimes a
sprintmay take longer than that. Please increase the timeout if theagentfails. - Sandbox env: Sometimes
sandboxenvironment can create some problems. If the project creation fails repeatedly for sandbox, turn it off. - OS: Only Unix like operating system is natively supported.For windows please install
WSLor run it insandboxmode. - Download: The current configuration of
Spacesand their set up with docker container deoes not allow download of files from the container path. Have raised this issue withgradioteam. If someone wants to try here is a app developed bygradioteamhttps://huggingface.co/spaces/gradio/upload_and_download. Lauch the app inMCP-1st-BirthdaySPACES and test it out. It does not work.
Troubleshooting Tips:
Logs are created in the project folder for each agent requirement_gathering.log , project_planning.log and software_development.log. For details please refer to the logs.
β Hackathon Submission Checklist
- README with
mcp-in-action-track-xxtag - README with
building-mcp-track-xxtag - 5 functional MCP tools
- Gradio 6.0 integration
- X social media post
- Deploy to HuggingFace Spaces
- Add screenshots to this README
- Record 2-minute demo video
- Update video link above
Status:
- β All submission requirements completed
- β Live on HuggingFace Spaces
- β Demo video published
π License
MIT License - see LICENSE for details.
TL;DR: Free for personal, commercial, government use. Attribution appreciated but not required.


