npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gonzih/cc-wire

v0.4.1

Published

Single source of truth for Redis channel names, key patterns, and message shapes across the cc-suite (cc-tg, cc-agent, cc-agent-ui)

Readme

@gonzih/cc-wire

Single source of truth for Redis channel names, key patterns, message shapes, and storage runtime across the cc-suite (cc-agent, cc-discord, cc-agent-ui).

v0.3.0+: ships a typed storage runtime — services call createCcWire(redis) and never touch raw Redis or import key builders directly.

Install

npm install @gonzih/cc-wire ioredis

Architecture — Service Ownership

┌──────────────────────────────────────────────────────────────────┐
│  cc-wire  (this package)                                          │
│  Owns: Redis key contracts, type definitions, storage runtime     │
└────────────────────────────┬─────────────────────────────────────┘
                             │ imported by
          ┌──────────────────┼──────────────────┐
          │                  │                  │
          ▼                  ▼                  ▼
┌─────────────────┐  ┌──────────────┐  ┌──────────────────┐
│    cc-discord   │  │   cc-agent   │  │   cc-agent-ui    │
│    v0.2.15      │  │   v0.16.11   │  │   v0.5.34        │
│                 │  │              │  │                  │
│ Owns:           │  │ Owns:        │  │ Reads:           │
│  per-channel    │  │  job runner  │  │  job records     │
│  meta-agent     │  │  50+ MCP     │  │  chat logs       │
│  Claude sessions│  │  tools       │  │  live events     │
│  Discord bridge │  │  crons       │  │  WebSocket       │
│                 │  │  wikis       │  │  streaming       │
│ Workspace:      │  │  learnings   │  │                  │
│  ~/cc-discord-  │  │  swarms      │  │                  │
│  workspace/{ns} │  │              │  │                  │
└─────────────────┘  └──────────────┘  └──────────────────┘

Key principles:

  • No coordinator pattern. Each Discord channel maps to one autonomous meta-agent Claude session. There is no single central coordinator routing everything.
  • cc-agent is a pure job runner. It exposes MCP tools for spawning and managing Claude agents; it does not manage meta-agent lifecycle.
  • gitkb is present in every workspace. Each meta-agent workspace includes git-kb mcp — a persistent, per-workspace knowledge base available to Claude.
  • cc-tg is deprecated. All Telegram coordinator references have been removed. The cc-tg key builders remain exported for migration; they will be removed in a future major version.

Meta-agent message flow

Discord message
  → cc-discord receives via Discord gateway
  → RPUSH cca:discord:meta:{ns}:input
  → MetaAgentManager polls (3 s interval)
  → RPOP from queue
  → ensureWorkspace(~/cc-discord-workspace/{ns}/)
  → git-kb init (gitkb MCP available in workspace)
  → injectMcp (cc-agent MCP tools injected)
  → spawnSession: claude --continue -p "{msg}" in workspace dir
  → Claude uses cc-agent MCP to spawn jobs
  → Claude uses gitkb MCP to read/write KB
  → completion notification → PUBLISH cca:discord:notify:{ns}
  → cc-discord flushes response to Discord channel

Runtime — createCcWire(redis)

Pass an ioredis Redis instance and get back fully-typed storage APIs per service. No raw Redis commands, no key string management.

import { createClient } from "ioredis";
import { createCcWire } from "@gonzih/cc-wire";

const redis = new Redis(process.env.REDIS_URL);
const wire = createCcWire(redis);

// cc-discord: per-namespace session management
await wire.discord.enqueue("simorgh", { id: "...", source: "discord", ... });
const msg = await wire.discord.dequeue("simorgh");                    // ChatMessage | null
await wire.discord.publishOutgoing("simorgh", msg);                   // PUBLISH + log + LTRIM
wire.discord.subscribeOutgoing("simorgh", (msg) => console.log(msg)); // live stream
await wire.discord.setStatus("simorgh", { isTyping: true, ... });
const status = await wire.discord.getStatus("simorgh");               // MetaAgentStatus | null
await wire.discord.writeChatLog("simorgh", msg);
const history = await wire.discord.getChatLog("simorgh", 50);         // chronological
await wire.discord.notify("simorgh", { text: "job done" });
const notif = await wire.discord.pollNotify("simorgh");               // NotificationPayload | null
await wire.discord.registerChannel("1234567890", "simorgh", repoUrl);
const chan = await wire.discord.getChannel("1234567890");
const channels = await wire.discord.listChannels();

// cc-agent: job queue
await wire.jobs.enqueue({ id: "job-001", repoUrl: "...", task: "..." });
const job = await wire.jobs.getStatus("job-001");
await wire.jobs.publishDone("job-001", { status: "done", score: 1.0 });

// shared master token
await wire.token.setMaster("my-token");
const token = await wire.token.getMaster();

// raw redis escape hatch (migration only)
const raw = wire._redis;

Key builders (v0.2.x compat, use runtime in new code)

