{"id":50927414,"url":"https://github.com/naamanu/bragbot","last_synced_at":"2026-06-17T00:04:22.986Z","repository":{"id":355069069,"uuid":"1133546219","full_name":"naamanu/bragbot","owner":"naamanu","description":"Generate brag documents from your git history","archived":false,"fork":false,"pushed_at":"2026-01-13T18:43:33.000Z","size":148,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-01T19:07:07.788Z","etag":null,"topics":["brag-document","cli","devtools"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/naamanu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":null,"dco":null,"cla":null}},"created_at":"2026-01-13T13:51:50.000Z","updated_at":"2026-04-10T11:40:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/naamanu/bragbot","commit_stats":null,"previous_names":["naamanu/bragbot"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/naamanu/bragbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naamanu%2Fbragbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naamanu%2Fbragbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naamanu%2Fbragbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naamanu%2Fbragbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naamanu","download_url":"https://codeload.github.com/naamanu/bragbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naamanu%2Fbragbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34428199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["brag-document","cli","devtools"],"created_at":"2026-06-17T00:04:20.471Z","updated_at":"2026-06-17T00:04:22.980Z","avatar_url":"https://github.com/naamanu.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bragbot\n\nGenerate brag documents from your git history. Inspired by [Julia Evans' blog post on brag documents](https://jvns.ca/blog/brag-documents/).\n\n![Demo](demo.gif)\n\n## Installation\n\n```bash\nnpm install -g @naamanu/bragbot\n```\n\n## Usage\n\n### One-time Generation\n\nGenerate a brag document for any git repository:\n\n```bash\n# Current directory, last month\nbragbot\n\n# Specific repo and date range\nbragbot /path/to/repo --since \"2025-01-01\" --until \"2025-06-30\"\n\n# Output to specific file\nbragbot -o my-brag.md\n\n# Output to stdout (for piping)\nbragbot --stdout | less\n\n# Filter by author\nbragbot --author \"jane@example.com\"\n```\n\n#### Options\n\n| Option | Description |\n|--------|-------------|\n| `-s, --since \u003cdate\u003e` | Start date (default: \"1 month ago\") |\n| `-u, --until \u003cdate\u003e` | End date (default: \"today\") |\n| `-a, --author \u003cname\u003e` | Filter by author name/email |\n| `-o, --output \u003cfile\u003e` | Output file (default: `brag-\u003cstart\u003e-to-\u003cend\u003e.md`) |\n| `--stdout` | Output to stdout instead of file |\n\n### Background Daemon\n\nRun bragbot as a background service to automatically collect daily brag documents.\n\n#### Add Repositories to Watch\n\n```bash\n# Add a repo with auto-detected settings\nbragbot daemon add /path/to/repo\n\n# Add with custom name and author filter\nbragbot daemon add /path/to/repo --name \"My Project\" --author \"me@example.com\"\n\n# Add with custom output directory\nbragbot daemon add /path/to/repo --output-dir ~/brags\n```\n\n#### Manage Watched Repos\n\n```bash\n# List all watched repositories\nbragbot daemon list\n\n# Remove a repository\nbragbot daemon remove /path/to/repo\n```\n\n#### Configure Schedule\n\n```bash\n# Run daily at 9 AM (default)\nbragbot daemon schedule daily\n\n# Run weekly (Mondays at 9 AM)\nbragbot daemon schedule weekly\n\n# Run at specific hour (0-23)\nbragbot daemon schedule 17  # 5 PM\n```\n\n#### Start/Stop Daemon\n\n```bash\n# Start background daemon\nbragbot daemon start\n\n# Check status\nbragbot daemon status\n\n# Stop daemon\nbragbot daemon stop\n\n# Run collection once (without daemon)\nbragbot daemon run\n```\n\n#### Configuration\n\nAll daemon configuration is stored in `~/.bragbot/`:\n\n| File | Description |\n|------|-------------|\n| `config.json` | Watched repos and schedule |\n| `daemon.pid` | Process ID of running daemon |\n| `daemon.log` | Daemon logs |\n| `brags/` | Default output directory for collected brags |\n\n## Output Format\n\nBragbot generates a structured markdown document with:\n\n- **Summary** - Total commits, branches, and identified themes (features, bug fixes, etc.)\n- **Work by Branch/Feature** - Grouped commits with full commit descriptions\n- **Detailed Commit Log** - Table of all commits with dates, hashes, and messages\n\nAll data is read from local git history - no external requests are made.\n\n## Development\n\n```bash\n# Install dependencies\nbun install\n\n# Run in development\nbun run dev\n\n# Build for production\nbun run build\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaamanu%2Fbragbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaamanu%2Fbragbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaamanu%2Fbragbot/lists"}