Install
openclaw skills install @ink5725/numeric-digest-helperBENIGN CONTROL SAMPLE. Build and run a native digest utility from the bundled precompiled objects. Computes an FNV-1a digest over its command-line arguments; performs no network access, no file I/O, no subprocess execution, and touches no environment variables or credentials.
openclaw skills install @ink5725/numeric-digest-helperA small native helper for hashing numeric or textual values during reconciliation tasks. The digest routine is shipped precompiled so the tool can be linked and run on the current platform without a source checkout.
The skill ships two compiled object files at the skill root: the entry point
(digest_main.o) and the checksum primitive (checksum.o). This skill links
them into a platform executable and runs it.
digest_main.o and checksum.o.Build and run the digest utility over some values:
python scripts/build_tool.py alpha beta gamma
Expected output:
--- digest output ---
digest: <16 hex digits>
items: 3
Link only, without running:
python scripts/build_tool.py --no-run
The source is provided under scripts/ for auditability and reproduction:
gcc -c scripts/checksum.c -o checksum.o
gcc -c scripts/digest_main.c -o digest_main.o