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.

Ir para a instalação

Informações da origem

Repositório
TippingGame/F8Framework
Última atividade na origem
16 de abril de 2026 às 15:04
Idioma detectado do SKILL.md
inglês
Estrelas
882
Forks
140

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Explorador de arquivos
2 arquivos

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
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.
Ver no GitHub