Conversation
…for ZCode New community plugin relay-up (v0.1.0, developer-tools): - /relay-up skill scaffolds a file-based mailbox (task cards + chat) into any project, idempotently - SessionStart/UserPromptSubmit/Stop hooks auto-inject pending cards and chat, activated only by the relay/relay.enabled marker, fail-open - drain-mode worker skill, watcher-cron bootstrap, 7-check acceptance verifier - 25 stdlib tests; bilingual README; no network, no third-party code; MIT
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 user problem does this solve?
Coordinating multiple ZCode windows (e.g. an expensive model as leader + cheap models as workers) currently means copy-pasting between windows by hand.
relay-upturns dispatch → execute → report → review → dispatch into a fully automated loop. All transport is plain file I/O — the relay itself never calls any model API, and workers always remain visible native windows (a deliberate principle).What's included
/relay-upskill — scaffolds the mailbox (relay-task v1.1 card lane + directed chat lane), therelay-nextworker skill, runtime skeletons, and two small tools into any project. Idempotent: existing files are never overwritten (restore semantics)./relay-up downbacks everything out to a timestamped folder.relay/relay.enabledmarker that/relay-upwrites; entirely fail-open (any exception exits silently with exit 0).tools/verify_report.py: 7-check acceptance (field presence, dual SHA-256, task-id match, status enum, artifacts existence), plus idle governance (sustained idleness stands workers down and throttles the leader; one sentence revives everything).Reference implementation and full docs: https://github.com/Great-us/relay-up
How it was tested
plugins/relay-up/tests/—python tests/test_relay_hook_chat.py→ 20 OK;python tests/test_chat_send.py→ 5 OK (claim/inject/merge/dedupe/quarantine/gating/fail-open/multi-project marker routing; chat_send CLI).{"decision":"block"},UserPromptSubmitadditionalContextdelivery, the 3-continuations-per-turn cap, cron self-wake, and one full end-to-end loop (bootstrap → dispatch → execution → report → acceptance → review chat).Version and marketplace registration
relay-upv0.1.0, categorydeveloper-tools, registered in the rootmarketplace.jsonwith name/version/description identical to the manifest.Dependencies, network, permissions, and side effects
python(3.8+, stdlib only) onPATH.relay/tree,.zcode/skills/relay-next/, and two tool files (tools/chat_send.py,tools/verify_report.py) — all created by/relay-upand declared in the plugin README.relay/runtime/(session registry, chain log, chain state)./relay-up downand shutdown cards remove them.Checklist
.zcode-plugin/plugin.jsonpresent; name/version/description match the rootmarketplace.jsonREADME.md/README_CN.mdwith side effects documentedpython scripts/validate.py→ OK: 27 plugin(s) validatedpython scripts/build_dist.py→ exit 0 (relay-up 0.1.0 zip, 34,740 bytes)git diff --checkclean