docs(wasm): compute-unit build guidance and trigger/discovery - #170
Merged
Conversation
…tion Expand the Agent Compute Units page (EN + ZH) with three additions: - Recommended compute units: a selection principle (deterministic + usable under readonly + dependency-free) and two tiers of high-leverage units to build first. - Not-recommended units: an explicit anti-pattern list explaining why network, filesystem, clock/randomness, regex, and stateful/installer units do not belong in the pure data-transform sandbox. - How units are triggered (and discovered): clarifies the two trigger paths (model-driven wasm_tool vs host-driven compressor) and the discovery gap that Scoot does not advertise individual packages, so a tool package is most useful shipped alongside a skill that advertises it. Docs-only change; mdBook builds clean for both book/en and book/zh.
Merged
jamiesun
added a commit
that referenced
this pull request
Jun 30, 2026
- Opt-in PreToolUse policy hook at the guard() chokepoint (#136, #177) - Opt-in PostToolUse audit/observability hook (#137, #179) - Structured ReACT event sink for protocol adapters (#156, #178) - WebAssembly spec conformance test suite for scoot-wasm (#163, #180) - project-audit agent skill scoring ten dimensions of repo health (#168) - scoot-edge E1 status heartbeat + E0 boundary doc (#172, #173) - Harden scoot-wasm against hostile bytecode: explicit traps/errors, no OOM panic (#174, #181) - Tighten agent boundary guardrails (#176) - Wasm compute-unit build guidance and docs (#170) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Expands the Agent Compute Units page (
book/enandbook/zh, kept in sync) with three guidance sections, in response to questions about what Wasm units are worth building and how they get invoked.Added
readonly+ dependency-free) plus two tiers of high-leverage units (structured-data query/convert, safe calculator, hash/encode-decode; then redactor compressor, diff/patch, token counter).wasm_toolforkind="tool"vs host-driven automatickind="compressor") and the discovery gap: Scoot does not advertise individual packages, so atoolpackage is most useful shipped alongside a skill that advertises its path.Scope
Docs-only. No code or behavior changes. English and Chinese pages updated together per the documentation language policy.
Validation
mdbook build book/enandmdbook build book/zhboth build clean.