{"id":24811013,"url":"https://github.com/Lemniscate-world/Dissect","last_synced_at":"2025-10-13T12:31:28.512Z","repository":{"id":274452214,"uuid":"920408208","full_name":"Lemniscate-world/Dissect","owner":"Lemniscate-world","description":"Automatically detect, analyze, and visualize algorithms in codebases","archived":false,"fork":false,"pushed_at":"2025-02-03T10:13:10.000Z","size":22318,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T12:50:21.857Z","etag":null,"topics":["algorithm-analysis","algorithms","algorithms-and-data-structures","api","codeflow","complexity-algorithm","complexity-analysis","debugger","debugging","debugging-tool","educational-project","flowchart-diagrams","flowgraph","hacking-tool","hacking-tools","javascript","python","static","static-code-analysis"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lemniscate-world.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-01-22T05:06:02.000Z","updated_at":"2025-02-03T10:13:13.000Z","dependencies_parsed_at":"2025-03-23T05:20:28.028Z","dependency_job_id":null,"html_url":"https://github.com/Lemniscate-world/Dissect","commit_stats":null,"previous_names":["lemniscate-sha-256/dissect","lemniscate-world/dissect"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Lemniscate-world/Dissect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemniscate-world%2FDissect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemniscate-world%2FDissect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemniscate-world%2FDissect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemniscate-world%2FDissect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lemniscate-world","download_url":"https://codeload.github.com/Lemniscate-world/Dissect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemniscate-world%2FDissect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015056,"owners_count":26085643,"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-13T02:00:06.723Z","response_time":61,"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":["algorithm-analysis","algorithms","algorithms-and-data-structures","api","codeflow","complexity-algorithm","complexity-analysis","debugger","debugging","debugging-tool","educational-project","flowchart-diagrams","flowgraph","hacking-tool","hacking-tools","javascript","python","static","static-code-analysis"],"created_at":"2025-01-30T12:18:59.919Z","updated_at":"2025-10-13T12:31:28.506Z","avatar_url":"https://github.com/Lemniscate-world.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dissect - Algorithm Detective 🔍\n\n[![CI/CD](https://github.com/Lemniscate-SHA-256/dissect/actions/workflows/ci.yml/badge.svg)](https://github.com/Lemniscate-SHA-256/dissect/actions)\n[![Coverage](https://codecov.io/gh/Lemniscate-SHA-256/dissect/branch/main/graph/badge.svg)](https://codecov.io/gh/Lemniscate-SHA-256/dissect)\n\n**Automatically detect, analyze, and visualize algorithms in codebases**\n\n---\n\n## Overview\nDissect scans your code to:\n- 🔎 **Identify algorithms** (sorting, graph traversal, etc.)\n- 📊 **Analyze complexity** (time/space Big-O notation)\n- 🎨 **Generate visualizations** (Netron-like flowcharts)\n- **Category-Driven Visualization**  \n  Algorithms are color-coded by type (sorting=red, graph=blue)\n\n![flowchart](https://github.com/user-attachments/assets/310a4051-c8f9-4d20-bbbc-0916de4faa8a)\n\n\n## Features\n- **Multi-Language Support**: Python, JavaScript, Java (more coming)\n- **Algorithm Taxonomy**: Categorizes implementations into hierarchies\n- **Educational Annotations**: Explains algorithm logic in context\n- **CI/CD Ready**: Integrates with GitHub Actions\n\n## Installation\n```bash\npip install dissect\n```\n\n## Usage\n**Basic Detection**:\n```bash\ndissect analyze --file ./src/sorting.py\n\n# Output:\n# [✓] quicksort (sorting) - Confidence: 92%\n# [✓] bfs (graph) - Confidence: 85%\n```\n\n**Visualization**:\n```bash\ndissect visualize --file ./src/graph.py --output architecture\n# Saves architecture.png\n```\n\n## Contributing\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feat/amazing-feature`)\n3. Commit changes (`git commit -m 'feat: add amazing feature'`)\n4. Push to branch (`git push origin feat/amazing-feature`)\n5. Open a Pull Request\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for details.\nhttps://discord.gg/ZJz3tT5r\n\n## License\nDistributed under the MIT License. See `LICENSE` for more information.\n\n---\n**Dissect** - Because great code deserves to be understood. 🧠\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLemniscate-world%2FDissect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLemniscate-world%2FDissect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLemniscate-world%2FDissect/lists"}