triad-channel

triad-channel is a skill for Claude Code from justhamade/triadjs. It costs 66 tokens per session (1,857 once invoked), scanned A, original, MIT.

A TriadJS feature for defining WebSocket channels, which keep an ongoing two-way connection between a browser or other client and a server.

In plain words
What is it for?
Building real-time chat rooms and similar browser features, validating connection data and messages, handling connections, sending messages, broadcasting to clients, and generating AsyncAPI documentation.
Why use it?
It provides one structured place to describe connections, messages, authentication, and per-connection data instead of wiring these pieces separately.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the triadjs plugin — 10 skills, 8 commands shipped together

Good fit Building real-time chat rooms and similar browser features, validating connection data and messages, handling connections, sending messages, broadcasting to clients, and generating AsyncAPI documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/justhamade/triadjs/triad-channel
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add justhamade/triadjs --skill triad-channel
Clone the repo
git clone --depth 1 https://github.com/justhamade/triadjs

Made for: Claude Code.

Or install triadjs, the plugin that ships this one along with the rest of its 10 skills, 8 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for triad-channel

README.md
[![agentmods](https://agentmods.dev/badge/skills/justhamade/triadjs/triad-channel.svg)](https://agentmods.dev/skills/justhamade/triadjs/triad-channel)
Your own site
<a href="https://agentmods.dev/skills/justhamade/triadjs/triad-channel"><img src="https://agentmods.dev/badge/skills/justhamade/triadjs/triad-channel.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,857 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.01857
Opus 5 $0.00033 $0.00928
Sonnet 5 $0.00013 $0.00371
Haiku 4.5 $0.00007 $0.00186

Measured 8d ago against content hash c2e144338877, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

triad-channel scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/triad-channel/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Channels (WebSockets)

Channels are the real-time counterpart to endpoints. Same schema DSL, same behavior builder, same router. Currently supported by the Fastify adapter only. The AsyncAPI generator (@triadjs/asyncapi) produces asyncapi.yaml alongside openapi.yaml when the router has channels.

channel() signature

import { channel, t } from '@triadjs/core';

interface ChatRoomState {
  userId: string;
  userName: string;
  roomId: string;
}

export const chatRoom = channel({
  name: 'chatRoom',
  path: '/ws/rooms/:roomId',
  summary: 'Real-time chat room',
  description: 'Bidirectional chat for a room',
  tags: ['Chat'],

  // Phantom witness for typed ctx.state — value is ignored, type is used
  state: {} as ChatRoomState,

  connection: {
    params:  { roomId: t.string().format('uuid') },
    headers: {
      'x-user-id':   t.string().format('uuid'),
      'x-user-name': t.string().minLength(1),
    },
    // query: optional, same shape
  },

  clientMessages: {
    sendMessage: { schema: SendMessagePayload, description: 'Post a message' },
    typing:      { schema: TypingPayload,      description: 'Typing state' },
  },

  serverMessages: {
    message:  { schema: ChatMessage,     description: 'New message' },
    typing:   { schema: TypingIndicator, description: 'Typing indicator' },
    presence: { schema: UserPresence,    description: 'Join/leave' },
    error:    { schema: ChannelError,    description: 'Error' },
  },

  onConnect: async (ctx) => {
    if (!isValidRoom(ctx.params.roomId)) {
      return ctx.reject(404, 'Room not found');
    }
    ctx.state.userId   = ctx.headers['x-user-id'];
    ctx.state.userName = ctx.headers['x-user-name'];
    ctx.state.roomId   = ctx.params.roomId;

    ctx.broadcast.presence({
      userId:   ctx.state.userId,
      userName: ctx.state.userName,
      action:   'joined',
    });
  },

  onDisconnect: async (ctx) => {
    if (ctx.state.userId) {
      ctx.broadcast.presence({ /* ... */ action: 'left' });
    }
  },

  handlers: {
    // One handler per clientMessage. Missing or extra keys = compile error.
    sendMessage: async (ctx, data) => {
      const message = await ctx.services.messageStore.create({ /* ... */ });
      ctx.broadcast.message(message);          // to everyone including sender
    },
    typing: async (ctx, data) => {
      ctx.broadcastOthers.typing({ /* ... */ }); // to everyone EXCEPT sender
    },
  },

  behaviors: [ /* channel behavior scenarios */ ],
});

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 204 lines · 66 tokens per session scan A c2e144338877

Subscribe to this mod's changes

triad-channel is a skill published in the GitHub repository justhamade/triadjs (23 stars, last pushed 4mo ago), licensed MIT. It adds 66 tokens to every session and 1,857 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

adapter-express

Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.

trpc/trpc · 67 tokens

trpc-router

Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.

trpc/trpc · 59 tokens

stripe-projects

Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.

e2b-dev/E2B · 51 tokens

chat-sdk

Build multi-platform chat bots with Chat SDK (chat npm package). Use when developers want to (1) Build a Slack, Teams, Google Chat, Discord, Telegram, GitHub, Linear, or WhatsApp bot, (2) Use Chat SDK to handle mentions, direct messages, subscribed threads, reactions, slash commands, cards, modals, files, or AI…

vercel-labs/open-agents · 191 tokens

nestjs-expert

Creates and configures NestJS modules, controllers, services, DTOs, guards, and interceptors for enterprise-grade TypeScript backend applications. Use when building NestJS REST APIs or GraphQL services, implementing dependency injection, scaffolding modular architecture, adding JWT/Passport authentication, integrating…

Jeffallan/claude-skills · 107 tokens

fastify-best-practices

Guides development of Fastify Node.js backend servers and REST APIs using TypeScript or JavaScript. Use when building, configuring, or debugging a Fastify application — including defining routes, implementing plugins, setting up JSON Schema validation, handling errors, optimising performance, managing authentication…

mcollina/skills · 137 tokens