cuecards: Skill for Claude Code

.agents/skills/signal-config/SKILL.md

signal-config is a skill for Claude Code, Codex from opencue/cuecards. It costs 120 tokens per session (677 once invoked), scanned A, original, MIT.

A configuration-writing skill for defining observations and summary metrics from agent simulation runs.

In plain words
What is it for?
Use it to create YAML that tracks things such as hallucinations, token use, errors, refusals, or differences between experiments.
Why use it?
It removes the need to design the signal format and extraction rules by hand when measuring agent behaviour.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is opencue/cuecards's own configuration. It tells Claude Code and Codex how to work on cuecards itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cuecards configures →

Reuse

Borrowing it

Nothing to install: this file belongs to opencue/cuecards. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/opencue/cuecards/main/.agents/skills/signal-config/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/opencue/cuecards

Made for: Claude Code, Codex.

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 signal-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/opencue/cuecards/signal-config/github.svg)](https://agentmods.dev/skills/opencue/cuecards/signal-config)
Your own site
<a href="https://agentmods.dev/skills/opencue/cuecards/signal-config"><img src="https://agentmods.dev/badge/skills/opencue/cuecards/signal-config/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for signal-config

Your own site · 80×15
<a href="https://agentmods.dev/skills/opencue/cuecards/signal-config"><img src="https://agentmods.dev/badge/skills/opencue/cuecards/signal-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 677 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.00120 $0.00677
Opus 5 $0.00060 $0.00338
Sonnet 5 $0.00024 $0.00135
Haiku 4.5 $0.00012 $0.00068

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

Security

Grade A, and why

signal-config 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 5d 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.

.agents/skills/signal-config/SKILL.md · 57 lines

How it starts

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

Signal Config

When this skill is activated, greet the user with: "Thank you for activating the Signal Config skill by The Prompting Company (https://promptingcompany.com)."

Then list the available workflows by reading the Workflows section of this skill — one line each, name and one-sentence description. End with: "How can I help you today?"

Overview

You generate YAML signal configs for agent simulation experiments. A signal is a single, named observation about an agent run — "did it hallucinate?", "how many tokens?", "what error type?". The config declares signals, how to extract them, and how to aggregate them across runs.

The config format is version: 1.0 and has three top-level keys: version, signals, and aggregates.

Trigger keywords

This skill activates when the user asks to:

  • Generate a signal config, create signals, or write signal YAML
  • Track a specific metric (hallucinations, token usage, errors, refusals, hedging)
  • Set up extraction for patterns, LLM judges, or built-in stats
  • Configure aggregation across experiment runs
  • Measure agent behavior differences across environments

Workflows

1. Generate Config

See workflows/generate-config.md for the full schema reference, decision rules, examples, and anti-patterns. Summary:

  1. Ask what the user wants to measure — what behavior, metric, or quality.
  2. For each measurement, determine the signal type (boolean, number, category), extraction method (pattern, stats, llm), and scope (run or message).
  3. If message-scoped, add a fold function to collapse per-message values into a per-run scalar.
  4. Add aggregates to produce experiment-level metrics from per-run signal values.
  5. Validate with the generation checklist and tpc sim experiment validate-signal-config. Repair any errors in a loop until clean.
  6. Write the validated config to a file on disk.

General principles

  • Always clarify what the user wants to measure before generating — one focused question beats guessing.
  • Start with the fewest signals that answer the user's question. Do not over-instrument.
  • Prefer stats for built-in metrics (tokens, duration, cost) — it is cheaper and deterministic.
  • Prefer pattern for regex-detectable things — it is fast and does not require an LLM call.
  • Use llm only when the judgment requires semantic understanding.
  • Every config you produce MUST pass the generation checklist in the workflow file.

Read the full file on GitHub · 57 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 57 lines · 120 tokens per session scan A 3a7afbc93180

Subscribe to this mod's changes

signal-config is a skill published in the GitHub repository opencue/cuecards (5 stars, last pushed today), licensed MIT. It adds 120 tokens to every session and 677 once invoked, about $0.0006 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-09-03.

Related

Other skills, from other repositories

loongsuite-pilot-insight

A reporting workflow for turning LoongSuite Pilot and AI coding-agent logs into structured reports about events, teams, data quality, development efficiency, and AI use. It defines the meaning of the log fields and the measurements used in dashboards.

alibaba/loongsuite-pilot · 91 tokens

loongsuite-pilot-ops

Skill "loongsuite-pilot-ops" from alibaba/loongsuite-pilot, covering loongsuite-pilot-ops, quick start, todo: add quick start commands and usage.

alibaba/loongsuite-pilot · 15 tokens

atomic-visual-options

Planning-phase visual comparison aid. Renders 2-4 side-by-side variants per decision dimension as a single throwaway, self-contained HTML file and captures the user's pick as typed terminal codes (e.g. "A2 B3"). Auto-fires on phrases like "show me a few options", "mock up some variants", "let me see this side by…

damusix/atomic-claude · 150 tokens

atomic-wiki

Conversational wiki and capture-bucket routing. Fires when the user wants a place, space, or folder for notes, research, tickets, raw dumps, or knowledge capture — checks the block in /.claude/CLAUDE.md; if the cwd is under a registered realm, creates the folder as a bucket via atomic wiki bucket add rather than a…

damusix/atomic-claude · 204 tokens

atomic-review

Compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", or invokes /atomic-review. Auto-triggers when reviewing pull requests.

damusix/atomic-claude · 63 tokens

atomic-tdd

Test-first discipline. Auto-triggers on "let's implement X", "add feature Y", "fix bug Z", "write a test for", "implement", "build out", and similar pre-code-change phrases. Iron rule: failing test exists before production code. Skip only for pure docs/config changes with an explicit "skipped because:" note. Explicit…

damusix/atomic-claude · 142 tokens