{"id":50216082,"url":"https://github.com/fgrehm/dot-ai","last_synced_at":"2026-05-26T09:03:36.490Z","repository":{"id":341010718,"uuid":"1167645035","full_name":"fgrehm/dot-ai","owner":"fgrehm","description":"Configuration files for AI coding tools, managed with symlinks.","archived":false,"fork":false,"pushed_at":"2026-04-08T21:44:59.000Z","size":311,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-08T23:27:56.229Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fgrehm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-26T14:24:11.000Z","updated_at":"2026-04-08T21:45:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fgrehm/dot-ai","commit_stats":null,"previous_names":["fgrehm/dot-ai"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fgrehm/dot-ai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fgrehm%2Fdot-ai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fgrehm%2Fdot-ai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fgrehm%2Fdot-ai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fgrehm%2Fdot-ai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fgrehm","download_url":"https://codeload.github.com/fgrehm/dot-ai/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fgrehm%2Fdot-ai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33512334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-26T09:03:29.751Z","updated_at":"2026-05-26T09:03:36.482Z","avatar_url":"https://github.com/fgrehm.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dot-ai\n\nConfiguration files for AI coding tools, managed with symlinks.\n\n## What's in here\n\n```\ndot-ai/\n├── AGENTS.md              # Project instructions (CLAUDE.md symlinks here)\n├── claude/\n│   ├── CLAUDE.md          # Global instructions for Claude Code\n│   ├── settings.json      # Permissions, model, telemetry, etc.\n│   └── output-styles/     # Custom output styles (Navigator v1/v2)\n├── pi/\n│   └── AGENTS.md          # Global instructions for pi\n├── skills/                # Shared skills (symlinked individually into ~/.agents/skills/ etc.)\n├── vendor-skill.sh        # Vendor third-party skills from GitHub\n├── web/\n│   ├── claude-ai/\n│   │   ├── personal-instructions.md\n│   │   └── projects/      # Claude.ai project configs (per-project instructions)\n│   └── chatgpt/\n│       └── personal-instructions.md\n├── install.sh             # Symlink everything into place\n└── uninstall.sh           # Remove symlinks\n```\n\n## Supported tools\n\n| Tool | Config location | Status |\n|------|----------------|--------|\n| [Claude Code](https://claude.ai/claude-code) | `~/.claude/` | Active |\n| [pi-coding-agent](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | `~/.pi/agent/` | Active |\n| [Claude.ai](https://claude.ai) | `web/claude-ai/` (manual copy-paste) | Active |\n| [ChatGPT](https://chatgpt.com) | `web/chatgpt/` (manual copy-paste) | Active |\n\n## Setup\n\n```sh\ngit clone \u003crepo-url\u003e ~/projects/oss/dot-ai\ncd ~/projects/oss/dot-ai\n./install.sh\n```\n\nTo remove all symlinks:\n\n```sh\n./uninstall.sh\n```\n\n## How it works\n\n`install.sh` creates symlinks from this repo to where each tool expects its config. Existing files are backed up with a `.bak` suffix before being replaced.\n\nNo frameworks, no dependencies, just symlinks.\n\n### Symlink layout\n\n```\n~/.claude/CLAUDE.md       -\u003e claude/CLAUDE.md      # Global instructions for Claude Code\n~/.claude/settings.json   -\u003e claude/settings.json  # Permissions, model, telemetry\n~/.claude/output-styles/  -\u003e claude/output-styles/ # Custom output styles\n~/.claude/skills/\u003cname\u003e   -\u003e skills/\u003cname\u003e/        # Per-skill symlinks for Claude Code\n~/.pi/agent/AGENTS.md     -\u003e pi/AGENTS.md          # Global instructions for pi\n~/.pi/agent/skills/\u003cname\u003e -\u003e skills/\u003cname\u003e/        # Per-skill symlinks for pi\n```\n\n### Web chat configs (`web/`)\n\nFiles under `web/` are **not** symlinked — they're reference copies you paste into each web UI's settings manually. The `\u003c!-- Last synced --\u003e` comment at the top of each file helps track when you last updated the live version.\n\n## Vendoring third-party skills\n\nUse `vendor-skill.sh` to download a skill from any public or private GitHub repo:\n\n```sh\n./vendor-skill.sh https://github.com/apollographql/skills/tree/main/skills/rust-best-practices\n```\n\nThe script resolves the ref to a commit SHA, downloads just the skill directory, and writes a `README.md` with a link back to the exact source commit. You can also override the skill name:\n\n```sh\n./vendor-skill.sh https://github.com/user/repo/tree/main/path/to/skill my-custom-name\n```\n\nRequires `gh` (GitHub CLI) for authentication and API access.\n\n## Maintenance\n\n- `CHANGELOG.md` - What changed and when. Update after each round of edits.\n- `SCRATCHPAD.md` - Raw observations, misfires, half-formed ideas. Review before each round of changes; promote to tasks or delete when stale.\n\n## Ideas\n\n- Rename `claude-project-sync` skill to something tool-agnostic (e.g. `web-project-sync`)\n- Drift detection script to diff `claude/CLAUDE.md` vs `pi/AGENTS.md`\n- `install.sh --dry-run` flag to preview symlinks without creating them\n- More web chat providers as needed (Gemini, Copilot, etc.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffgrehm%2Fdot-ai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffgrehm%2Fdot-ai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffgrehm%2Fdot-ai/lists"}