walkeros-understanding-destinations

walkeros-understanding-destinations is a skill for Claude Code from elbwalker/walkerOS. It costs 40 tokens per session (3,390 once invoked), scanned A, original, MIT.

A guide to walkerOS destinations, which receive processed events and send them to services such as analytics tools, marketing systems, or data warehouses. It explains the destination's required interface and lifecycle.

In plain words
What is it for?
Use it to build or maintain destinations, configure their settings, authenticate services, send individual or batches of events, and clean up connections when the application stops.
Why use it?
It clarifies how to connect event data to an external service without mixing up data collection and data delivery. It also shows how to test external calls without contacting the real service.

Skill for Claude Code

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

Not installable on its own: it reads a path above its own folder, which only exists inside its repository. The line is import { examples } from '../dev';.

Part of the walkeros plugin — 24 skills shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add elbwalker/walkerOS
Claude Code
/plugin install walkeros

Made for: Claude Code.

Or install walkeros, the plugin that ships this one along with the rest of its 24 skills.

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 walkeros-understanding-destinations

README.md
[![agentmods](https://agentmods.dev/badge/skills/elbwalker/walkeros/walkeros-understanding-destinations.svg)](https://agentmods.dev/skills/elbwalker/walkeros/walkeros-understanding-destinations)
Your own site
<a href="https://agentmods.dev/skills/elbwalker/walkeros/walkeros-understanding-destinations"><img src="https://agentmods.dev/badge/skills/elbwalker/walkeros/walkeros-understanding-destinations.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,390 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00040 $0.03390
Opus 5 $0.00020 $0.01695
Sonnet 5 $0.00008 $0.00678
Haiku 4.5 $0.00004 $0.00339

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

Security

Grade A, and why

walkeros-understanding-destinations 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 6d 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.

skills/walkeros-understanding-destinations/SKILL.md · 373 lines

How it starts

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

Understanding walkerOS Destinations

Overview

Destinations receive processed events from the collector and deliver them to third-party tools (analytics, marketing, data warehouses).

Core principle: Destinations transform and deliver. They don't capture or process—that's sources and collector.

Destination Interface

See packages/core/src/types/destination.ts for canonical interface.

Method Purpose Required
init(context) Load scripts, authenticate Optional
push(event, context) Transform and send event Required
pushBatch(batch, context) Batch processing Optional
destroy(context) Cleanup on shutdown Optional
config Settings, mapping, consent Required

destroy?: DestroyFn — Optional cleanup method. Called during command('shutdown'). Use to close DB connections, flush buffers, or release SDK clients. Receives { id, config, env, logger }.

The env Pattern

Destinations use dependency injection via env for external APIs. This enables testing without mocking.

// Destination defines its env type
export interface Env extends DestinationWeb.Env {
  window: {
    gtag: Gtag.Gtag;
    dataLayer: unknown[];
  };
}

// Destination uses env, not globals
async function push(event, context) {
  const { env } = context;
  env.window.gtag('event', mappedName, mappedData);
}

Testing with env

REQUIRED SKILL: See testing-strategy for full testing patterns.

import { mockEnv } from '@walkeros/core';
import { examples } from '../dev';

const calls: Array<{ path: string[]; args: unknown[] }> = [];
const testEnv = mockEnv(examples.env.push, (path, args) => {
  calls.push({ path, args });
});

await destination.push(event, { ...context, env: testEnv });

expect(calls).toContainEqual({
  path: ['window', 'gtag'],
  args: ['event', 'purchase', expect.any(Object)],
});

Read the full file on GitHub · 373 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. 6d ago First seen · 373 lines · 40 tokens per session scan A d1da70095a59

Subscribe to this mod's changes

walkeros-understanding-destinations is a skill published in the GitHub repository elbwalker/walkerOS (343 stars, last pushed 3d ago), licensed MIT. It adds 40 tokens to every session and 3,390 once invoked, about $0.0002 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