DEV Community

Cover image for 🚀 MyZubster AI Contribution Guide: Complete Handoff Prompt for DeepSeek
Daniel Ioni
Daniel Ioni

Posted on

🚀 MyZubster AI Contribution Guide: Complete Handoff Prompt for DeepSeek

🚀 MyZubster AI Contribution Guide: Complete Handoff Prompt for DeepSeek
📋 Instruction for You (Copy and Paste this entire message into DeepSeek)

Dear AI Assistant,

I need you to help me continue contributing to the MyZubster open-source project. I have already cloned all repositories and made some progress. I want you to analyze the current state and guide me to complete the AI-powered skill generator integration.
📂 My Project Structure

All MyZubster components are in one main folder:
text

C:\Users\user\Desktop\MyZubster\
├── gateway/ # MyZubsterGateway (payment engine)
├── marketplace/ # MyZubster-Marketplace (backend API)
├── app/ # MyZubster-App (React Native mobile)
└── ai-assistant/ # NEW: AI-powered skill generator (React + Vite)

🔗 Repository Links
Component GitHub URL
Ecosystem https://github.com/DanielIoni-creator/myzubster
Gateway https://github.com/DanielIoni-creator/MyZubsterGateway
Marketplace https://github.com/DanielIoni-creator/MyZubster-Marketplace
App https://github.com/DanielIoni-creator/MyZubster-App
Author DEV.to https://dev.to/danielioni
📊 Current Project Status
✅ Last Commit on GitHub

Date: July 19-20, 2026

Message: docs: aggiornato README con roadmap, descrizione e profili

Files modified: README.md, CONTRIBUTING.md, submodules updated
Enter fullscreen mode Exit fullscreen mode

🔄 What's Working
Component Status Port
Gateway ✅ Functional (MongoDB + Node.js) 3000
Marketplace ✅ Functional (SQLite + Node.js) 4000/4001
AI Assistant 🚧 In Development (React + Vite) 5173
🎯 Current Task

Build an AI-Powered Skill Generator that:

Uses Groq API for generating professional skill descriptions

Integrates with MyZubster Marketplace API

Allows sellers to publish skills directly from the AI interface

Supports multi-language translation (English, Italian, Spanish)
Enter fullscreen mode Exit fullscreen mode

📁 Complete File Structure
text

C:\Users\user\Desktop\MyZubster\
├── gateway/
│ ├── server.js
│ ├── .env
│ ├── package.json
│ ├── models/
│ │ ├── index.js
│ │ ├── User.js
│ │ ├── Order.js
│ │ └── Payment.js
│ ├── routes/
│ │ ├── auth.js
│ │ ├── payments.js
│ │ └── webhook.js
│ └── config/
│ └── monero.js

├── marketplace/
│ ├── server.js
│ ├── .env
│ ├── package.json
│ ├── models/
│ │ ├── index.js
│ │ ├── User.js
│ │ ├── Skill.js
│ │ └── Order.js
│ ├── routes/
│ │ ├── auth.js
│ │ ├── users.js
│ │ ├── skills.js
│ │ ├── orders.js
│ │ └── webhook.js
│ └── middleware/
│ ├── auth.js
│ └── admin.js

├── app/
│ ├── App.js
│ ├── .env
│ └── package.json

├── ai-assistant/ # NEW COMPONENT
│ ├── src/
│ │ ├── App.jsx
│ │ ├── index.css
│ │ └── services/
│ │ ├── groqService.js
│ │ └── apiService.js
│ ├── .env
│ ├── .env.example
│ ├── index.html
│ ├── package.json
│ ├── tailwind.config.js
│ └── vite.config.js

├── README.md
├── CONTRIBUTING.md
├── .gitignore
└── docker-compose.yml

🔧 Current Environment Variables
Gateway (.env)
env

PORT=3000
NODE_ENV=development
MONGODB_URI=mongodb://localhost:27017/myzubster
JWT_SECRET=your_gateway_jwt_secret
WEBHOOK_URL=http://localhost:4000/webhook/order-update
WEBHOOK_SECRET=your_webhook_secret

Marketplace (.env)
env

PORT=4000
NODE_ENV=development
DATABASE_URL=sqlite:./database.sqlite
JWT_SECRET=your_marketplace_jwt_secret
MYZUBSTER_API_URL=http://localhost:3000/api
MYZUBSTER_API_TOKEN=your_admin_token
WEBHOOK_SECRET=your_webhook_secret
COMMISSION_PERCENTAGE=2.0

AI Assistant (.env)
env

VITE_GROQ_API_KEY=your_groq_api_key_here
VITE_API_URL=http://localhost:4000/api

🤖 What I Need From You

Please help me:

Analyze the current code in ai-assistant/ and verify it's correct

Complete any missing files or configurations

Guide me through the setup of all three services

Test the full flow from AI generation to publishing on Marketplace

Push all changes to GitHub with proper commit messages
Enter fullscreen mode Exit fullscreen mode

🚀 Quick Start Commands
bash

1. Start MongoDB (if not already running)

docker run -d -p 27017:27017 --name mongodb mongo:6

2. Start Gateway (Terminal 1)

cd C:/Users/user/Desktop/MyZubster/gateway
npm run dev

3. Start Marketplace (Terminal 2)

cd C:/Users/user/Desktop/MyZubster/marketplace
npm run dev

4. Start AI Assistant (Terminal 3)

cd C:/Users/user/Desktop/MyZubster/ai-assistant
npm run dev

5. Access services

Gateway: http://localhost:3000

Marketplace: http://localhost:4000

AI Assistant: http://localhost:5173

✅ Checklist for Completion

□

All three services running simultaneously
□

Groq API key configured in AI Assistant .env
□

User registration and login working via AI Assistant
□

Skill generation working with Groq API
□

Skill publishing to Marketplace working
□

Multi-language translation working
□

All tests passing
□

Changes committed and pushed to GitHub
□

README updated with AI Assistant documentation
Enter fullscreen mode Exit fullscreen mode

📚 Resources

Groq Console: https://console.groq.com (get your API key here)

MyZubster GitHub: https://github.com/DanielIoni-creator/myzubster

Author DEV.to: https://dev.to/danielioni
Enter fullscreen mode Exit fullscreen mode

🎯 Next Steps

Please guide me step-by-step to:

Verify the ai-assistant/ code is complete and correct

Identify and fix any missing parts

Run the full integration test

Commit and push all changes to GitHub
Enter fullscreen mode Exit fullscreen mode

I'm ready to copy and paste your instructions! 🚀

Please respond with the complete guide, and I will follow all instructions carefully.
📝 For You (The User)

Copy the entire text above and paste it into a new conversation with DeepSeek or any AI assistant. The AI will have all the context needed to help you complete the MyZubster AI assistant development.

Good luck and happy coding! 🚀

Top comments (0)