{"id":18950833,"url":"https://github.com/whywaita/dotfiles","last_synced_at":"2026-04-07T15:01:29.708Z","repository":{"id":11481210,"uuid":"13951933","full_name":"whywaita/dotfiles","owner":"whywaita","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-06T09:59:42.000Z","size":943,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-06T10:28:42.051Z","etag":null,"topics":["dotfiles"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/whywaita.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},"funding":{"github":["whywaita"]}},"created_at":"2013-10-29T09:51:09.000Z","updated_at":"2026-04-06T09:52:32.000Z","dependencies_parsed_at":"2022-09-19T05:01:29.988Z","dependency_job_id":null,"html_url":"https://github.com/whywaita/dotfiles","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/whywaita/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whywaita","download_url":"https://codeload.github.com/whywaita/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31516839,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["dotfiles"],"created_at":"2024-11-08T13:24:49.219Z","updated_at":"2026-04-07T15:01:29.682Z","avatar_url":"https://github.com/whywaita.png","language":"Shell","funding_links":["https://github.com/sponsors/whywaita"],"categories":[],"sub_categories":[],"readme":"# whywaita/dotfiles\n\n[![lint and check](https://github.com/whywaita/dotfiles/actions/workflows/test.yaml/badge.svg)](https://github.com/whywaita/dotfiles/actions/workflows/test.yaml)\n[![setup](https://github.com/whywaita/dotfiles/actions/workflows/setup.yaml/badge.svg)](https://github.com/whywaita/dotfiles/actions/workflows/setup.yaml)\n\n## Usage\n\n### Full Setup\n\n```bash\ncd ${HOME}\ngit clone --recursive git@github.com:whywaita/dotfiles.git\nsh dotfiles/setup.sh\n```\n\n### Individual Setup\n\n`setup.sh` is a wrapper that runs the following scripts in order. You can run them individually as needed.\n\n| Script | Description |\n|--------|-------------|\n| `scripts/setup-symlinks.sh` | Create dotfile symlinks in `$HOME` |\n| `scripts/setup-claude.sh` | Setup Claude Code configuration |\n| `scripts/setup-codex.sh` | Setup Codex configuration |\n| `scripts/setup-nvim.sh` | Clone dein.vim (Neovim plugin manager) |\n| `scripts/setup-homebrew.sh` | Install Homebrew |\n| `scripts/setup-go-tools.sh` | Install Go tools (git-wt) |\n| `brewfile.sh` | Install Homebrew packages |\n\n```bash\n# Example: setup only symlinks and Claude Code\n./scripts/setup-symlinks.sh\n./scripts/setup-claude.sh\n```\n\n## Reusable Workflow\n\nYou can call the dotfiles setup from other repositories via GitHub Actions.\n\n### Basic Usage\n\n```yaml\njobs:\n  setup:\n    uses: whywaita/dotfiles/.github/workflows/setup.yaml@main\n```\n\nBy default, `symlinks`, `claude`, and `codex` are enabled.\n\n### Select Components via Inputs\n\n```yaml\njobs:\n  setup:\n    uses: whywaita/dotfiles/.github/workflows/setup.yaml@main\n    with:\n      symlinks: true\n      claude: true\n      codex: false\n      nvim: true\n      homebrew: false\n      go-tools: false\n      brewfile: false\n```\n\n### Available Inputs\n\n| Input | Type | Default | Description |\n|-------|------|---------|-------------|\n| `runs-on` | string | `ubuntu-latest` | Runner to use (e.g. `macos-latest`) |\n| `symlinks` | boolean | `true` | Create dotfile symlinks |\n| `claude` | boolean | `true` | Setup Claude Code |\n| `codex` | boolean | `true` | Setup Codex |\n| `nvim` | boolean | `false` | Setup Neovim (dein.vim) |\n| `homebrew` | boolean | `false` | Install Homebrew |\n| `go-tools` | boolean | `false` | Install Go tools |\n| `brewfile` | boolean | `false` | Install Homebrew packages |\n| `dotfiles-ref` | string | `main` | Ref of dotfiles repo to use |\n\n### Example: Setup Only Claude Code in CI\n\n```yaml\nname: CI\non: [push]\n\njobs:\n  build:\n    uses: whywaita/dotfiles/.github/workflows/setup.yaml@main\n    with:\n      symlinks: false\n      claude: true\n      codex: false\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhywaita%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fdotfiles/lists"}