neplexlabs/commandkit

commandkit-queue

Build queue-based messaging workflows with @commandkit/queue. Use for driver bootstrap, topic/payload contracts, send/receive patterns, and resilient consumer handling.

First seen Apr 5, 2026

Installation

$ npx skills add neplexlabs/commandkit --skill commandkit-queue

Also in this package

Other skills from neplexlabs/commandkit · top by installs.

npx skills add neplexlabs/commandkit

Browse all from neplexlabs/commandkit

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 166
License LICENSE
Default branch main
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,834 B
  • docs README.md 497 B
  • docs SUMMARY.md 192 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 31 installs

SKILL.md

CommandKit Queue Plugin

Activation guidance

Use for decoupled async communication between bot components/services.

Required filesystem expectations

  • queue bootstrap module (for example src/bootstrap/queue.ts)
  • producers/consumers in command/event/service layers
  • shared payload type module for typed contracts

Execution workflow

  1. Register queue driver once at startup.
  2. Define topic naming and payload contracts.
  3. Implement send/receive handlers with error strategy.
  4. Ensure idempotent consumption behavior.

Guardrails

  • Avoid unstructured payloads.
  • Avoid side-effect-heavy consumers without retry/idempotency

planning.

Reference index

Name Description
references/00-filesystem-structure.md Queue bootstrap placement and typed contract organization.
references/01-driver-setup.md Driver setup with Redis PubSub integration.
references/02-send-and-receive.md Publish/subscribe usage patterns.
references/03-typed-events.md Typed message contract approach.

Tool index

Name Description
N/A This skill currently has no helper tool scripts.