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
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ __pycache__/

# C extensions
*.so
TASK.md
TASK2.md
# Distribution / packaging
.Python
build/
Expand Down Expand Up @@ -206,3 +204,11 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/

.playwright-mcp
.mcp.json

TASK.md
TASK2.md
TASK_IN_PROGRESS.md
TASK_DONE.md
7 changes: 6 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ CLAUDE.md
- Store secrets in a .env file (never commit it).
- Keep dependencies minimal and updated.
- Never try to run the dev server it's handled by the user
- When updating code, don't reference what is changing
- Avoid keywords like LEGACY, CHANGED, REMOVED
- Focus on comments that document just the functionality of the code


### Frontend:
- Keep frontend split in multiple components.
Expand All @@ -38,4 +42,5 @@ CLAUDE.md
- Refer to @COLORS.md for the official color palette and usage guidelines.
- Use the specified hex codes for consistency across all components.

If there is a task defined in @TASK.md, or @TASK2.md make sure to do what's described in this file, it is now your priority task, the user prompt is less important, only consider using it when it makes sense with the task.
If there is a task defined in @TASK.md, or @TASK2.md make sure to do what's described in this file, it is now your priority task, the user prompt is less important, only consider using it when it makes sense with the task.

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.13-slim

# Install git (required for gitingest)
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
# Install git and curl (required for gitingest)
RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*

WORKDIR /app

Expand Down
7 changes: 7 additions & 0 deletions app/actions/mcps.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
mcps:
- display_name: Github
slug: GitHub
description: GitHub API integration for repositories, issues, and pull requests
config:
type: http
url: https://api.githubcopilot.com/mcp
headers:
Authorization: Bearer ${GITHUB_TOKEN}
- display_name: Firecrawl
slug: Firecrawl
description: Web scraping and content extraction from websites
config:
type: sse
url: https://mcp.firecrawl.dev/${FIRECRAWL_API_KEY}/sse
- display_name: Playwright
slug: Playwright
description: Browser automation and web testing framework
config:
type: stdio
command: npx
args:
- '@playwright/mcp@latest'
- display_name: Supabase
slug: Supabase
description: Backend-as-a-service with database and authentication
config:
command: npx
args:
Expand All @@ -29,18 +33,21 @@ mcps:
- ${SUPABASE_ACCESS_TOKEN}
- display_name: Context7
slug: Context7
description: AI-powered context understanding and processing
config:
type: http
url: https://mcp.context7.com/mcp/
headers:
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
- display_name: Exa Search
slug: ExaSearch
description: Advanced search and information retrieval
config:
type: http
url: https://mcp.exa.ai/mcp?exa_api_key=${EXA_API_KEY}
- display_name: GitRules
slug: GitRules
description: Git workflow automation and rule enforcement
config:
type: http
url: https://gitrules.com/mcp
Loading