mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-16 13:35:11 +00:00
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.
17 lines
393 B
JSON
17 lines
393 B
JSON
{
|
|
"name": "ai-coding-agent",
|
|
"version": "1.0.0",
|
|
"description": "A full-stack AI coding agent.",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=packages/frontend",
|
|
"build": "npm run build --workspace=packages/frontend",
|
|
"start": "npm run start --workspace=packages/backend"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|