Install
openclaw skills install stdio-skillStdin/stdout file inbox/outbox bridge for passing files to/from Clawdbot using an MCP stdio server. Use when you want a simple filesystem-backed dropbox: accept files into an inbox, move to tmp for processing, and emit deliverables to an outbox (or a specified path).
openclaw skills install stdio-skillImplement and use a local MCP stdio server that provides a simple inbox/outbox workflow backed by directories on disk.
Paths (workspace-relative):
stdio/inbox/ — user drops inputs herestdio/tmp/ — scratch area (move/copy inputs here for processing)stdio/outbox/ — put deliverables here for pickupThis repo config should include an MCP server named stdio-skill.
mcporter list stdio-skill --schema --timeout 120000 --jsonPrefer:
stdio-skill.stdio_list to see what’s waiting.stdio-skill.stdio_read (base64) to pull file contents.stdio-skill.stdio_move to move an item to tmp once you’ve claimed it.stdio-skill.stdio_write (base64) into outbox unless the user provided an explicit destination path.No deprecated aliases: use the stdio_* tools only.