feat(agents): link AI symlinks across all subdirs; refactor proxy config#17
feat(agents): link AI symlinks across all subdirs; refactor proxy config#17jonathanhfmills wants to merge 1 commit into
Conversation
…ENTS.md - Convert CLAUDE.md/GEMINI.md to proper symlinks in root, .claude, .gemini - Add CLAUDE.md/GEMINI.md symlinks to .codex, .gemini, .qwen, git, proxy, tmux - Rewrite .codex/AGENTS.md as directory doc (Karpathy guidelines moved to AGENTS.md) - Add domain language section to root AGENTS.md - proxy: disable auto_https, switch to http, use external network Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 4756ebf27d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| proxy: | ||
| name: proxy | ||
| driver: bridge | ||
| external: true |
There was a problem hiding this comment.
Avoid requiring a pre-created proxy network
Marking this network as external makes docker compose up require an already-existing proxy network; Docker’s Compose docs for networks.external state Compose won’t create it and fails if it is missing. In this repo, make proxy just runs docker compose -f ... up -d with no prior docker network create, so a fresh environment will hit a Network not found error instead of starting Caddy.
Useful? React with 👍 / 👎.
Summary
Test plan
stow --simulatepasses for each stow packagels -la */CLAUDE.md */GEMINI.mdmake proxy🤖 Generated with Claude Code