{"id":47753499,"url":"https://github.com/bessouat40/dumbo-rs","last_synced_at":"2026-04-09T09:01:27.209Z","repository":{"id":348689464,"uuid":"1199381281","full_name":"Bessouat40/dumbo-rs","owner":"Bessouat40","description":"A simple tool to ingest code files into a single text file for LLM context.","archived":false,"fork":false,"pushed_at":"2026-04-02T16:05:36.000Z","size":1337,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T04:02:36.710Z","etag":null,"topics":["cli","cli-app","context-engineering","context-management","llm","llm-tools","llms","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/Bessouat40.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2026-04-02T09:43:48.000Z","updated_at":"2026-04-03T11:54:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Bessouat40/dumbo-rs","commit_stats":null,"previous_names":["bessouat40/dumbo-rs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Bessouat40/dumbo-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bessouat40%2Fdumbo-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bessouat40%2Fdumbo-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bessouat40%2Fdumbo-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bessouat40%2Fdumbo-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bessouat40","download_url":"https://codeload.github.com/Bessouat40/dumbo-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bessouat40%2Fdumbo-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31424931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T02:22:46.605Z","status":"ssl_error","status_checked_at":"2026-04-05T02:22:33.263Z","response_time":75,"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":["cli","cli-app","context-engineering","context-management","llm","llm-tools","llms","rust"],"created_at":"2026-04-03T03:56:10.214Z","updated_at":"2026-04-05T05:00:41.217Z","avatar_url":"https://github.com/Bessouat40.png","language":"Rust","readme":"# Dumbo-RS\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/Bessouat40/dumbo-rs/master/media/dumbo-rs.png\" alt=\"Dumbo-RS Logo\" width=\"200\"\u003e\n\u003c/p\u003e\n\nDumbo-RS is an ultra-fast CLI tool written in Rust that condenses an entire codebase into a single, well-structured Markdown file — the perfect companion for providing comprehensive context to LLMs (ChatGPT, Claude, etc.).\n\n## Installation\n\n### With Cargo\n\n```bash\ncargo install dumbo-rs\n```\n\n### Without Cargo (pre-built binaries)\n\nDownload the latest binary for your platform from the [Releases page](https://github.com/Bessouat40/dumbo-rs/releases/latest).\n\n**macOS / Linux:**\n\n```bash\n# macOS Apple Silicon\ncurl -L https://github.com/Bessouat40/dumbo-rs/releases/latest/download/dumbo-macos-arm64 -o dumbo\n\n# macOS Intel\ncurl -L https://github.com/Bessouat40/dumbo-rs/releases/latest/download/dumbo-macos-x86_64 -o dumbo\n\n# Linux x86_64\ncurl -L https://github.com/Bessouat40/dumbo-rs/releases/latest/download/dumbo-linux-x86_64 -o dumbo\n\nchmod +x dumbo\nsudo mv dumbo /usr/local/bin/\n```\n\n**Windows:**\n\nDownload `dumbo-windows-x86_64.exe` from the [Releases page](https://github.com/Bessouat40/dumbo-rs/releases/latest), rename it to `dumbo.exe` and add it to your `PATH`.\n\nThe installed binary is named `dumbo`.\n\n## Commands\n\n### `dumbo init`\n\nDetects languages in the current directory and creates a `Dumbo.toml` + `.dumboignore`.\n\n```bash\ndumbo init           # single project\ndumbo init -r        # monorepo — scans all sub-folders\n```\n\n### `dumbo update`\n\nAdds new sub-projects to an existing `Dumbo.toml` (e.g. after adding a new service to a monorepo).\n\n```bash\ndumbo update\n```\n\n### `dumbo list`\n\nLists all sections in the current `Dumbo.toml`.\n\n```bash\ndumbo list\n```\n\n### `dumbo run`\n\nGenerates a Markdown context file using the config from `Dumbo.toml`.\n\n```bash\ndumbo run                        # → dumbo_output.md  (root project)\ndumbo run frontend               # → dumbo_frontend.md\ndumbo run frontend backend       # → dumbo_frontend_backend.md\ndumbo run frontend -c            # → also copies to clipboard\n```\n\n### `dumbo diff`\n\nGenerates a Markdown file with three sections: a stat summary, the full git diff, and the current content of every changed file (with line numbers). Useful for debugging a regression — paste the output into an LLM and it has exactly what it needs without flooding the context window.\n\n```bash\ndumbo diff abc1234               # → dumbo_diff_abc1234.md\ndumbo diff main~3 backend        # → diff of backend since 3 commits ago\ndumbo diff v1.0.0 -c             # → diff since a tag, copied to clipboard\ndumbo diff --staged|-s           # → diff of staged changes\n```\n\n## Config files\n\n**`Dumbo.toml`** — one file at the project root, one section per sub-project:\n\n```toml\n[root]\nlang = \"rs\"\n\n[frontend]\nlang = \"ts\"\n\n[backend]\nlang = \"py\"\n```\n\n**`.dumboignore`** — one per directory, lists files/folders to exclude:\n\n```\n# .dumboignore\nsecrets.toml\nfixtures/\n```\n\n## Options\n\n| Option | Description |\n|---|---|\n| `-c`, `--clipboard` | Copy output to clipboard |\n| `-h`, `--help` | Print help |\n| `-v`, `--version` | Print version |\n\n## Supported languages\n\n`rs`, `py`, `js`, `ts`, `go`, `java`, `c`, `cpp`\n\nThe following are always included regardless of language: `Dockerfile`, `docker-compose.yml`, `Makefile`, `.yaml`, `.yml`, `.toml`, `.md`.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbessouat40%2Fdumbo-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbessouat40%2Fdumbo-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbessouat40%2Fdumbo-rs/lists"}