Crowe Code - Your AI-Native IDE Companion

Crowe Code is a revolutionary AI-native IDE that brings the power of Crowe Logic AI directly into your development workflow. This VS Code extension provides seamless integration with the Crowe Code platform.
✨ Features
🎨 Animated Welcome Panel
- Beautiful animated Crowe Code logo on startup
- Quick tips and shortcuts to boost your productivity
- Customizable - disable it in settings if you prefer
🚀 Smart Code Snippets
- Insert useKV Snippet: Instantly generate type-safe Spark KV storage hooks
- User-namespaced keys for secure, isolated workspaces
- Best practices baked in
⚡ Quick Commands
Crowe Code: Show Panel - Open the animated welcome panel anytime
Crowe Code: Insert useKV Snippet - Insert a typed useKV example into your active file
- More commands coming soon!
📦 Installation
From VS Code Marketplace (Recommended):
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X or Cmd+Shift+X)
- Search for "Crowe Code"
- Click Install
From Command Line:
code --install-extension crowecode.crowe-code-vscode
Manual Installation:
- Download the
.vsix file from Releases
- Run
code --install-extension crowe-code-vscode-*.vsix
🎯 Usage
After installation, the Crowe Code welcome panel will appear automatically when you start VS Code. You can:
- Access Commands: Press
Ctrl+Shift+P (or Cmd+Shift+P) and type "Crowe Code"
- Disable Welcome Panel: Go to Settings → Extensions → Crowe Code → Uncheck "Enable Welcome"
- Insert Snippets: Use the command palette to insert pre-configured code snippets
⚙️ Settings
| Setting |
Description |
Default |
croweCode.enableWelcome |
Show animated panel on startup |
true |
🌐 About Crowe Code
Crowe Code is a next-generation IDE that combines:
- AI-Powered Coding: Crowe Logic AI assists with debugging, refactoring, and code generation
- Cloud-Native: Your code, synced across all devices
- Modern Stack: Built with React 19, Vite, TypeScript, and Supabase
- Real-Time Collaboration: Work together with your team seamlessly
👉 Try Crowe Code: https://crowe-code.vercel.app
🤝 Contributing
We welcome contributions! Visit our GitHub repository to:
- Report bugs
- Suggest features
- Submit pull requests
📄 License
MIT License - see LICENSE for details
🔗 Links
Built with ❤️ by the Crowe Code team
Development
This repo is a monorepo with npm workspaces. The extension lives under packages/crowe-code-vscode/.
Install dependencies
From the repo root:
npm install
Build
npm run --workspace crowe-code-vscode build
Launch in VS Code
- Press F5 (Run and Debug) with this folder open to start an Extension Development Host
- Run the command
Crowe Code: Show Panel from the Command Palette
Package (optional)
Install the VS Code Extension Manager if needed:
npm install -g @vscode/vsce
Then package:
npm run --workspace crowe-code-vscode package
This produces a .vsix file which you can install or publish.
Notes
- The extension does not include an AI backend; it focuses on Crowe Code UX helpers and examples.
- The snippet mirrors patterns used in the app (
useKV namespaced by userId).