{"id":26405742,"url":"https://github.com/dahlia/yoyak","last_synced_at":"2025-10-10T14:49:03.202Z","repository":{"id":275906644,"uuid":"927570358","full_name":"dahlia/yoyak","owner":"dahlia","description":"An LLM-powered CLI tool for summarizing web pages","archived":false,"fork":false,"pushed_at":"2025-06-05T07:35:54.000Z","size":175,"stargazers_count":84,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-02T10:56:53.350Z","etag":null,"topics":["cli","llm","summary","translation"],"latest_commit_sha":null,"homepage":"https://jsr.io/@hongminhee/yoyak","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dahlia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.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}},"created_at":"2025-02-05T07:11:46.000Z","updated_at":"2025-08-05T14:16:48.000Z","dependencies_parsed_at":"2025-02-05T08:23:24.350Z","dependency_job_id":"8a8f85be-646a-4a1b-ab62-25cbb9ef00d1","html_url":"https://github.com/dahlia/yoyak","commit_stats":null,"previous_names":["dahlia/yoyak"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/dahlia/yoyak","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dahlia%2Fyoyak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dahlia%2Fyoyak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dahlia%2Fyoyak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dahlia%2Fyoyak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dahlia","download_url":"https://codeload.github.com/dahlia/yoyak/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dahlia%2Fyoyak/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004180,"owners_count":26083689,"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-10-10T02:00:06.843Z","response_time":62,"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":["cli","llm","summary","translation"],"created_at":"2025-03-17T17:01:45.597Z","updated_at":"2025-10-10T14:49:03.194Z","avatar_url":"https://github.com/dahlia.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"Yoyak: An LLM-powered CLI tool for summarizing web pages\n========================================================\n\n[![Demo session][Demo session thumbnail]][Demo session]\n\nThis is a small CLI tool that uses LLM to summarize and translate web pages.\n\n[Demo session thumbnail]:  https://asciinema.org/a/706701.svg\n[Demo session]: https://asciinema.org/a/706701\n\n\nInstallation\n------------\n\nWe distribute the official executables for Linux, macOS, and Windows.  You can\ndownload them from the [releases page].\n\nOr if you have [Deno] installed on your system, you can install this program by\nrunning the following command:\n\n~~~~ bash\ndeno install -gENRSW jsr:@hongminhee/yoyak/cli\n~~~~\n\n[releases page]: https://github.com/dahlia/yoyak/releases\n[Deno]: https://deno.com/\n\n\nUsage\n-----\n\nAt very first, you need to set the model you want to use. You can do this by\nrunning the following command (see also [supported models](#supported-models)\nbelow):\n\n~~~~ bash\nyoyak set-model gemini-2.0-flash-exp\n~~~~\n\nIt asks for the API key via the standard input, and stores it in configuration\nfile.\n\nThen you can use the `yoyak summary` command to summarize a web page:\n\n~~~~ bash\nyoyak summary https://github.com/dahlia/yoyak\n~~~~\n\nIt prints the summary of the web page to the standard output.\n\nIf you want to translate the summary to another language, you can use\nthe `-l`/`--language` option (which takes [ISO 639-1] language code):\n\n~~~~ bash\nyoyak summary -l ko https://github.com/dahlia/yoyak\n~~~~\n\nIt translates the summary to Korean.\n\n\u003e [!TIP]\n\u003e You can also give a local file path or `-` as an argument.  If `-` is given,\n\u003e the command reads the input from the standard input.\n\n[ISO 639-1]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes\n\n\nShell completion\n----------------\n\nYoyak provides shell completion scripts for bash, fish, and zsh.\n\n### Bash\n\nTo enable bash completion, add the following line to your *~/.bashrc* or\n*~/.bash_profile*:\n\n~~~~ bash\nsource \u003c(yoyak completions bash)\n~~~~\n\n### Fish\n\nTo enable fish completion, add the following line to your\n*~/.config/fish/config.fish*:\n\n~~~~ fish\nsource (yoyak completions fish | psub)\n~~~~\n\n### Zsh\n\nTo enable zsh completion, add the following line to your *~/.zshrc*:\n\n~~~~ zsh\nsource \u003c(yoyak completions zsh)\n~~~~\n\nOr run the following command to use zsh fpath completions:[^1]\n\n~~~~ zsh\nyoyak completions zsh \u003e /usr/local/share/zsh/site-functions/_yoyak\n~~~~\n\n[^1]: The *site-functions* path may vary depending on your system.\n\n\nSupported models\n----------------\n\n -  `chatgpt-4o-latest`\n -  `claude-3-5-haiku-latest`\n -  `claude-3-5-sonnet-latest`\n -  `claude-3-7-sonnet-latest`\n -  `claude-3-opus-latest`\n -  `deepseek-chat`\n -  `deepseek-reasoner`\n -  `gemini-1.5-flash-8b`\n -  `gemini-1.5-flash`\n -  `gemini-1.5-pro`\n -  `gemini-2.0-flash-exp`\n -  `gemini-2.0-flash-lite-preview-02-05`\n -  `gemini-2.0-flash-lite`\n -  `gemini-2.0-flash-thinking-exp-01-21`\n -  `gemini-2.0-flash`\n -  `gemini-2.0-pro-exp-02-05`\n -  `gemini-2.5-flash-preview-04-17`\n -  `gemini-2.5-pro-preview-03-25`\n -  `gemma3`\n -  `gpt-4.1`\n -  `gpt-4.5-preview`\n -  `gpt-4o-mini`\n -  `gpt-4o`\n -  `o1-mini`\n -  `o1-preview`\n -  `o1`\n -  `o3-mini`\n -  `o3`\n -  `o4-mini`\n\n\nEtymology\n---------\n\nYoyak ([要約]) is a Sino-Korean word that means *summary*.\n\n[要約]: https://en.wiktionary.org/wiki/%EC%9A%94%EC%95%BD#Etymology_1\n\n\u003c!-- cSpell: ignore gENRSW psub fpath Sino-Korean --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdahlia%2Fyoyak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdahlia%2Fyoyak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdahlia%2Fyoyak/lists"}