[PR #24269] [CLOSED] chore: gitignore .claude/worktrees/ scratch dir #131236

Closed
opened 2026-05-21 16:26:54 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/24269
Author: @Schravenralph
Created: 4/30/2026
Status: Closed

Base: mainHead: chore/gitignore-claude-worktrees


📝 Commits (10+)

  • 183b35e chore: set up RM fork with upstream remote and gitignore
  • 5558911 feat: add RM Docker Compose with PostgreSQL, Ollama, and Clerk OIDC config
  • 992f641 feat: add Ruimtemeesters brand colors to Tailwind config
  • 2902ebf feat: apply Ruimtemeesters brand theme CSS overrides
  • 9e145aa feat: replace logos, favicon, and app name with Ruimtemeesters branding
  • ec30c8f feat: customize welcome page with RM branding and Dutch prompt suggestions
  • bb9f5f6 feat: add Clerk shared cookie SSO middleware for seamless auth
  • b65847e feat: auto-redirect to Clerk OIDC when login form is disabled
  • 6c3600a fix: move CSS import to end of file and prevent OIDC redirect loop
  • c38504d Merge Phase A1+A2: Fork, brand, and Clerk SSO

📊 Changes

176 files changed (+16985 additions, -151 deletions)

View changed files

.claude/skills/bopa/SKILL.md (+84 -0)
.env.rm.example (+108 -0)
.githooks/no-public-bind-check.sh (+81 -0)
.githooks/pre-commit (+13 -0)
📝 .gitignore (+6 -0)
📝 backend/open_webui/config.py (+12 -15)
📝 backend/open_webui/main.py (+54 -29)
backend/open_webui/middleware/__init__.py (+0 -0)
backend/open_webui/middleware/clerk_sso.py (+83 -0)
📝 backend/open_webui/routers/configs.py (+11 -4)
backend/open_webui/test/util/test_mcp_client.py (+42 -0)
backend/open_webui/utils/clerk_sso.py (+199 -0)
backend/open_webui/utils/clerk_trust_fixes.py (+76 -0)
📝 backend/open_webui/utils/mcp/client.py (+20 -13)
📝 backend/open_webui/utils/oauth.py (+4 -3)
backend/open_webui/utils/token_forwarding.py (+65 -0)
cypress/e2e/brand-pass-2.cy.ts (+117 -0)
docker-compose.rm.yaml (+163 -0)
📝 docs/SECURITY.md (+1 -2)
docs/superpowers/plans/2026-04-03-full-stack-review-debug-test.md (+1374 -0)

...and 80 more files

📄 Description

What

Adds .claude/worktrees/ to .gitignore. This is the per-developer scratch directory Claude Code agents create when running in worktree-isolation mode — it's never meant to be committed.

Why

Without this, every agent invocation that uses an isolated worktree pollutes git status with a .claude/worktrees/ untracked entry, and a careless git add . would commit a nested checkout of this repo into itself.

Validation

  • git status clean after the add
  • one-line change to .gitignore, no functional impact

Forge cycle

  • Cycle: 0 (stabilization) | Clock: 0h elapsed
  • Pre-step before starting feature cycles, to land a clean main

🤖 Generated with Claude Code


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/24269 **Author:** [@Schravenralph](https://github.com/Schravenralph) **Created:** 4/30/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `chore/gitignore-claude-worktrees` --- ### 📝 Commits (10+) - [`183b35e`](https://github.com/open-webui/open-webui/commit/183b35ef3f18a692c8ab26924487c9f17ff0c82d) chore: set up RM fork with upstream remote and gitignore - [`5558911`](https://github.com/open-webui/open-webui/commit/5558911bf62a28f917c93d36be17173962b90818) feat: add RM Docker Compose with PostgreSQL, Ollama, and Clerk OIDC config - [`992f641`](https://github.com/open-webui/open-webui/commit/992f641e234b1920bbaf6731e1d8907dc98d08a5) feat: add Ruimtemeesters brand colors to Tailwind config - [`2902ebf`](https://github.com/open-webui/open-webui/commit/2902ebf4a33f338c83584969854bfcfad50a513e) feat: apply Ruimtemeesters brand theme CSS overrides - [`9e145aa`](https://github.com/open-webui/open-webui/commit/9e145aa5e37d26908eb1adb33cd3edbb2f7282f9) feat: replace logos, favicon, and app name with Ruimtemeesters branding - [`ec30c8f`](https://github.com/open-webui/open-webui/commit/ec30c8f23a46fc8d56cc4377127ff5f0a62f346a) feat: customize welcome page with RM branding and Dutch prompt suggestions - [`bb9f5f6`](https://github.com/open-webui/open-webui/commit/bb9f5f62c11f3656a9811c0bae70977c78821af8) feat: add Clerk shared cookie SSO middleware for seamless auth - [`b65847e`](https://github.com/open-webui/open-webui/commit/b65847e790fb2d3479ce55cd4ad46c2bde828c19) feat: auto-redirect to Clerk OIDC when login form is disabled - [`6c3600a`](https://github.com/open-webui/open-webui/commit/6c3600a905454725b991213643b1b937d7b6c639) fix: move CSS import to end of file and prevent OIDC redirect loop - [`c38504d`](https://github.com/open-webui/open-webui/commit/c38504d7478139244e7883c507e4cba237333496) Merge Phase A1+A2: Fork, brand, and Clerk SSO ### 📊 Changes **176 files changed** (+16985 additions, -151 deletions) <details> <summary>View changed files</summary> ➕ `.claude/skills/bopa/SKILL.md` (+84 -0) ➕ `.env.rm.example` (+108 -0) ➕ `.githooks/no-public-bind-check.sh` (+81 -0) ➕ `.githooks/pre-commit` (+13 -0) 📝 `.gitignore` (+6 -0) 📝 `backend/open_webui/config.py` (+12 -15) 📝 `backend/open_webui/main.py` (+54 -29) ➕ `backend/open_webui/middleware/__init__.py` (+0 -0) ➕ `backend/open_webui/middleware/clerk_sso.py` (+83 -0) 📝 `backend/open_webui/routers/configs.py` (+11 -4) ➕ `backend/open_webui/test/util/test_mcp_client.py` (+42 -0) ➕ `backend/open_webui/utils/clerk_sso.py` (+199 -0) ➕ `backend/open_webui/utils/clerk_trust_fixes.py` (+76 -0) 📝 `backend/open_webui/utils/mcp/client.py` (+20 -13) 📝 `backend/open_webui/utils/oauth.py` (+4 -3) ➕ `backend/open_webui/utils/token_forwarding.py` (+65 -0) ➕ `cypress/e2e/brand-pass-2.cy.ts` (+117 -0) ➕ `docker-compose.rm.yaml` (+163 -0) 📝 `docs/SECURITY.md` (+1 -2) ➕ `docs/superpowers/plans/2026-04-03-full-stack-review-debug-test.md` (+1374 -0) _...and 80 more files_ </details> ### 📄 Description ## What Adds `.claude/worktrees/` to `.gitignore`. This is the per-developer scratch directory Claude Code agents create when running in worktree-isolation mode — it's never meant to be committed. ## Why Without this, every agent invocation that uses an isolated worktree pollutes `git status` with a `.claude/worktrees/` untracked entry, and a careless `git add .` would commit a nested checkout of this repo into itself. ## Validation - `git status` clean after the add - one-line change to `.gitignore`, no functional impact ## Forge cycle - Cycle: 0 (stabilization) | Clock: 0h elapsed - Pre-step before starting feature cycles, to land a clean main 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-21 16:26:54 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#131236