Skip to main content

f8-tools-binaryserializer-workflow

Use when working with BinarySerializer tools — binary serialization and deserialization utilities in F8Framework.

Aller à l'installation

Informations de source

Dépôt
TippingGame/F8Framework
Dernière activité de la source
1 avril 2026 à 11:00
Langue détectée de SKILL.md
anglais
Étoiles
884
Forks
141

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-binaryserializer-workflow
description
Use when working with BinarySerializer tools — binary serialization and deserialization utilities in F8Framework.
# BinarySerializer Tools Workflow ## Use this skill when - The task involves binary serialization/deserialization of data. - The user needs to save/load binary data formats efficiently. ## Path resolution 1. Source: Assets/F8Framework/Runtime/Utility/BinarySerializer.cs (~3KB) 2. Extended: Assets/F8Framework/Runtime/Utility/BinarySerializer/ ## Sources of truth - Source files: Assets/F8Framework/Runtime/Utility/BinarySerializer.cs and BinarySerializer/ ## Key capabilities - Serialize C# objects to binary byte arrays - Deserialize binary data back to C# objects - High-performance binary format for config data - Used by ExcelTool for binary config cache ## Workflow 1. Use `BinarySerializer` class for serialization operations. 2. `Serialize(object)` → `byte[]` 3. `Deserialize<T>(byte[])` → T 4. Primarily used internally by ExcelTool binary export. ## Output checklist - Serialization format selected (binary vs JSON). - Serializable types validated. - Binary data file path configured.
Voir sur GitHub