{"id":34816263,"url":"https://github.com/vphantom/repomapper","last_synced_at":"2026-05-21T12:03:16.665Z","repository":{"id":279088442,"uuid":"937685739","full_name":"vphantom/repomapper","owner":"vphantom","description":"Code and documentation map generator","archived":false,"fork":false,"pushed_at":"2025-02-23T21:39:36.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-12T03:16:48.566Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/vphantom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-23T17:01:58.000Z","updated_at":"2025-02-23T21:39:39.000Z","dependencies_parsed_at":"2025-02-23T18:21:04.300Z","dependency_job_id":"46b1283e-2417-4ea2-b601-bc6af1e1f018","html_url":"https://github.com/vphantom/repomapper","commit_stats":null,"previous_names":["vphantom/repomapper"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vphantom/repomapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vphantom%2Frepomapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vphantom%2Frepomapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vphantom%2Frepomapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vphantom%2Frepomapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vphantom","download_url":"https://codeload.github.com/vphantom/repomapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vphantom%2Frepomapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33299817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"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":[],"created_at":"2025-12-25T13:40:04.427Z","updated_at":"2026-05-21T12:03:16.660Z","avatar_url":"https://github.com/vphantom.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Repo Mapper\n\n[![license](https://img.shields.io/github/license/vphantom/repomapper.svg?style=plastic)]() [![GitHub release](https://img.shields.io/github/release/vphantom/repomapper.svg?style=plastic)]()\n\nRepoMapper is a command-line tool that generates a comprehensive `MAP.txt` file for your codebase, providing a structured overview of your project's files and their contents. It analyzes both code and documentation files, extracting key information like:\n\n- Headers and structure from Markdown files\n- Functions, classes, and other symbols from code files\n- Special handling for languages with separate interface/implementation files\n\nThis file is mostly intended for use with LLM coding assistants as a concise map of all function, method and property signatures available throughout a project.\n\n## Installation\n\nRequirements:\n- Python 3.7 or later\n- Universal Ctags (`ctags`) must be installed on your system\n\n### Using pip from source\n\n```bash\ngit clone https://github.com/vphantom/repomapper.git\ncd repomapper\npip install -e .\n```\n\n### Standalone script from source\n\n```bash\ngit clone https://github.com/vphantom/repomapper.git\ncd repomapper\npython3 scripts/build_single.py\n```\n\n### Standalone script download\n\nYou may also wish to download our stand-alone `repomapper` script instead from the releases page: \u003chttps://github.com/vphantom/repomapper/releases\u003e\n\n## Usage\n\nBasic usage to generate a map of your current directory:\n\n```bash\nrepomapper\n```\n\nThis will create a `MAP.txt` file in your current directory.  Run `repomapper --help` for a list of available options.\n\nRepoMapper looks for its own `.mapignore` files as well as standard `.gitignore` files throughout your directory structure, so that you may omit files which are otherwise included in your Git repository.\n\nSpeaking of files to ignore, you probably want to add `MAP.txt` to your `.gitignore` file.\n\n## ACKNOWLEDGEMENTS\n\nThis project was created as an experiment with LLM-based code generation using \u003chttps://github.com/Aider-AI/aider\u003e with the Anthropic Claude Sonnet 3.5 model.  ~90% of the implementation was done by the model.\n\n## LICENSE AND COPYRIGHT\n\nCopyright (c) 2025 Stephane Lavergne \u003chttps://github.com/vphantom\u003e\n\nDistributed under the MIT (X11) License:\nhttp://www.opensource.org/licenses/mit-license.php\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvphantom%2Frepomapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvphantom%2Frepomapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvphantom%2Frepomapper/lists"}