Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计异常

3d-modeling3D 建模

Agent Skill

3d-modeling 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,322

周安装

54

GitHub Stars

4

下载量

428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:3d-modeling(3D 建模)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/3d-modeling
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill 3d-modeling
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill 3d-modeling

简介

3d-modeling 专注于使用 Blender 创建和优化面向 AR/VR 应用的 3D 模型。

  • 适用于开发虚拟环境中的交互对象、数字资产或沉浸式体验原型。
  • 支持网格生成、纹理处理和平台导出(如 Unity、Oculus)。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill 3d-modeling。
  • 建议在明确项目需求后再启用,避免不必要的资源消耗。

SKILL.md

3d-modeling

Purpose

This skill provides tools for creating, editing, and optimizing 3D models using Blender, specifically tailored for AR/VR applications. It focuses on generating assets like meshes and textures that integrate seamlessly into virtual environments.

When to Use

Use this skill when developing AR/VR prototypes that require custom 3D models, such as designing interactive objects for VR simulations or overlaying digital assets in AR scenes. Apply it in workflows involving asset creation, modification, or export for platforms like Unity or Oculus.

Key Capabilities

  • Create and manipulate 3D meshes using Blender's Python API, e.g., generating a cube with bpy.ops.mesh.primitive_cube_add().
  • Apply materials and textures for AR/VR realism, such as using bpy.data.materials.new() to add shaders.
  • Render scenes optimized for AR/VR, including exporting to GLTF format with embedded textures via bpy.ops.export_scene.gltf().
  • Perform batch operations via CLI for automation, like processing multiple files.
  • Integrate with AR/VR tools by exporting models that support real-time rendering, such as low-poly meshes for mobile VR.

Usage Patterns

Follow these patterns to leverage the skill effectively. Always run Blender in a compatible environment with Python 3.7+ installed.

  1. Basic Model Creation: Start by launching Blender from the command line and scripting a simple object. Use this for quick AR prototypes.

- Example: Create a cube and export it as GLTF for AR integration. import bpy bpy.ops.mesh.primitive_cube_add(size=2, location=(0,0,0)) bpy.ops.export_scene.gltf(filepath="cube.gltf")

  1. Model Editing for VR: Import an existing model, apply modifications, and optimize for VR performance.

- Example: Load a mesh, reduce polygons, and export for VR headset compatibility. import bpy bpy.ops.import_scene.obj(filepath="model.obj") bpy.ops.object.modifier_add(type='DECIMATE') bpy.ops.export_scene.gltf(filepath="optimized_model.gltf", export_format='GLTF_SEPARATE')

For complex tasks, wrap these in scripts and run via Blender's CLI to automate AR/VR asset pipelines.

Common Commands/API

Use Blender's CLI and Python API for core operations. Specify exact flags for efficiency.

  • CLI Commands: Run scripts in background mode.

- blender --background input.blend --python script.py --render-output output.png: Loads a file, runs a script, and renders an image for AR previews. - blender -b file.blend -P script.py -F PNG -o //render_: Executes a script on a blend file and outputs renders; use -F for format like PNG for VR thumbnails.

  • Python API Snippets: Access via bpy module in Blender scripts.

- Snippet for adding a material: mat = bpy.data.materials.new("AR_Material") mat.diffuse_color = (1, 0, 0, 1) # Red color for AR visibility - Snippet for mesh manipulation: obj = bpy.context.active_object obj.scale = (1.5, 1.5, 1.5) # Scale object for VR fitting

Config formats: Use JSON-like structures in Blender files (.blend) for custom properties, e.g., add via bpy.types.Scene.my_prop = "value". For exports, specify GLTF options in scripts, like export_extras=True for metadata.

Integration Notes

Integrate this skill with AR/VR frameworks by exporting models in compatible formats. For external services (e.g., cloud rendering), use environment variables for authentication, such as $BLENDER_API_KEY if accessing paid APIs, though Blender itself is local. Pattern: Set export os.environ['BLENDER_API_KEY'] = 'your_key' in scripts before API calls. Ensure dependencies like Python packages (e.g., bpy) are installed via pip install bpy if using external editors. For AR/VR platforms, import GLTF files directly into Unity or Unreal, matching coordinate systems (e.g., Z-up for Blender).

Error Handling

Anticipate and handle errors in scripts to maintain AR/VR workflow reliability. Check for file existence before imports: Use if not bpy.data.filepath: raise ValueError("File not found"). For API failures, like failed exports, catch exceptions:

try:
    bpy.ops.export_scene.gltf(filepath="output.gltf")
except RuntimeError as e:
    print(f"Export failed: {e}")  # Log and retry or fallback

Common issues: Invalid paths (use absolute paths), memory errors on large models (optimize with decimate modifier first), or version mismatches (ensure Blender 2.8+). Always test scripts in a non-destructive environment.

Graph Relationships

  • Belongs to cluster: ar-vr
  • Related tags: 3d-modeling, blender, ar-vr
  • Connected skills: rendering (for post-processing AR/VR assets), mesh-optimization (for performance in VR)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.25%
按下载量换算142

Claude

30.6%
按下载量换算131

Cursor

18.78%
按下载量换算80

Gemini CLI

8.23%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills