1DOLLY 32MODULE agent-tools34# Focused compatibility commands used by build systems and coding agents.5# Each remains a separate Wasm executable; wrappers which launch another tool6# do so through Dolly's in-userspace spawn/wait contract.7REQUIRES HEADER libc8REQUIRES HEADER runtime9REQUIRES LIB    z10REQUIRES TOOL   cc11REQUIRES TOOL   git12REQUIRES TOOL   make13REQUIRES TOOL   rm1415SOURCE HOST /static/default/commands/install.c  /tmp/agent-tools/install.c  605b04b67970f478771ee89a37c178748579fe6440ad0568e90fadcfa00922c416SOURCE HOST /static/default/commands/which.c    /tmp/agent-tools/which.c    1093935c88761920edb89d19004e00b503fe7fd34ef38dc93f53d31d9e80a3bf17SOURCE HOST /static/default/commands/command.c  /tmp/agent-tools/command.c  2aa5d461f14fe96a5a22006c31d04f4c67deda9ff547f5be14a9cb9294734b9b18SOURCE HOST /static/default/commands/xargs.c    /tmp/agent-tools/xargs.c    e848e4f4971200fa8120fc7de29151b1df63c17566cf30b5e5551f28d3e0c1e819SOURCE HOST /static/default/commands/find.c     /tmp/agent-tools/find.c     41a0698f3d57fbb942bc6e703afb0eba6563b2fbd62949da9943147dd663f3a020SOURCE HOST /static/default/commands/tail.c     /tmp/agent-tools/tail.c     f0a892066f2e6fe42667bf1765496f8347c8bfe53094ce22e0922e4ffc87c36b21SOURCE HOST /static/default/commands/tee.c      /tmp/agent-tools/tee.c      b4cf397425473e1ec7f116491c18a20f2b61d38fb2cf8a51d91ec0a1b72ef7ef22SOURCE HOST /static/default/commands/env.c      /tmp/agent-tools/env.c      9e1db5bb8a9b311edc68c9fabdb8c9ed33dcce2cbf1eca3876b7eedb6e94e44223SOURCE HOST /static/default/commands/printenv.c /tmp/agent-tools/printenv.c a279dd856a17f5a05bb3800157e0ea44e4c4269ff6cb3a834303741dda88e2bb24SOURCE HOST /static/default/commands/rev.c      /tmp/agent-tools/rev.c      3539529d49f26629a6518437dc76631f113bcc5822ff5dbc8aa26481933f3d0525SOURCE HOST /static/default/commands/timeout.c  /tmp/agent-tools/timeout.c  ba3271b3d5b13a7940eb538928f1d13a37ec1f43a6d8795a037b4165d737182126SOURCE HOST /static/default/commands/time.c     /tmp/agent-tools/time.c     9c37bf7f9fb565366583b67381f3399580676eaba70b2ebc484c09cbd113ce7427SOURCE HOST /static/default/commands/uname.c    /tmp/agent-tools/uname.c    6162be339998f88edf9e70f3bac76dc7780d3bc7e47ce5ed8097e351859b07ab28SOURCE HOST /static/default/commands/hostname.c /tmp/agent-tools/hostname.c 14a20a493c8559d8b28f221a6edd9b6f89f893f3e3067093b44d7235b4ae060f29SOURCE HOST /static/default/commands/realpath.c /tmp/agent-tools/realpath.c 6ec82439ecf3ab1d21a40293ab7e585972c523d8c8e4573a60a7cef86af0825030SOURCE HOST /static/default/commands/diff.c     /tmp/agent-tools/diff.c     6781afb83f0ee7097a938f0a7a83ea5d012ec1ed5e3ca2207ce682882e10117b31SOURCE HOST /static/default/commands/patch.c    /tmp/agent-tools/patch.c    840d935e7e8a7bddabedd445b710ad25d4fe2df2a5fc5c0126c1a55660456b9332SOURCE HOST /static/default/commands/du.c       /tmp/agent-tools/du.c       55b6a61ea8dc2a4355aaafc9a80d2218f397fa4d1e170b78462863fc9cb2ed6333SOURCE HOST /static/default/commands/dd.c       /tmp/agent-tools/dd.c       0f9f981c3b8f6b0c4c5ffd4f36cdb540e9fd2a04337443a136e87a46bbded30d34SOURCE HOST /static/default/commands/tty.c      /tmp/agent-tools/tty.c      c51c9598e8245d5f651ade70995f2b03fb936c42a0e99c4c81c83749c5714c7e35SOURCE HOST /static/default/commands/gzip.c     /tmp/agent-tools/gzip.c     dc8fddc876932984ede5bf89a12d4e071de2d8e361354df29fa31e9df5b36f7f3637FILE /tmp/agent-tools/Makefile38    .RECIPEPREFIX := >39    NAMES := install which command xargs find tail tee env printenv rev timeout time uname hostname realpath diff patch du dd tty40    TOOLS := $(addprefix /bin/,$(NAMES))41    all: $(TOOLS) /bin/gzip42    /bin/%: /tmp/agent-tools/%.c43    >cc -std=c17 $< -o $@44    /bin/gzip: /tmp/agent-tools/gzip.c45    >cc -std=c17 $< -lz -o $@46SLOP make \47  -f /tmp/agent-tools/Makefile4849EXPORTS TOOL install50EXPORTS TOOL which51EXPORTS TOOL command52EXPORTS TOOL xargs53EXPORTS TOOL find54EXPORTS TOOL tail55EXPORTS TOOL tee56EXPORTS TOOL env57EXPORTS TOOL printenv58EXPORTS TOOL rev59EXPORTS TOOL timeout60EXPORTS TOOL time61EXPORTS TOOL uname62EXPORTS TOOL hostname63EXPORTS TOOL realpath64EXPORTS TOOL diff65EXPORTS TOOL patch66EXPORTS TOOL du67EXPORTS TOOL dd68EXPORTS TOOL tty69EXPORTS TOOL gzip7071SLOP rm \72  -rf \73  /tmp/agent-tools74