{"id":48604280,"url":"https://github.com/ecto/vcad","last_synced_at":"2026-04-08T23:35:48.453Z","repository":{"id":334972035,"uuid":"1143546390","full_name":"ecto/vcad","owner":"ecto","description":"Parametric CAD in Rust — CSG modeling with multi-format export","archived":false,"fork":false,"pushed_at":"2026-03-28T04:14:45.000Z","size":33885,"stargazers_count":314,"open_issues_count":6,"forks_count":14,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-28T07:37:53.557Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://vcad.io","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/ecto.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.json","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-01-27T18:00:14.000Z","updated_at":"2026-03-28T04:14:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ecto/vcad","commit_stats":null,"previous_names":["ecto/vcad"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ecto/vcad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecto%2Fvcad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecto%2Fvcad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecto%2Fvcad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecto%2Fvcad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ecto","download_url":"https://codeload.github.com/ecto/vcad/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecto%2Fvcad/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31579057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2026-04-08T23:35:47.957Z","updated_at":"2026-04-08T23:35:48.446Z","avatar_url":"https://github.com/ecto.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://vcad.io/assets/mascot.png\" width=\"200\" alt=\"vcad mascot\"\u003e\n\u003c/p\u003e\n\n# vcad\n\nOpen-source parametric CAD for the AI era.\n\n**[Try it now →](https://vcad.io)**\n\n![vcad screenshot](assets/screenshot.png)\n\n## Features\n\n- **Modeling** — Primitives, booleans, fillets, chamfers, shell\n- **Sketching** — 2D constraints, extrude, revolve, sweep, loft\n- **Assembly** — Parts, instances, joints, forward kinematics\n- **Simulation** — Physics with Rapier3D, gym-style RL interface\n- **Import/Export** — STEP import, STL/GLB/STEP/DXF export\n- **Rendering** — Direct BRep ray tracing + tessellated mode\n- **Cloud** — Supabase sync with Google/GitHub auth\n\n## Use vcad\n\n### Web App\n\nVisit [vcad.io](https://vcad.io) — no install required.\n\n### CLI\n\n```bash\ncargo install vcad-cli\nvcad export input.vcad output.stl\nvcad import-step input.step output.vcad\n```\n\n### MCP Server (AI Agents)\n\nThe MCP server lets AI agents create and manipulate CAD models:\n\n```bash\nnpm install -g @vcad/mcp\n```\n\nTools: `create_cad_document`, `export_cad`, `inspect_cad`, `gym_step`, `gym_reset`\n\n### Rust Library\n\n```rust\nuse vcad_kernel::Solid;\n\n// Create a box with a hole\nlet solid = Solid::cube(100.0, 60.0, 20.0);\nlet hole = Solid::cylinder(10.0, 25.0, 32);\nlet result = solid - hole;\n\n// Export to mesh\nlet mesh = result.to_mesh(32);\n```\n\nSee [crates/vcad-kernel](crates/vcad-kernel) for the full API.\n\n## Architecture\n\n```\nvcad/\n├── crates/           # Rust BRep kernel (~35K LOC)\n│   ├── vcad-kernel/  # Unified API\n│   ├── vcad-kernel-topo/    # Half-edge topology\n│   ├── vcad-kernel-booleans/# Boolean operations\n│   └── ...           # 20+ modular crates\n├── packages/         # TypeScript\n│   ├── app/          # React + Three.js web app\n│   ├── mcp/          # MCP server for AI agents\n│   └── ...\n└── supabase/         # Database migrations\n```\n\n## Development\n\n```bash\n# Rust\ncargo test --workspace\ncargo clippy --workspace -- -D warnings\n\n# TypeScript\nnpm ci\nnpm run dev -w @vcad/app   # Run web app locally\n```\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fecto%2Fvcad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fecto%2Fvcad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fecto%2Fvcad/lists"}