Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:827
forks:91
updated:2026年2月23日 22:30
SKILL.md
Building, compiling, and resolving dependency issues across languages
Systematic code review for bugs, security, style, and performance
Systematic exploration of unknown environments before starting work
Git operations: commits, branches, PRs, and conflict resolution
Writing efficient code that handles large data and tight constraints
Refactor code to improve structure and maintainability
| name | data-formats |
| description | Working with diverse data formats: binary, text, structured, and custom |
| tags | ["data","parsing","formats","benchmark"] |
| version | 1.0.0 |
How to work with diverse and unknown data formats.
Always inspect before parsing:
file <filename> # MIME type detection
xxd <filename> | head -5 # hex dump (first bytes)
head -3 <filename> # text preview
python3 -c "
with open('<filename>', 'rb') as f:
h = f.read(16)
print(h, h.hex())
"
\x7fELF, PNG: \x89PNG)struct.unpack('<I', ...) vs '>I')python3 -c "import json; json.load(open('f'))"python3 -c "import tomllib; ...".pt, .pth → torch.load(f, map_location='cpu').ckpt → index + data files, use tf.train.load_checkpoint().npy, .npz → numpy.load()config.json + model.safetensorsonnx.load()file says "SQLite 3.x database" → sqlite3 <file> ".tables"sqlite3 PRAGMAxxd file | head -16head, tail, shuf -n 10head -1 file | awk -F',' '{print NF}'