SIDEVKICK
| Entity Passport | |
| Registry ID | gh-model--abdohurbly--sidevkick |
| License | MIT |
| Provider | github |
Cite this model
Academic & Research Attribution
@misc{gh_model__abdohurbly__sidevkick,
author = {Abdohurbly},
title = {SIDEVKICK Model},
year = {2026},
howpublished = {\url{https://github.com/abdohurbly/sidevkick}},
note = {Accessed via Free2AITools Knowledge Fortress}
} đŦTechnical Deep Dive
Full Specifications [+]âž
Quick Commands
git clone https://github.com/abdohurbly/sidevkick âī¸ Nexus Index V2.0
đŦ Index Insight
FNI V2.0 for SIDEVKICK: Semantic (S:50), Authority (A:0), Popularity (P:40), Recency (R:86), Quality (Q:50).
Verification Authority
đ What's Next?
Technical Deep Dive
SIDEVKICK
Your local Dev sidekick that Gets it (Done)
SIDEVKICK is a tool designed to assist developers by integrating AI capabilities directly into their local development workflow. It helps with tasks like code editing, refactoring, generation, explanation, and more, using the GenAI models of your choice.

⨠Features
- AI-Powered Coding Assistance: Leverage models from Google Gemini, OpenAI, or Anthropic for code generation, refactoring, explanation, and suggestions.
- Interactive Chat Interface: Communicate with the AI to get help with your coding tasks.
- Integrated Code Editor: View and edit your project files directly within the application using Monaco Editor.
- File Explorer: Easily navigate your project's directory structure.
- Apply AI Suggestions: Review and apply AI-suggested changes (file edits, new file/folder creation, shell command execution) with a diff view.
- Backend API: A robust FastAPI backend to handle AI interactions and file operations.
- Modern Frontend: A responsive React (TypeScript) frontend built with Vite and Material-UI for a clean user experience.
- Git Integration: Basic Git operations (status, add, commit, push, pull, branch) from the UI.
- Configurable: Set your API key and choose your preferred AI model.
- Live Preview: (For web projects) An integrated iframe to preview changes.
đ§ Supported AI Models
This agent currently supports multiple providers and their latest models:
**Gemini (by Google):**
gemini-2.0-flash-expgemini-1.5-progemini-1.5-flashgemini-1.5-flash-8bgemini-2.5-pro-preview-05-06gemini-2.5-flash-preview-05-20gemini-2.5-flash-preview-native-audio-dialog
**Claude (by Anthropic):**
claude-3.5-sonnetclaude-3-opusclaude-3-haiku
**GPT (by OpenAI):**
- GPT-4-turbo and future support for GPT-4.5 and GPT-5 models.
â You can switch models dynamically from the configuration panel.
đ Smart Context System (RAG vs Smart Static Analysis)
The agent supports two powerful methods to understand your codebase context:
â Smart Retrieval (RAG â Retrieval-Augmented Generation)
- Uses embeddings and a semantic vector index (FAISS + SentenceTransformers) to retrieve only the most relevant code chunks for your query.
- Helps avoid noisy context and focuses the model on precise logic.
- Enables file-level dependency understanding, class/function metadata, and component detection.
đŦ Smart Static Context (without RAG)
- Even when RAG is disabled, the agent performs intelligent static analysis to determine relevant files and context.
- It detects UI components, code complexity, function/class declarations, and structural relationships across files.
- This hybrid approach ensures that context sent to the model is focused and high-quality â even in full-project scans.
You can toggle RAG on/off via UI or API. Both methods work intelligently behind the scenes using semantic metadata, not just raw file dumps.
đ ī¸ Tech Stack
Backend:
- Python 3.9+
- FastAPI
- Uvicorn (ASGI server)
- Google Generative AI SDK (
google-generativeai) - Anthropic AI SDK
- OpenAI AI SDK
Frontend:
- React 18+
- TypeScript
- Vite
- Material-UI (MUI)
- Monaco Editor (for the code editor component)
- Axios (for API communication)
AI Model: Google Gemini (configurable), Anthropic Claude, OpenAI
đ Getting Started
Prerequisites
- Python 3.9 or higher
- Node.js 18.x or higher and npm (or yarn)
- Git
- An API key for Google Gemini, OpenAI, or Anthropic (depending on your chosen provider)
Installation & Setup
Clone the repository:
bashgit clone https://github.com/Abdohurbly/local-ai-developer-agent.git cd local-ai-developer-agentBackend Setup:
Navigate to the project root directory.
Create and activate a Python virtual environment:
bashpython -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activateInstall Python dependencies:
bashpip install -r requirements.txt
Frontend Setup:
Navigate to the
frontenddirectory:bashcd frontendInstall Node.js dependencies:
bashnpm install # or if you use yarn: # yarn installGo back to the project root directory:
bashcd ..
Configuration
- The application allows you to configure your AI API Key and select the AI model through the UI (Settings page).
- Ensure your API key has the necessary permissions to use the selected GenAI models.
đ Running the Application
Start the Backend Server:
From the project root directory (ensure your Python virtual environment is activated):
bashuvicorn backend_api:app --host 0.0.0.0 --port 8000 --reloadThe backend API will be running at
http://localhost:8000.
Start the Frontend Development Server:
Open a new terminal, navigate to the
frontenddirectory:bashcd frontendRun the development server:
bashnpm run dev # or if you use yarn: # yarn devThe frontend application will be accessible at
http://localhost:3000(or another port if 3000 is in use, check your terminal output).
Access the Application:
- Open your web browser and go to
http://localhost:3000. - Configure your API Key and load your project path via the Settings page in the UI.
- Open your web browser and go to
đ Project Structure (Overview)
agent.py: Core AI agent logic.backend_api.py: FastAPI application defining the backend server and API endpoints.utils.py: Utility functions for file system operations and project context gathering.requirements.txt: Python dependencies for the backend.frontend/: Contains the React frontend application.frontend/src/: Main source code for the React app (components, pages, services).frontend/public/: Static assets for the frontend.frontend/package.json: Frontend dependencies and scripts.frontend/vite.config.ts: Vite configuration for the frontend development server and build process.
đ¤ Contributing
Contributions are welcome! We appreciate any help to improve the SIDEVKICK. Here's how you can contribute:
Fork the Repository: Create your own fork of the project on GitHub.
Create a Branch:
bashgit checkout -b feature/your-amazing-featureMake Your Changes: Implement your feature or bug fix.
Lint and Test:
For frontend changes, run the linter:
bashcd frontend npm ci # install Node dependencies npm run lintFor backend changes, run the Python unit tests:
bash# install dependencies if you haven't pip install -r requirements.txt pytestThe tests include dummy modules for large optional dependencies so they can run in minimal environments.
Commit Your Changes:
bashgit commit -m "feat: Add some amazing feature" # Use conventional commit messages if possiblePush to Your Branch:
bashgit push origin feature/your-amazing-featureOpen a Pull Request: Go to the original repository on GitHub and open a Pull Request from your forked branch.
Reporting Bugs or Requesting Features
- Please use the GitHub Issues section of this repository to report bugs or request new features.
- Before creating a new issue, check if a similar one already exists.
- For bug reports, please provide as much detail as possible, including steps to reproduce, environment details, and logs if relevant.
Code Style
- Frontend: The project uses ESLint for code linting. Please ensure your contributions pass the linting checks.
- Backend (Python): (Consider adopting a style like Black or PEP 8. For now, aim for clarity and consistency).
đ License
This project is licensed under the MIT License.
đ Acknowledgements
- Google for the Gemini API.
- The creators of FastAPI, React, Vite, Material-UI, Monaco Editor, and other open-source libraries used in this project.
đ Quick Start
git clone https://github.com/Abdohurbly/local-ai-developer-agent.git
cd local-ai-developer-agent
â ī¸ Incomplete Data
Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.
View Original Source âđ Limitations & Considerations
- âĸ Benchmark scores may vary based on evaluation methodology and hardware configuration.
- âĸ VRAM requirements are estimates; actual usage depends on quantization and batch size.
- âĸ FNI scores are relative rankings and may change as new models are added.
- â License Unknown: Verify licensing terms before commercial use.
Social Proof
AI Summary: Based on GitHub metadata. Not a recommendation.
đĄī¸ Model Transparency Report
Technical metadata sourced from upstream repositories.
đ Identity & Source
- id
- gh-model--abdohurbly--sidevkick
- slug
- abdohurbly--sidevkick
- source
- github
- author
- Abdohurbly
- license
- MIT
- tags
- agent, ai, developer, gemini-ai, code-assistant, anthropic, openai, openai-api, agentic, agents, python
âī¸ Technical Specs
- architecture
- null
- params billions
- null
- context length
- null
- pipeline tag
- other
đ Engagement & Metrics
- downloads
- 0
- stars
- 9
- forks
- 0
Data indexed from public sources. Updated daily.