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
4 changes: 4 additions & 0 deletions .codex/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ url = "https://mcp.exa.ai/mcp"
url = "https://mcp.supabase.com/mcp"
startup_timeout_sec = 30

[mcp_servers.mapbox-mcp]
url = "https://mcp.mapbox.com/mcp"
startup_timeout_sec = 30

[mcp_servers.github]
command = "npx"
args = ["-y", "@modelcontextprotocol/server-github"]
Expand Down
6 changes: 6 additions & 0 deletions .gemini/GEMINI.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Everything Claude Code (ECC) is a cross-harness coding system with 36 specialize

Gemini support is currently focused on a strong project-local instruction layer via `.gemini/GEMINI.md`, plus the shared MCP catalog and package-manager setup assets shipped by the installer.

## Operational Scope

- **Default Scope:** You are mandated to work **exclusively on the frontend** codebase.
- **Backend Changes:** Do NOT modify any files in the `api/` directory unless the user explicitly instructs you to perform backend changes for a specific task.
- **Research:** You may read backend files for context or verification, but implementation must remain frontend-only by default.

## Core Workflow

1. Plan before editing large features.
Expand Down
84 changes: 84 additions & 0 deletions .gemini/antigravity-cli/mcp_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"mcp": {
"allowed": [
"magic",
"mui-mcp",
"token-optimizer",
"playwright",
"firecrawl",
"memory",
"context7",
"github",
"mapbox-mcp"
]
},
"mcpServers": {
"magic": {
"command": "npx",
"args": [
"-y",
"@magicuidesign/mcp@latest"
]
},
"mui-mcp": {
"command": "npx",
"args": [
"-y",
"@mui/mcp@latest"
]
},
"token-optimizer": {
"command": "npx",
"args": [
"-y",
"token-optimizer-mcp"
]
},
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp",
"--browser",
"chrome"
]
},
"firecrawl": {
"command": "npx",
"args": [
"-y",
"firecrawl-mcp"
],
"env": {
"FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_KEY_HERE"
}
},
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
},
"context7": {
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp@latest"
]
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_PAT_HERE"
}
},
"mapbox-mcp": {
"serverUrl": "https://mcp.mapbox.com/mcp"
}
}
}
66 changes: 57 additions & 9 deletions .gemini/settings.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,99 @@
{
"mcp": {
"allowed": ["magic", "token-optimizer", "playwright", "firecrawl" ,"memory", "context7", "github"],
"excluded": ["experimental-server"]
"allowed": [
"magic",
"mui-mcp",
"token-optimizer",
"playwright",
"firecrawl",
"memory",
"context7",
"github",
"mapbox-mcp"
],
"excluded": [
"experimental-server"
]
},
"mcpServers": {
"magic": {
"command": "npx",
"args": ["-y", "@magicuidesign/mcp@latest"],
"args": [
"-y",
"@magicuidesign/mcp@latest"
],
"description": "Magic UI components",
"timeout": 30000,
"trust": true
},
"mui-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mui/mcp@latest"
]
},
"token-optimizer": {
"command": "npx",
"args": ["-y", "token-optimizer-mcp"],
"args": [
"-y",
"token-optimizer-mcp"
],
"description": "Token optimization for 95%+ context reduction via content deduplication and compression"
},
"playwright": {
"command": "npx",
"args": ["-y", "@playwright/mcp", "--browser", "chrome"],
"args": [
"-y",
"@playwright/mcp",
"--browser",
"chrome"
],
"description": "Browser automation and testing via Playwright"
},
"firecrawl": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"args": [
"-y",
"firecrawl-mcp"
],
"env": {
"FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_KEY_HERE"
},
"description": "Web scraping and crawling"
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"],
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"description": "Persistent memory across sessions"
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"],
"args": [
"-y",
"@upstash/context7-mcp@latest"
],
"description": "Live documentation lookup — use with /docs command and documentation-lookup skill (resolve-library-id, query-docs)."
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_PAT_HERE"
},
"description": "GitHub operations - PRs, issues, repos"
},
"mapbox-mcp": {
"type": "http",
"url": "https://mcp.mapbox.com/mcp",
"description": "Mapbox geospatial MCP via hosted endpoint with OAuth - geocoding, POI search, routing, isochrones, and static maps"
}
}
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dist/
downloads/
eggs/
.eggs/
lib/
api/lib/
lib64/
parts/
sdist/
Expand Down
Loading
Loading