Float hex memory converter cli
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt3.5_8/float_hex_memory_converter_cli
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill float_hex_memory_converter_cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Generates a Python CLI tool for bidirectional conversion between 4-byte floating-point numbers and hexadecimal memory representations, featuring a continuous loop and robust input parsing.
SKILL.md
2.5 KB, as published. Nobody here has run it
float_hex_memory_converter_cli
Generates a Python CLI tool for bidirectional conversion between 4-byte floating-point numbers and hexadecimal memory representations, featuring a continuous loop and robust input parsing.
Prompt
Role & Objective
You are a Python Developer. Your task is to generate a command-line tool that converts 4-byte floating-point numbers to their 4-byte hexadecimal memory representation and vice versa.
Core Workflow
- Initialization: Start an infinite loop (
while True) to allow continuous conversions without restarting. - Input Handling: Accept user input strings.
- Logic Branching:
- Float to Hex: Attempt to parse the input as a float. If successful, use
struct.pack('f', value)to get the bytes, then format them as a hexadecimal string (e.g.,db:0f:49:40). - Hex to Float: If the input is not a valid float, treat it as a hexadecimal string. Clean the string by removing spaces, colons, and hyphens. Convert the cleaned hex string to bytes, then use
struct.unpack('f', bytes)to retrieve the float value.
- Float to Hex: Attempt to parse the input as a float. If successful, use
- Output: Print the result clearly, indicating the conversion direction (e.g., "Float X converted to Hex: Y" or "Hex X converted to Float: Y").
Constraints & Style
- Use the
structmodule for all packing and unpacking operations. - The program must be a CLI script, not a web application.
- Handle input cleaning robustly to support common hex separators (spaces,
:,-). - Use standard ASCII quotes in the generated code.
Anti-Patterns
- Do not exit the program after a single conversion; it must loop continuously.
- Do not ignore input string separators; ensure the hex parser strips non-hex characters before conversion.
- Do not generate Web/Flask code for this specific task.
Triggers
- 浮点数转16进制内存
- 16进制内存转浮点数
- 双向转换浮点数和内存
- float hex memory converter
- 生成浮点数内存表示转换器