import {
  // cc-discord service keys
  discordMetaInputKey,
  discordMetaStatusKey,
  discordChatOutgoing,
  discordChatLog,
  discordChatIncoming,
  discordNotify,
  // Service ownership constants
  CC_DISCORD_WORKSPACE_ROOT,
  // Job keys (cc-agent)
  jobKey,
  jobIndexKey,
  // Shared utility
  notifyPublishCommand,
  TTL,
  CAP,
  type ChatMessage,
  type SpawnParams,
} from "@gonzih/cc-wire";

// cc-discord — per-namespace session keys
const inputQueue   = discordMetaInputKey("simorgh-mobile-app");
// => "cca:discord:meta:simorgh-mobile-app:input"
const statusKey    = discordMetaStatusKey("simorgh-mobile-app");
// => "cca:discord:meta:simorgh-mobile-app:status"
const notifyChan   = discordNotify("simorgh-mobile-app");
// => "cca:discord:notify:simorgh-mobile-app"

// Workspace paths
const discordWs = `${process.env.HOME}/${CC_DISCORD_WORKSPACE_ROOT}/simorgh-mobile-app`;

// ChatMessage — with service field
const msg: ChatMessage = {
  id: crypto.randomUUID(),
  source: "discord",
  service: "cc-discord",
  role: "user",
  content: "deploy the app",
  namespace: "simorgh-mobile-app",
  timestamp: new Date().toISOString(),
};

Key Reference

cc-discord Keys

cc-discord owns all namespace-scoped Claude sessions. All keys live under cca:discord:.

| Builder | Pattern | Redis type | Owner | Description | |---|---|---|---|---| | discordMetaInputKey(ns) | cca:discord:meta:{ns}:input | LIST | cc-discord | Input queue for namespace session (RPUSH/RPOP). | | discordMetaStatusKey(ns) | cca:discord:meta:{ns}:status | STRING (JSON) | cc-discord | Live session status (typing, tool, etc.), TTL 7d. | | discordChatOutgoing(ns) | cca:discord:chat:outgoing:{ns} | CHANNEL | cc-discord | Outgoing messages to UI (pub/sub). | | discordChatLog(ns) | cca:discord:chat:log:{ns} | LIST | cc-discord | Chat history, capped at 500, LIFO. | | discordChatIncoming(ns) | cca:discord:chat:incoming:{ns} | CHANNEL | cc-discord | Incoming messages from UI/Discord (pub/sub). | | discordNotify(ns) | cca:discord:notify:{ns} | CHANNEL + LIST | cc-discord | Job-completion notifications (PUBLISH + RPOP poll). | | (runtime) channelHashKey(id) | cca:discord:channel:{id} | HASH | cc-discord | Per-channel record: namespace + repoUrl. | | (runtime) CHANNELS_SET | cca:discord:channels:index | SET | cc-discord | Registry of all registered channel IDs. |

cc-agent Keys (jobs only)

cc-agent is a pure job runner. It no longer manages meta-agent lifecycle.

| Builder | Pattern | Redis type | Description | |---|---|---|---| | jobKey(id) | cca:job:{id} | STRING (JSON) | Full JobRecord, TTL 7d. | | jobOutputKey(id) | cca:job:{id}:output | LIST | Log lines (RPUSH/LRANGE), TTL 7d. | | jobSignalKey(id) | cca:job:{id}:signal | STRING | Control signal: cancel | wake. | | jobInputKey(id) | cca:job:{id}:input | LIST | In-flight messages (RPUSH/RPOP). | | jobOutputLiveChannel(id) | cca:job:{id}:output:live | CHANNEL | Live output pub/sub. | | jobDoneChannel(id) | cca:job:done:{id} | CHANNEL | Job completion pub/sub. | | jobDoneQueueKey(id) | cca:job:done:{id}:queue | LIST | LPUSH/BLPOP queue for wait_for_job, TTL 7d. | | jobIndexKey(ns) | cca:jobs:{ns} | SET | Job IDs per namespace. | | EVENT_STREAM | cca:event-stream | STREAM | Job status events (XADD/XREADGROUP). | | COORDINATOR_GROUP | coordinator | — | Consumer group name. |

Shared / Utility Keys

