smithery/masharratt

cfn-memory-persistence-redis

Redis-based agent coordination with pub/sub and waiting mode

Installation

$ npx skills add smithery/masharratt --skill cfn-redis-coordination

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/masharratt · top by installs.

npx skills add smithery/masharratt

Browse all from smithery/masharratt

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 Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,102 B
  • docs SUMMARY.md 90 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Redis Coordination Submodule

Parent Skill: cfn-memory-persistence Purpose: Redis-based coordination for agent synchronization and waiting mode

Components

  • bash-wrappers/ - Bash wrapper scripts for Redis operations
  • data/ - SQLite database for local persistence
  • dist/ - Compiled TypeScript
  • coverage/ - Test coverage reports

Key Operations

  • Agent waiting mode (BLPOP-based)
  • Confidence score collection
  • Context storage and retrieval
  • Swarm coordination signals
  • Agent completion tracking

Usage

# Invoke waiting mode
$HOME/.claude/skills/cfn-memory-persistence/lib/redis/bash-wrappers/invoke-waiting-mode.sh \
  --task-id "task-123" \
  --agent-id "agent-456" \
  --action wait

# Store context
$HOME/.claude/skills/cfn-memory-persistence/lib/redis/bash-wrappers/store-context.sh \
  --task-id "task-123" \
  --context "implementation context"