Skip to main content

Vibe Coding Tools List

 Vibe Coding Tools List

Dedicated Vibe Coding Platforms:
  • Google AI Studio / Firebase Studio: Rapid full-stack application generation and deployment from conversational prompts.
  • Replit Agent: Cloud-based IDE with "Ghostwriter" AI for instant code generation, debugging, and deployment.
  • Bolt: Browser-based AI development agent for building full-stack web and mobile apps with natural language.
  • Lovable: Rapid UI prototyping tool that converts text commands into styled layouts with one-click export/deployment.
  • v0 by Vercel: Prompt-powered UI builder for generating production-ready React components with Tailwind CSS.
  • Wegic: Converts visual ideas or Figma designs into working code with prompt-based structure creation.
AI-Powered IDEs and Code Editors:
  • Cursor: An "AI-first" code editor (based on VS Code) offering deep project awareness and multi-file conversational edits.
  • Windsurf (formerly Codeium): Agentic AI-native IDE featuring the "Cascade" AI agent for seamless multi-file editing and autonomous refactoring.
  • Gemini Code Assist: AI coding partner providing in-editor assistance, generation, explanation, and testing in VS Code and JetBrains IDEs.
  • GitHub Copilot: Widely used AI pair programmer providing real-time code suggestions and boilerplate generation within various IDEs.
  • AWS Q Developer: AI assistant designed for AWS-centric workflows, providing agentic assistance in the IDE and CLI.
  • Amazon Kiro: An AI IDE for rapid prototyping to production-level coding.
Supporting Tools & Other Noteworthy Mentions:
  • Claude Code: Anthropic's LLM model used within tools like Cursor to power code generation and problem-solving.
  • SuperWhisper: Voice-to-text tool allowing users to speak code or prompts into existence.
  • Early Catch: Agentic testing tool that automatically generates unit tests for AI-generated code.
  • Qodo: Agentic AI coding platform focused on improving code quality and reliability through automated testing.

Comments

Popular posts from this blog

Referral & Deep linking

  Plugins :  app_links: android_play_install_referrer: Link to share :  https://yourweb.com/referral?code=TEST123 https://play.google.com/store/apps/details?id=com.erer&referrer=referral_code%3DTEST123 Manifest :  < intent-filter android : autoVerify = "true" >     < action android : name = "android.intent.action.VIEW" />     < category android : name = "android.intent.category.DEFAULT" />     < category android : name = "android.intent.category.BROWSABLE" />     < data         android : host = "yourweb.co"         android : pathPrefix = "/referral"         android : scheme = "https" /> </ intent-filter > Flutter Code :  import 'package:app_links/app_links.dart' ; import 'package:android_play_install_referrer/android_play_install_referrer.dart' ; import 'package:flutter/foundation.dart' ; import 'package:shared_p...

Native api call flutter in terminated state

Calling Native Android Code from Flutter (Step-by-Step for Beginners) When you need to run platform-specific features (like background services, Bluetooth, or sensors) that Flutter doesn’t handle out of the box, you can use MethodChannels to talk to native Android or iOS code. In this tutorial, we’ll: Create a MethodChannel in Flutter. Set up a foreground service in Android. Trigger that service from Flutter—even when the app is closed. 1. What Is a MethodChannel? Think of a MethodChannel as a telephone line between Flutter (Dart) and the platform’s native code (Java/Kotlin for Android, Swift/Objective-C for iOS). Flutter side: “📞 Hey Android, please start the service!” Android side: “✅ Got it, I’m starting it now.” 2. Create the Channel in Flutter Create a new file: lib/native_service.dart import 'package:flutter/services.dart' ; class NativeService {   // ✅ A generic channel name you can reuse in any project   static const _channel = MethodChanne...