| Builder / Constant | Pattern | Redis type | Description | |---|---|---|---| | notifyChannel(ns) | cca:notify:{ns} | CHANNEL | Legacy coordinator notify (use service-scoped builders for new code). | | notifyListKey(ns) | cca:notify:{ns} | LIST | Same key — delivery queue. | | notifyLogKey(ns) | cca:notify-log:{ns} | LIST | Notification audit log, capped at 100, LIFO. | | notifyPublishCommand(ns, payload) | — | — | Returns a redis-cli PUBLISH shell command string. Useful for cron prompts. | | planKey(id) | cca:plan:{id} | STRING (JSON) | PlanRecord, TTL 30d. | | coordinatorPlanKey(jobId) | cca:coordinator:plan:{jobId} | STRING | Coordinator plan JSON. | | profileKey(name) | cca:profile:{name} | STRING (JSON) | Saved Profile. | | PROFILES_INDEX | cca:profiles:index | SET | Profile names. | | cronsKey(ns) | cca:crons:{ns} | STRING (JSON array) | Cron definitions. | | deletedCronsKey(ns) | cca:deleted-crons:{ns} | SET | Tombstone IDs, TTL 7d. | | learningsKey(ns) | cca:learnings:{ns} | LIST | Learnings (LPUSH, capped at 50), TTL 90d, LIFO. | | wikiKey(repoSlug) | cca:wiki:{repoSlug} | HASH | Wiki pages. Field = page name, value = markdown. | | wikiUpdatedKey(repoSlug) | cca:wiki:{repoSlug}:updated | STRING | ISO timestamp of last wiki update. | | swarmKey(id) | cca:swarm:{id} | STRING (JSON) | SwarmRecord. | | SWARM_REQUESTS_KEY | cca:swarm:requests | LIST | Swarm task request queue (LPUSH). | | CC_AGENT_VERSION_KEY | cca:meta:cc-agent:version | STRING | Running cc-agent version. | | TOKEN_INDEX_KEY | cca:token:index | STRING | Token rotation index. |

Service Ownership Constants

CC_DISCORD_WORKSPACE_ROOT  // "cc-discord-workspace"
// Usage: `${HOME}/${CC_DISCORD_WORKSPACE_ROOT}/{namespace}`

Constants

TTL.JOB_SECONDS            // 604800   (7 days)
TTL.PLAN_SECONDS           // 2592000  (30 days)
TTL.LEARNINGS_SECONDS      // 7776000  (90 days)

CAP.NOTIFY_LOG             // 100
CAP.CHAT_LOG               // 500
CAP.LEARNINGS              // 50
CAP.EVENT_STREAM           // 500

TIMING.COORDINATOR_POLL_MS         // 2000
TIMING.DEPENDENCY_TICK_MS          // 3000
TIMING.INPUT_POLL_INTERVAL_MS      // 3000
TIMING.META_AGENT_FLUSH_DELAY_MS   // 1500

Notification Routing

cc-discord subscribes to per-namespace notify channels for job-completion notifications:

| Service | Notify key builder | Pattern | |---|---|---| | cc-discord | discordNotify(ns) | cca:discord:notify:{ns} |

Dual-purpose pattern: cc-agent PUBLISHes on the channel (pub/sub) and also RPUSHes to the same key as a list (poll fallback). Redis pub/sub and list namespaces are independent so this is safe.

Setting spawning_namespace on spawn calls

Any caller spawning jobs via cc-agent must set spawning_namespace on SpawnParams so the coordinator routes completion notifications to the right service:

import type { SpawnParams } from "@gonzih/cc-wire";

const params: SpawnParams = {
  repoUrl: "https://github.com/org/repo",
  task: "fix the build",
  spawning_namespace: "simorgh-mobile-app",  // cc-agent uses this to route the notify
};

Migration from v0.1.x / v0.2.x

cc-tg deprecation

cc-tg (Telegram coordinator) is deprecated as of 2026. The wire.tg.* runtime methods and tgChatOutgoing() / tgChatIncoming() / tgNotify() key builders remain exported for backward compatibility but will be removed in v1.0. Do not use them in new code.

Old cc-agent meta-agent keys

If you were using the old cc-agent-owned meta-agent keys, replace them:

| Old (deprecated) | New | Owner | |---|---|---| | metaInputKey(ns)cca:meta:{ns}:input | discordMetaInputKey(ns)cca:discord:meta:{ns}:input | cc-discord | | metaAgentStatusKey(ns)cca:meta-agent:status:{ns} | discordMetaStatusKey(ns)cca:discord:meta:{ns}:status | cc-discord | | META_AGENTS_INDEXcca:meta:agents:index | — (cc-discord maintains its own registry) | cc-discord | | chatLogKey(ns)cca:chat:log:{ns} | discordChatLog(ns)cca:discord:chat:log:{ns} | cc-discord | | chatOutgoingChannel(ns)cca:chat:outgoing:{ns} | discordChatOutgoing(ns)cca:discord:chat:outgoing:{ns} | cc-discord | | chatIncomingChannel(ns)cca:chat:incoming:{ns} | discordChatIncoming(ns)cca:discord:chat:incoming:{ns} | cc-discord | | notifyChannel(ns) (Discord use) | discordNotify(ns) | cc-discord | | notifyChannel(ns) / notifyListKey(ns) (tg use) | tgNotify() (deprecated — cc-tg removed) | — |

The deprecated exports remain for migration; they will be removed in v1.0.

Development

npm run build          # compile ESM + CJS
npm test               # run all tests (channels: node --test; runtime: vitest)
npm run test:channels  # key builder tests only (node --test + tsx)
npm run test:runtime   # runtime tests only (vitest + ioredis-mock)

License

MIT