用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill gmsh-meshing-geometry-primitives命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Write outbound email and external messages in Vamsee Achanta's voice — a subtle offer to help, never bold or rash claims. Load before drafting ANY email, LinkedIn/Collide reply, proposal note, or outreach sent under his name.
Save/publish analysis or computation results from ANY ecosystem repo to Hugging Face as a queryable, viewer-renderable dataset. Use when the user wants to "save results to hugging face", "publish dataset to HF", "hugging face data saving", "save analysis results", "hf dataset", "make results queryable", or "render via datasets-server API". Reshapes nested results into flat parquet tables, writes a dataset card with a viewer `configs:` block and provenance, applies license/public-vs-private routing, enforces a domain data-quality gate (faithful-to-source != correct), publishes to `aceengineer/<repo>-<projection>`, and verifies via the datasets-server API.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
正在显示 SKILL.md
基于 SOC 职业分类
| name | gmsh-meshing-geometry-primitives |
| description | Sub-skill of gmsh-meshing: Geometry Primitives (+5). |
| version | 1.0.0 |
| category | engineering |
| type | reference |
| scripts_exempt | true |
// Points: Point(id) = {x, y, z, mesh_size};
Point(1) = {0, 0, 0, 1.0};
Point(2) = {10, 0, 0, 1.0};
Point(3) = {10, 5, 0, 0.5};
Point(4) = {0, 5, 0, 0.5};
// Lines
Line(1) = {1, 2};
Line(2) = {2, 3};
*See sub-skills for full details.*
## Surface and Volume
```geo
// Surface from curve loops (first = outer boundary, rest = holes)
Plane Surface(1) = {1};
Plane Surface(2) = {2, 3}; // Surface 2 with hole defined by loop 3
// Surface Loop (for volumes)
Surface Loop(1) = {1, 2, 3, 4, 5, 6};
// Volume from surface loops
Volume(1) = {1};
// Translate (creates copy if Duplicata used)
Translate {dx, dy, dz} { Surface{1}; }
// Rotate: angle in radians
Rotate {{ax, ay, az}, {px, py, pz}, angle} { Surface{1}; }
// Symmetry
Symmetry {a, b, c, d} { Surface{1}; } // plane ax+by+cz+d=0
*See sub-skills for full details.*
## OpenCASCADE Kernel
```geo
// Enable OpenCASCADE kernel (must be first geometry command)
SetFactory("OpenCASCADE");
// Primitives
Box(1) = {x, y, z, dx, dy, dz};
Sphere(2) = {x, y, z, radius};
Cylinder(3) = {x, y, z, dx, dy, dz, radius};
Cone(4) = {x, y, z, dx, dy, dz, r1, r2};
Torus(5) = {x, y, z, r1, r2};
*See sub-skills for full details.*
## Physical Groups
```geo
// Physical groups assign labels for export
Physical Surface("hull") = {1, 2, 3};
Physical Surface("deck") = {4};
Physical Volume("fluid") = {1};
// Numbered groups
Physical Surface(100) = {1, 2, 3};
// Characteristic length at points
Characteristic Length {1, 2, 3} = 0.5;
// Transfinite curves (structured)
Transfinite Curve {1, 3} = 20; // 20 nodes
Transfinite Curve {2, 4} = 10; // 10 nodes
Transfinite Curve {1} = 20 Using Progression 1.1; // graded
// Transfinite surface
*See sub-skills for full details.*