x07-io-streams
Installation
SKILL.md
x07-io-streams
Prefer streaming parsing and zero-copy views over full-buffer copies.
Canonical patterns
- Prefer
bytes_view+view.*builtins for scan/trim/split without copying. - Prefer
std.stream.pipe_v1for deterministic, budgeted streaming composition (source → transducers → sink). - Prefer
std.io/std.io.bufreadfor streaming reads:io.readbufread.fill+bufread.consume
- Prefer world adapters that return reader
ifaces:std.fs.open_readstd.kv.get_stream
For the built-in reference guide, use x07 guide and search for std.io / std.io.bufread.
Related skills
More from x07lang/x07-website
x07-package
Manage X07 project dependencies and lockfiles for reproducible builds (lock, publish). Designed for autonomous agents.
9x07-lint-repair
Lint X07 x07AST JSON and converge via quickfixes (`x07 fix`) or explicit JSON Patch (`x07 ast apply-patch`).
9x07-ffi-c
Emit C output and a C header for embedding X07 in C/C++ via `x07 build --emit-c-header`.
8x07-agent-playbook
Agent-first workflow and design rails for building X07 programs with the released toolchain (no repo-only dependencies). Canonical execution is via `x07 run`.
8x07-run
Canonical execution front door for X07 programs (run-os / run-os-sandboxed), producing runner reports.
2