Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/app-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
arc: '5257FA',
audacity: '0000CC',
amazonaws: 'FF9900',
antigravity: '4285F4',
microsoftazure: '0078D4',
bat: '31369E',
bitwarden: '175DDC',
Expand Down Expand Up @@ -151,6 +152,7 @@
audacity: 'audacity',
'aws-cli': 'amazonaws',
'aws-cdk': 'amazonaws',
antigravity: 'google',
'azure-cli': 'microsoftazure',
bat: 'bat',
bitwarden: 'bitwarden',
Expand Down Expand Up @@ -345,7 +347,7 @@
className={`flex items-center justify-center shrink-0 ${className}`}
style={{ width: size, height: size }}
>
<img

Check warning on line 350 in src/components/app-icon.tsx

View workflow job for this annotation

GitHub Actions / Lint & Type-check

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src={iconUrl}
alt=""
width={Math.round(size * 0.7)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/package-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ function PackageCard({
// Mobile
'flutter',
// IDEs
'vscode', 'zed', 'vim', 'neovim', 'emacs',
'vscode', 'zed', 'vim', 'neovim', 'emacs', 'antigravity',
// Tools
'terraform', 'ansible', 'github-cli', 'git', 'curl', 'zsh', 'oh-my-zsh', 'jq', 'htop', 'tmux',
'lazygit', 'delta', 'httpie', 'pandoc',
Expand Down
16 changes: 16 additions & 0 deletions src/lib/apps/ides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@ export const ideApps: Package[] = [
},
],
},
{
id: 'antigravity',
name: 'Antigravity',
description: '🚀 Google\'s agent-first IDE powered by Gemini - autonomous AI agents for complex tasks',
category: 'ide',
platforms: { macos: true, linux: true },
defaultVersion: 'stable',
versions: [
{
id: 'stable',
label: 'Stable',
macCommand: 'brew tap google/antigravity && brew install --cask antigravity',
linuxCommand: 'echo "📥 Downloading Antigravity for Linux..." && cd /tmp && curl -fSL "https://antigravity.google/download/linux/latest" -o antigravity.AppImage && chmod +x antigravity.AppImage && sudo mv antigravity.AppImage /usr/local/bin/antigravity && echo "✅ Antigravity installed! Run with: antigravity"',
},
],
},
{
id: 'cursor',
name: 'Cursor',
Expand Down
2 changes: 1 addition & 1 deletion src/lib/script-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export function estimateDiskSpace(packages: Package[]): number {

function getCheckCommand(pkgId: string): string | null {
const map: Record<string, string> = {
vscode: 'code', cursor: 'cursor', zed: 'zed', vim: 'vim', intellij: 'idea',
vscode: 'code', cursor: 'cursor', zed: 'zed', vim: 'vim', intellij: 'idea', antigravity: 'antigravity',
nvm: 'nvm', nodejs: 'node', npm: 'npm', python3: 'python3',
ruby: 'ruby', php: 'php', kotlin: 'kotlinc', rust: 'rustc',
go: 'go', java: 'java', cpp: 'g++',
Expand Down
Loading