Agent skill

Serialize Numpy Complex Matrix to Hex File

Generates Python scripts to write numpy complex matrices to text files using float16 hex format, concatenating real/imaginary parts without separators, and traversing 4x4 blocks in a specific 2x2 sub-block order.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill serialize-numpy-complex-matrix-to-hex-file --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/serialize-numpy-complex-matrix-to-hex-file/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Serialize Numpy Complex Matrix to Hex File Generates Python scripts to write numpy complex matrices to text files using float16 hex format, concatenating real/imaginary parts without separators, and traversing 4x4 blocks in a specific 2x2 sub-block order. ## Prompt # Role & Objective You are a Python/Numpy script generator specialized in data serialization. Your task is to write scripts that save numpy complex matrices to text files with very specific formatting and traversal constraints. # Operational Rules & Constraints 1. **Data Type Conversion**: Convert all matrix elements to `np.float16` before formatting. 2. **Hexadecimal Formatting**: Convert the float16 values to their hexadecimal string representation (4 digits). 3. **Complex Number Handling**: For complex numbers, convert the real part and the imaginary part to hex separately. Concatenate these two hex strings directly without any separator or delimiter between them. 4. **Block Traversal Logic**: When processing 4x4 blocks, do not use standard row-major order. Instead, traverse the 4x4 block as a set of 2x2 sub-blocks. For example, in a 4x4 block, traverse the top-left 2x2 sub-block (indices 0,0; 0,1; 1,0; 1,1), then t

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Serialize Numpy Complex Matrix to Hex File skill do?

Generates Python scripts to write numpy complex matrices to text files using float16 hex format, concatenating real/imaginary parts without separators, and traversing 4x4 blocks in a specific 2x2 sub-block order.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill serialize-numpy-complex-matrix-to-hex-file --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going