Skip to main content

corvus-bytes-to-bytes

Eliminate hand-rolled POCO record<->document string seams — types/paths that materialize a managed string (or List<string>/Dictionary) between a bytes SOURCE (a parsed UTF-8 body, a DB column, a directory/HTTP response) and a bytes SINK (a serialized JSON document, a generated model, a SecurityTagSet, a DB write). The fix recipe is bytes-native default + opt-in string extensibility, plus a decision procedure for telling a genuine string leaf from work you are avoiding. USE FOR: deciding whether a string on a hot/warm path is justified; converting a bytes->string->bytes u-turn to bytes-to-bytes; reviewing your own diff for hidden string materializations before committing; building an identity/tag set from a UTF-8 source. DO NOT USE FOR: the mechanics of building a generated model from spans without a closure (use corvus-builder-context-threading), raw pooling/stackalloc patterns (use corvus-buffer-and-pooling), constructing models from native values (use corvus-typed-model-construction).

Jump to install

Source facts

Repository
corvus-dotnet/Corvus.JsonSchema
Last source activity
August 5, 2026 at 11:36
Detected SKILL.md language
English
Stars
198
Forks
24

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.