Localsetup localsetup-agentq-transport

Agent Q bidirectional transport client - file_drop ship/ingest, mail pull/ship (including strict gpg preencrypted), registry validation, queue-pending, archive-prune. Use when shipping or ingesting sealed PRD manifests between agents over shared folders or mail; when editing agent_trust_registry, manifest.schema.json, or agentq CLI.

install
source · Clone the upstream repo
git clone https://github.com/CruxExperts/localsetup
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/CruxExperts/localsetup "$T" && mkdir -p ~/.claude/skills && cp -r "$T/_localsetup/skills/localsetup-agentq-transport" ~/.claude/skills/cruxexperts-localsetup-localsetup-agentq-transport && rm -rf "$T"
manifest: _localsetup/skills/localsetup-agentq-transport/SKILL.md
source content

Agent Q transport

Purpose

Operate the agentq_transport_client CLI and related config so Agent A and Agent B exchange PRDs and artifacts via file_drop (shared directory + ready marker) or mail (policy-gated), with OpenPGP outer blobs and optional strict gpg sign-then-encrypt.

When to use

  • User says "ship PRD to agent", "ingest agentq blob", "file-drop-poll", "mail-pull Agent Q", "strict gpg ship".
  • Editing
    agent_trust_registry.yaml
    ,
    agent_queue.example.yaml
    , or
    manifest.schema.json
    .
  • Setting up same-machine different-repos handoff (see AGENTIC_AGENT_Q_SCENARIOS.md).

Key paths

PathRole
_localsetup/tools/agentq_transport_client/agentq_cli.py
CLI entrypoint
_localsetup/tools/agentq_transport_client/docs/USER_GUIDE.md
Commands and examples
_localsetup/tools/agentq_transport_client/docs/ADMIN_GUIDE.md
Policy, rotation, mail automation
_localsetup/config/agent_trust_registry.example.yaml
Registry template
_localsetup/config/manifest.schema.json
Inner manifest schema

Skills to load with this

  • localsetup-mail-protocol-control – mail adapter backend;
    preencrypted_openpgp_armored
    for ship-mail-strict.
  • localsetup-agentic-prd-batch – batch reads
    in/
    only; version mismatch and structured queue.

Docs

Smoke / verify

From repo root:

python _localsetup/tools/agentq_transport_client/agentq_cli.py --help
python3 -m pytest _localsetup/tools/agentq_transport_client/tests/ -q

Skill directory has no bundled scripts; CLI lives under

tools/agentq_transport_client/
.