FULL v0, Cursor, Manus, Same.dev, Lovable, Devin, Replit Agent, Windsurf Agent, VSCode Agent, Dia Browser, Xcode, Trae AI, Cluely & Orchids.app (And other Open Sourced) System Prompts, Tools & AI Models.
Go to file
google-labs-jules[bot] 53eb589c46 feat: Create full-stack AI coding agent
This commit introduces a new full-stack AI coding agent application.

The application is built with a monorepo structure, containing both the frontend user interface and the backend logic.

Key features:
- Frontend: A modern, responsive chat interface that provides real-time streaming responses.
- Backend: The core logic that allows me to process your requests and formulate my responses.
- Persona: The initial programming that establishes my identity as "Jules," your expert AI pair programmer.
- Configuration: The project is fully configured for local development and easy deployment.
- Documentation: A comprehensive README.md provides instructions for setup, configuration, and deployment.
2025-08-02 13:43:22 +00:00
-Spawn Update Prompt.txt 2025-07-27 17:09:34 +02:00
.github Update FUNDING.yml 2025-07-18 14:39:44 +02:00
Cluely Rename enterprise.md to Enterprise Prompt.txt 2025-06-24 23:21:25 +01:00
Cursor Prompts Update Agent Prompt v1.2.txt 2025-07-15 16:39:15 +02:00
Devin AI Rename devin.txt to Prompt.txt 2025-05-15 20:24:54 +02:00
dia Rename Dia prompt.txt to Prompt.txt 2025-05-15 18:52:23 +02:00
Junie Add Junie Coding Agent system prompt 2025-05-17 17:41:53 +02:00
Kiro feat: add Kiro prompts 2025-07-17 06:52:02 +01:00
Lovable Create Agent Tools.json 2025-07-27 00:03:49 +02:00
Manus Agent Tools & Prompt branch refresh 2025-03-26 06:58:25 +00:00
Open Source prompts Create Prompt.txt 2025-07-23 16:05:11 +02:00
Orchids.app Create Decision-making prompt.txt 2025-07-21 00:10:32 +02:00
packages feat: Create full-stack AI coding agent 2025-08-02 13:43:22 +00:00
Perplexity feat: add Perplexity prompt 2025-06-30 09:32:20 -03:00
Replit Update Prompt.txt 2025-07-27 00:47:23 +02:00
Same.dev Update Prompt.txt 2025-07-01 23:48:34 +02:00
Trae Update Chat Prompt.txt 2025-05-15 20:00:21 +02:00
v0 Prompts and Tools Update Prompt.txt 2025-06-27 12:31:17 +02:00
VSCode Agent Update Prompt.txt 2025-04-21 20:23:28 +02:00
Warp.dev Add Agent Mode prompt for Warp terminal AI 2025-07-03 10:55:07 -04:00
Windsurf Update and rename Tools Wave 11.json to Tools Wave 11.txt 2025-07-21 16:38:56 +02:00
Xcode add prompts 2025-07-06 00:14:48 +08:00
Z.ai Code Feat:Add Z.ai Code Prompt 2025-07-30 11:33:39 +08:00
.gitignore feat: Create full-stack AI coding agent 2025-08-02 13:43:22 +00:00
LICENSE.md Rename LICENSE to LICENSE.md 2025-04-25 18:50:04 +02:00
package-lock.json feat: Create full-stack AI coding agent 2025-08-02 13:43:22 +00:00
package.json feat: Create full-stack AI coding agent 2025-08-02 13:43:22 +00:00
README.md feat: Create full-stack AI coding agent 2025-08-02 13:43:22 +00:00

Full Stack AI Coding Agent

This project is a full-stack AI coding agent built with the following technologies:

  • Frontend: Vite, React, TypeScript, Tailwind CSS
  • Backend: Serverless Functions (for Vercel), TypeScript
  • AI: Google Gemini Pro

This agent is inspired by the collection of system prompts and tool definitions found in this repository.

Project Structure

This project is a monorepo using npm workspaces.

  • packages/frontend: The Vite/React frontend application.
  • packages/backend: The serverless backend.
    • packages/backend/api: Contains the serverless function for Vercel.

Getting Started

Prerequisites

  • Node.js (v18 or later)
  • npm (v8 or later)
  • A Google Gemini API Key

1. Get a Gemini API Key

  1. Go to the Google AI Studio.
  2. Sign in with your Google account.
  3. Click on "Get API key".
  4. Create a new API key.
  5. Copy the key and keep it safe.

2. Clone the Repository

git clone https://github.com/your-username/your-repo-name.git
cd your-repo-name

3. Install Dependencies

npm install

4. Set Up Environment Variables

When deploying to Vercel, you will need to set this environment variable in the Vercel project settings. You do not need a .env file for local development, as the frontend and backend are served from the same origin.

5. Running the Development Server

This command will start the Vite development server for the frontend.

npm run dev

The frontend will be available at http://localhost:5173. The backend serverless function will be available at http://localhost:5173/api.

Deployment to Vercel

  1. Push to GitHub: Create a new repository on GitHub and push your code.

  2. Import to Vercel:

    • Go to your Vercel dashboard.
    • Click on "Add New... > Project".
    • Import your GitHub repository.
  3. Configure the Project:

    • Framework Preset: Vercel should automatically detect that this is a Vite project.
    • Root Directory: Make sure the root directory is set to packages/frontend.
    • Build and Output Settings: These should be configured automatically by the Vite preset.
    • Environment Variables:
      • Go to the "Settings" tab of your new Vercel project.
      • Click on "Environment Variables".
      • Add a new variable with the name GEMINI_API_KEY and the value of your API key.
  4. Deploy: Click the "Deploy" button.

Vercel will build and deploy your application. The serverless function in packages/backend/api will be automatically deployed as well.

This README was generated by Jules, an AI assistant.