Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

grasshopper-ironpython-basegrasshopper ironpython base 测试

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

192

周安装

8

GitHub Stars

公开资料未说明

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andrupavlov/grasshopper-ironpython-skills --skill grasshopper-ironpython-base

简介

用于辅助 Python 项目开发与 Grasshopper 插件开发。

  • 适合阅读代码、运行测试与依赖管理相关操作。grasshopper-ironpython-base 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认虚拟环境路径与测试入口脚本位置。
  • 可帮助生成构建命令、调试脚本与分析数据处理逻辑。
  • 安装前请确保不会误改生产数据或触发非预期副作用。

SKILL.md

Grasshopper IronPython 2.7

Target platform: Rhinoceros 7 + Grasshopper 1 with the built-in IronPython 2.7 interpreter. All API signatures, return types, and method names in this skill are verified against the RhinoCommon 7.x SDK. Rhino 8 ships with both IronPython 2.7 (legacy) and CPython 3 — if you are targeting Rhino 8 CPython, many constraints in the Hard Constraints section do not apply.

Hard Constraints (IronPython 2.7)

These will cause runtime errors — never use them:

ForbiddenUse instead
f"text {var}""text {}".format(var) or "text %s" % var
:= (walrus)separate assignment
Type hints def fn(x: int) -> str:def fn(x): with docstring
pathlibos.path
dataclassesplain class Foo(object):
enum.Enummodule-level constants
dict / list comprehension with walrusstandard comprehension
yield fromexplicit loop with yield
nonlocalmutable container workaround
super() without argssuper(ClassName, self)
{**d1, **d2} dict merged = dict(d1); d.update(d2)

Additional notes:

  • print() works but is not for primary output — use GH output params
  • xrange() is available (use instead of range() for large iterations)
  • Use (object) as base class: class Foo(object):
  • String .format() uses positional {0}, {1} or auto {}
  • File I/O: always open(path, 'rb') / open(path, 'wb') with .encode('utf-8') / .decode('utf-8')

Component File Structure

Every .py script follows this order:

"""
GH Python (IronPython)
Description: <what this component does>

Inputs:
    param_name : Type — description
    ...

Outputs:
    param_name : Type — description
    ...
"""

import Rhino.Geometry as rg
import Grasshopper as gh
import System
# ... other imports ...

ghenv.Component.Message = "ComponentName v0.01"

# CONSTANTS
TOLERANCE = 0.01
STICKY_KEY = "component_data"

# CLASSES (if needed)
class MyProcessor(object):
    """Docstring"""
    def __init__(self):
        pass

# MAIN FUNCTIONS (above helpers)
def process_data(input_data):
    """Docstring"""
    pass

# HELPER FUNCTIONS
def validate_input(data):
    """Docstring"""
    pass

# GRASSHOPPER ENTRY POINT
try:
    # Main logic
    result = process_data(my_input)
    ok = True
except Exception as e:
    ok = False
    error = str(e)

Header docstring rules

  • Must use triple-quoted """... """ — only multi-line strings provide docstrings
  • This text becomes the tooltip visible when hovering over the IronPython node in Grasshopper
  • Always list Inputs and Outputs with types

Component naming

  • Component name in ghenv.Component.Message must match the file name or main function
  • Format: "<ComponentName> v<Version>"
  • Every git change must increment the version number

Optional per-input descriptions

ghenv.Component.Params.Input[0].Description = "input param description"
ghenv.Component.Params.Output[0].Description = "output param description"

Available Imports

import Rhino.Geometry as rg          # geometry kernel
import Grasshopper as gh             # GH data trees, params
from Grasshopper import DataTree
from Grasshopper.Kernel.Data import GH_Path
import Grasshopper.Kernel as ghk     # runtime messages
import System                        # .NET base types
import System.IO as SIO              # .NET file I/O
import scriptcontext as sc           # Rhino doc context, sc.sticky
import rhinoscriptsyntax as rs       # helper shortcuts
import json                          # built-in
import os, math, re                  # standard lib

DataTree Operations

API note: The official Grasshopper SDK exposes BranchCount, Branch(i), Path(i), Branches (list of branches), and Paths (list of GH_Path) on DataTree<T>. PathCount is not a standard property — always prefer BranchCount. When writing defensive code, use hasattr checks rather than or-chaining (which treats a count of 0 as falsy):

if hasattr(tree, "BranchCount"):
    n = tree.BranchCount
elif hasattr(tree, "Branches"):
    n = len(tree.Branches)
else:
    n = 0

Two import styles are used in the project (both valid):

# Style 1 (via gh alias — matches CodeStyleGuide)
import Grasshopper as gh
import System
tree = gh.DataTree[System.Object]()
path = gh.Kernel.Data.GH_Path(0)

