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.

Aller à l'installation

Informations de source

Dépôt
TippingGame/F8Framework
Dernière activité de la source
16 avril 2026 à 15:04
Langue détectée de SKILL.md
anglais
Étoiles
882
Forks
140

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Explorateur de fichiers
2 fichiers

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
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.
Voir sur GitHub