{"id":50377635,"url":"https://github.com/winterweken/makit","last_synced_at":"2026-05-30T10:31:01.312Z","repository":{"id":358774155,"uuid":"1102227292","full_name":"winterweken/makit","owner":"winterweken","description":"Design Tech Toolbox","archived":false,"fork":false,"pushed_at":"2026-05-19T03:09:27.000Z","size":19250,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2026-05-19T03:50:34.420Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/winterweken.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-11-23T03:48:43.000Z","updated_at":"2026-05-19T03:09:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/winterweken/makit","commit_stats":null,"previous_names":["winterweken/makit"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/winterweken/makit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winterweken%2Fmakit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winterweken%2Fmakit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winterweken%2Fmakit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winterweken%2Fmakit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/winterweken","download_url":"https://codeload.github.com/winterweken/makit/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winterweken%2Fmakit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33689564,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"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":[],"created_at":"2026-05-30T10:30:59.301Z","updated_at":"2026-05-30T10:31:01.306Z","avatar_url":"https://github.com/winterweken.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Makit\n\n**A multi-tool CLI and TUI for AEC workflows** — orchestrate Revit, Rhino, Blender, IFC analysis, and MURB energy modelling from one interface.\n\nBuilt in Rust with [rsille](https://github.com/nidhoggfgg/rsille) for braille-rendered terminal graphics and a native TUI framework. Makit bridges the gap between BIM authoring tools and programmatic analysis. Connect to live applications, extract building geometry, run cross-platform analytics, simulate energy performance, and visualize results — all from the terminal.\n\n---\n\n## Features\n\n- **Unified CLI \u0026 Interactive TUI** — browse sources and actions in a tree-view explorer with real-time braille canvas preview\n- **Live Revit Integration** — extract walls, floors, rooms, and run orientation/WWR analysis via a pyRevit HTTP bridge\n- **IFC Analysis** — standalone wall orientation and Window-to-Wall Ratio analysis on IFC files (no Revit required)\n- **Blender Sync Server** — receive live geometry from Blender over HTTP for visualization in the TUI\n- **Rhino \u0026 Grasshopper** — import/export models and run Grasshopper definitions headlessly\n- **MURB Energy Modelling** — monthly-timestep heat balance simulation for early-stage TEDI/TEUI/GHGI analysis via Python bridge\n- **Braille Canvas Engine** — draw floor plans, elevations, energy charts, and data sheets using rsille's braille-character canvas\n- **Animated 3D Logo** — rotating hexagonal logo rendered in braille on the TUI home screen\n- **Cross-Platform Analysis** — extract from any source to a generic JSON format, then run the same analysis code everywhere\n\n## Quick Start\n\n### Install\n\n```bash\ngit clone https://github.com/winterweken/makit.git\ncd makit\ncargo build --release\n```\n\nThe binary is at `target/release/makit`.\n\n### Launch the TUI\n\n```bash\ncargo run -p makit -- tui\n```\n\nUse `↑/↓` to navigate, `→/←` to expand/collapse, `Enter` to select, `Tab` to switch focus, `?` for help, and `Esc` to quit.\n\n### CLI Commands\n\n```bash\n# List all registered tools, sources, and actions\nmakit list\n\n# Execute a specific action\nmakit exec revit analysis revit-wall-orientations\n\n# Analyze an IFC file\nmakit analyze examples/IFC/sample.ifc\n\n# Show help\nmakit --help\n```\n\n### Canvas Demo\n\n```bash\ncargo run -p makit --example canvas_demo\n```\n\nRenders braille-character shapes, a floor plan with interior walls, and filled rectangles — straight in the terminal.\n\n---\n\n## Architecture\n\n```\nmakit/\n├── Cargo.toml              # Workspace root\n├── crates/\n│   ├── makit-cli/           # Binary — clap CLI (list, exec, analyze, tui, status, init)\n│   ├── makit-core/          # Registry singleton, config (figment/YAML), model types\n│   ├── makit-geometry/      # Point, Line, Rectangle, Room, Floor + braille drawing\n│   ├── makit-tools/         # Tool implementations (revit, rhino, blender, ifc, murb)\n│   └── makit-tui/           # rsille-native TUI (tree explorer, canvas viz, theme)\n├── pyrevit-extension/       # Python pyRevit extension (runs inside Revit)\n├── scripts/\n│   ├── blender/             # Python Blender addon\n│   └── murb_runner.py       # Python bridge for MURB energy tool\n├── examples/IFC/            # Sample IFC files\n└── docs/                    # Architecture documentation\n```\n\n### Tool Registry\n\nTools register **sources** (geometry input drivers) and **actions** (operations) at startup:\n\n| Source | Description |\n|--------|-------------|\n| `revit` | Autodesk Revit integration via pyRevit HTTP |\n| `rhino` | Rhino 3D / Grasshopper |\n| `blender` | Blender live geometry sync |\n| `ifc` | IFC file loader |\n| `murb` | MURB energy modelling tool |\n\n| Action | Category | Description |\n|--------|----------|-------------|\n| `revit-extract-walls` | extraction | Extract wall elements from Revit |\n| `revit-wall-orientations` | analysis | Analyze wall orientations + WWR |\n| `murb-simulate` | analysis | Run monthly energy simulation |\n| `murb-report` | reporting | Generate TEDI/TEUI/GHGI report |\n| `architect-render-demo` | rendering | Render architectural demo |\n| ... | ... | 12 actions total |\n\n### Dependencies\n\n- **rsille v3** — braille canvas, TUI widgets (tree, list, select, button, layout), terminal rendering\n- **clap** — CLI argument parsing\n- **figment** — config management (YAML + env vars)\n- **reqwest** — HTTP client for pyRevit bridge\n- **axum** — HTTP server for Blender sync\n- **tokio** — async runtime\n\n---\n\n## Development\n\n```bash\n# Build\ncargo build\n\n# Run tests (47 tests across 5 crates)\ncargo test\n\n# Run the CLI\ncargo run -p makit -- --help\n\n# Run the TUI\ncargo run -p makit -- tui\n\n# Run the canvas demo\ncargo run -p makit --example canvas_demo\n\n# Format\ncargo fmt\n\n# Lint\ncargo clippy\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinterweken%2Fmakit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwinterweken%2Fmakit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinterweken%2Fmakit/lists"}