# Style 2 (direct import — common in project code)
from Grasshopper import DataTree
from Grasshopper.Kernel.Data import GH_Path
tree = DataTree[object]()
path = GH_Path(0)

List of lists → DataTree

def list_to_tree(list_of_lists):
    """Converts nested lists into Grasshopper data tree"""
    tree = gh.DataTree[System.Object]()
    for i, lst in enumerate(list_of_lists):
        path = gh.Kernel.Data.GH_Path(i)
        tree.AddRange(lst, path)
    return tree

DataTree → flat list (robust)

def tree_to_list(data_tree):
    """
    Converts a Grasshopper data tree into a flat list

    Args:
        data_tree: Grasshopper data tree (DataTree)

    Returns:
        list: Flat list of all elements from the tree
    """
    if data_tree is None:
        return []

    result_list = []

    if hasattr(data_tree, 'Branches'):
        for branch in data_tree.Branches:
            for item in branch:
                result_list.append(item)
    else:
        if hasattr(data_tree, '__iter__') and not isinstance(data_tree, str):
            for item in data_tree:
                result_list.append(item)
        else:
            result_list.append(data_tree)

    return result_list

DataTree → list of lists

def tree_to_list_of_lists(data_tree):
    """Converts GH DataTree into nested lists"""
    if data_tree is None:
        return []
    result = []
    for branch in data_tree.Branches:
        result.append(list(branch))
    return result

Typed DataTree creation

tree = gh.DataTree[rg.Point3d]()
tree = gh.DataTree[System.String]()
tree = gh.DataTree[System.Double]()
tree = gh.DataTree[rg.Brep]()
tree = gh.DataTree[System.Object]()  # mixed types

Iterate by Paths and use EnsurePath (output trees)

When the tree has Paths and Branch(path), you can iterate by path and keep the same path structure in output trees. Use EnsurePath(path) so the output tree has the branch before adding items:

# Input tree with .Paths and .Branch(path) API
for path in input_tree.Paths:
    branch = input_tree.Branch(path)
    out_tree.EnsurePath(path)   # create branch in output if missing
    for item in branch:
        out_tree.Add(processed(item), path)

Use this when you need path identity (e.g. one output branch per input branch). When only Branches is available, use for i, branch in enumerate(tree.Branches) and GH_Path(i) for outputs.

Optional: If you need a default when an input is not wired, use ghenv.Component.Params.Input[i].SourceCount == 0 (GH API).

sc.sticky State Persistence

import scriptcontext as sc

comp_guid = str(ghenv.Component.InstanceGuid)
STICKY_KEY = "my_data_" + comp_guid

# Write
sc.sticky[STICKY_KEY] = my_data

# Read with default
cached = sc.sticky.get(STICKY_KEY, None)

# Check
if STICKY_KEY in sc.sticky:
    pass

Error Reporting

# Runtime message (appears on component)
import Grasshopper.Kernel as ghk

ghenv.Component.AddRuntimeMessage(
    ghk.GH_RuntimeMessageLevel.Warning,
    "Something went wrong: {}".format(msg)
)

# Levels: Warning, Error, Remark

# Component status message (bottom of component)
ghenv.Component.Message = "MyComponent v0.01 - OK"

# Force recompute
ghenv.Component.ExpireSolution(True)

Common Geometry Patterns

For detailed Rhino.Geometry API patterns, see reference.md.

Style Rules

  1. snake_case for functions, UPPER_SNAKE_CASE for constants, PascalCase for classes
  2. Every function has a docstring (short one-liner or detailed with Args/Returns)
  3. No magic numbers — extract to named constants with meaningful prefixes (TOLERANCE, STICKY_KEY)
  4. Component name in ghenv.Component.Message must match file name — increment version on every git change
  5. Classes use (object) base class
  6. Main functions above helpers; classes above functions (after imports + constants)
  7. Initialize global output variables immediately after ghenv.Component.Message
  8. Standard import abbreviations: rg, gh, sc, rs

Anti-Patterns

  • Never use try:... except: pass silently — at least log to debug
  • Never use bare except: for flow control — catch specific exceptions when possible
  • Never use print() as primary output — use GH output params
  • Never hardcode file paths — use os.path.join(), System.IO.Path
  • Never assume input list order matches between different GH params without verifying length

Additional Resources

  • For Rhino.Geometry API patterns and.NET interop, see reference.md
  • For complete component templates and real examples, see examples.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.63%
按下载量换算25

Claude

28.52%
按下载量换算18

Cursor

20.5%
按下载量换算13

Gemini CLI

9.74%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills