{"id":31424117,"url":"https://github.com/marcusleg/briefing-officer","last_synced_at":"2026-05-20T16:39:06.953Z","repository":{"id":301126992,"uuid":"845401047","full_name":"marcusleg/briefing-officer","owner":"marcusleg","description":"News reader with AI features","archived":false,"fork":false,"pushed_at":"2025-09-29T13:53:22.000Z","size":4301,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-29T15:32:50.314Z","etag":null,"topics":["ai","ai-assistant","atom-feed","news","rss"],"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/marcusleg.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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":"2024-08-21T07:15:50.000Z","updated_at":"2025-09-29T13:53:19.000Z","dependencies_parsed_at":"2025-08-20T01:05:17.211Z","dependency_job_id":"d919bbb1-f56d-4849-b139-0e96daecf6fa","html_url":"https://github.com/marcusleg/briefing-officer","commit_stats":null,"previous_names":["marcusleg/briefing-officer"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/marcusleg/briefing-officer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusleg%2Fbriefing-officer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusleg%2Fbriefing-officer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusleg%2Fbriefing-officer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusleg%2Fbriefing-officer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcusleg","download_url":"https://codeload.github.com/marcusleg/briefing-officer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusleg%2Fbriefing-officer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277627128,"owners_count":25849793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-30T02:00:09.208Z","response_time":75,"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":["ai","ai-assistant","atom-feed","news","rss"],"created_at":"2025-09-30T03:42:45.564Z","updated_at":"2026-05-20T16:39:06.939Z","avatar_url":"https://github.com/marcusleg.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Briefing Officer\n\nAI summaries for your favorite news feeds.\n\n![Screenshot of Briefing Officer](./screenshot.png)\n\n## Features\n\n- News reader with RSS and Atom support.\n- Three types of AI summaries:\n  - Short descriptions that summarize the article instead of just teasing it.\n  - A bullet-point list of the key points and takeaways.\n  - Executive summary, a detailed summary containing all the original\n    information but very condensed.\n- Save articles for later using the \"Read Later\" and \"Star\" feature.\n- Support for multiple AI providers (OpenAI, Azure OpenAI, Anthropic, and any\n  OpenAI-compatible API).\n- Multi-user support.\n- Dark mode.\n- Mobile friendly design.\n\n## Getting Started\n\n```bash\ndocker run -it --rm \\\n  -e DATABASE_URL=file:/data/database.sqlite \\\n  -e AZURE_OPENAI_RESOURCE_NAME=oai-example-dev-001 \\\n  -e AZURE_OPENAI_API_KEY=lorem-ipsum \\\n  -e BETTER_AUTH_SECRET=something-random \\\n  -e BETTER_AUTH_URL=http://localhost:3000 \\\n  -e CRON_API_TOKEN=something-else-random \\\n  -p 3000:3000 \\\n  ghcr.io/marcusleg/briefing-officer\n```\n\n## Configuration\n\n### Application\n\n| Environment Variable | Description                                      |\n| -------------------- | ------------------------------------------------ |\n| `DATABASE_URL`       | URL to the SQLite database.                      |\n| `CRON_API_TOKEN`     | Token required to call the `/api/cron` endpoint. |\n\n### AI Providers\n\nOne provider must be configured.\n\n| Environment Variable         | Description                                                                                      |\n| ---------------------------- | ------------------------------------------------------------------------------------------------ |\n| `AZURE_OPENAI_API_KEY`       | Azure OpenAI API key.                                                                            |\n| `AZURE_OPENAI_MODEL`         | Azure OpenAI model name.                                                                         |\n| `AZURE_OPENAI_RESOURCE_NAME` | Azure OpenAI resource name.                                                                      |\n| `ANTHROPIC_API_KEY`          | Anthropic API key.                                                                               |\n| `ANTHROPIC_MODEL`            | Anthropic model name.                                                                            |\n| `OPENAI_BASE_URL`            | Optional base URL for OpenAI-compatible API. Defaults to `https://api.openai.com/v1` if not set. |\n| `OPENAI_API_KEY`             | API key for OpenAI or OpenAI-compatible provider.                                                |\n| `OPENAI_MODEL`               | Model name for OpenAI or OpenAI-compatible provider.                                             |\n\n### Authentication\n\n| Environment Variable                           | Description                                  | Default          |\n| ---------------------------------------------- | -------------------------------------------- | ---------------- |\n| `AUTH_SECRET`                                  | Secret value used for encryption and hashing |                  |\n| `AUTH_SELF_REGISTRATION_ENABLED`               | Allow anyone to create a new account         | `false`          |\n| `BASE_URL`                                     | Base URL of Briefing Officer.                |                  |\n| `NEXT_PUBLIC_AUTH_GENERIC_OAUTH_ENABLE`        | Enable generic OAuth provider                | `false`          |\n| `NEXT_PUBLIC_AUTH_GENERIC_OAUTH_PROVIDER_NAME` | OAuth provider name                          | `Single Sign-On` |\n| `AUTH_GENERIC_OAUTH_CLIENT_ID`                 | OAuth client ID                              |                  |\n| `AUTH_GENERIC_OAUTH_CLIENT_SECRET`             | OAuth client secret                          |                  |\n| `AUTH_GENERIC_OAUTH_DISCOVERY_URL`             | OAuth discovery URL                          |                  |\n| `AUTH_GENERIC_OAUTH_PKCE_ENABLED`              | Enable PKCE for OAuth flow                   | `false`          |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcusleg%2Fbriefing-officer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcusleg%2Fbriefing-officer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcusleg%2Fbriefing-officer/lists"}