by saharmor
Automatically generate high-quality markdown context files for AI coding agents like Claude, Cursor, and Gemini, Powered By DeepWiki
# Add to your Claude Code skills
git clone https://github.com/saharmor/sidekick-dev-webAutomatically generate high-quality markdown context files for AI coding agents like Claude, Cursor, Windsurf, and Gemini by analyzing any public GitHub repository.
<p> <a href="https://www.linkedin.com/in/sahar-mor/" target="_blank"><img src="https://img.shields.io/badge/LinkedIn-Connect-blue" alt="LinkedIn"></a> <a href="https://x.com/theaievangelist" target="_blank"><img src="https://img.shields.io/twitter/follow/:theaievangelist" alt="X"></a> <a href="http://aitidbits.ai/" target="_blank"><img src="https://github.com/saharmor/saharmor.github.io/blob/main/images/ai%20tidbits%20logo.png?raw=true" alt="Stay updated on AI" width="20" height="20" style="vertical-align: middle;"> Stay updated on AI</a> </p>https://github.com/user-attachments/assets/aa944e4d-f537-4069-b44a-2894d7233e1c
</div># Clone and start both frontend and backend
git clone https://github.com/saharmor/sidekick-code-web.git
cd sidekick-code-web
./start-dev.sh
This automatically sets up the Python virtual environment, installs dependencies, and starts:
Frontend (GitHub Pages):
cd frontend
npm run build:prod
# If deploying to GitHub Pages, ensure Vite base is set for subpath
# Site URL will be https://<user>.github.io/sidekick-code-web/
Backend (Render):
cd backend && pip install -r requirements.txtcd backend && uvicorn main:app --host 0.0.0.0 --port $PORTDEBUG=false and CORS_ORIGINSDocker:
cd backend
docker build -t sidekick-dev-api .
docker run -p 8000:8000 sidekick-dev-api
Backend (.env):
DEBUG=false # Enable debug mode and API docs
CORS_ORIGINS=http://localhost:5173 # Allowed frontend origins
DEEPWIKI_TIMEOUT=60 # DeepWiki request timeout seconds
Frontend (.env.local):
VITE_API_URL=https://your-backend.render.com # Custom backend URL
Each markdown file provides comprehensive project context including:
MIT License - see LICENSE file for details.
Buil...