Skip to content

Commit af60792

Browse files
Merge pull request #2 from coderamp-labs/feat/new_ui
Feat/new UI
2 parents f1574e7 + c6cf6b7 commit af60792

21 files changed

+2603
-142
lines changed

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ __pycache__/
55

66
# C extensions
77
*.so
8-
TASK.md
9-
TASK2.md
108
# Distribution / packaging
119
.Python
1210
build/
@@ -206,3 +204,11 @@ cython_debug/
206204
marimo/_static/
207205
marimo/_lsp/
208206
__marimo__/
207+
208+
.playwright-mcp
209+
.mcp.json
210+
211+
TASK.md
212+
TASK2.md
213+
TASK_IN_PROGRESS.md
214+
TASK_DONE.md

CLAUDE.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ CLAUDE.md
2828
- Store secrets in a .env file (never commit it).
2929
- Keep dependencies minimal and updated.
3030
- Never try to run the dev server it's handled by the user
31+
- When updating code, don't reference what is changing
32+
- Avoid keywords like LEGACY, CHANGED, REMOVED
33+
- Focus on comments that document just the functionality of the code
34+
3135

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

41-
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.
45+
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.
46+

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.13-slim
22

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

66
WORKDIR /app
77

app/actions/mcps.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
mcps:
22
- display_name: Github
33
slug: GitHub
4+
description: GitHub API integration for repositories, issues, and pull requests
45
config:
56
type: http
67
url: https://api.githubcopilot.com/mcp
78
headers:
89
Authorization: Bearer ${GITHUB_TOKEN}
910
- display_name: Firecrawl
1011
slug: Firecrawl
12+
description: Web scraping and content extraction from websites
1113
config:
1214
type: sse
1315
url: https://mcp.firecrawl.dev/${FIRECRAWL_API_KEY}/sse
1416
- display_name: Playwright
1517
slug: Playwright
18+
description: Browser automation and web testing framework
1619
config:
1720
type: stdio
1821
command: npx
1922
args:
2023
- '@playwright/mcp@latest'
2124
- display_name: Supabase
2225
slug: Supabase
26+
description: Backend-as-a-service with database and authentication
2327
config:
2428
command: npx
2529
args:
@@ -29,18 +33,21 @@ mcps:
2933
- ${SUPABASE_ACCESS_TOKEN}
3034
- display_name: Context7
3135
slug: Context7
36+
description: AI-powered context understanding and processing
3237
config:
3338
type: http
3439
url: https://mcp.context7.com/mcp/
3540
headers:
3641
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
3742
- display_name: Exa Search
3843
slug: ExaSearch
44+
description: Advanced search and information retrieval
3945
config:
4046
type: http
4147
url: https://mcp.exa.ai/mcp?exa_api_key=${EXA_API_KEY}
4248
- display_name: GitRules
4349
slug: GitRules
50+
description: Git workflow automation and rule enforcement
4451
config:
4552
type: http
4653
url: https://gitrules.com/mcp

0 commit comments

Comments
 (0)