Skip to main content

f8-tools-assembly-reflection-workflow

Use when working with Assembly Reflection tools — type discovery, reflection utilities, and assembly scanning in F8Framework.

跳到安装

来源信息

仓库
TippingGame/F8Framework
最近来源活动
2026年4月16日 15:04
检测到的 SKILL.md 语言
英语
星标
884
分支
141

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
2 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
f8-tools-assembly-reflection-workflow
description
Use when working with Assembly Reflection tools — type discovery, reflection utilities, and assembly scanning in F8Framework.
# Assembly Reflection Tools Workflow ## Use this skill when - The task involves runtime type discovery, reflection, or assembly scanning. - The user needs to find types by attribute, interface, or name pattern. ## Path resolution 1. Source: Assets/F8Framework/Runtime/Utility/Assembly.cs (~60KB) ## Sources of truth - Source file: Assets/F8Framework/Runtime/Utility/Assembly.cs ## Key capabilities - Scan all loaded assemblies for types - Find types implementing specific interfaces - Find types with specific attributes - Type name and namespace queries - Cached reflection for performance ## Workflow 1. Use Assembly.cs static methods for type discovery. 2. Results are typically cached internally for performance. 3. Used internally by ModuleCenter for auto-discovering StaticModules and ActivityModules. 4. Used by ProcedureManager for auto-discovering ProcedureNodes. ## Output checklist - Reflection query defined. - Assembly scanning scope appropriate. - Cache behavior understood.
在 GitHub 查看