signals-migration-6-to-7

signals-migration-6-to-7 is a skill for Claude Code, Codex from rodydavis/signals.dart. It costs 33 tokens per session (1,351 once invoked), scanned A, original, Apache-2.0.

A migration guide for updating Dart applications and packages from signals.dart 6.x to 7.x. Migration means changing existing code to work with a newer version of a library.

In plain words
What is it for?
Use it when upgrading signals.dart, including signal creators, asynchronous signals, collection options, `SignalBuilder`, and `SignalsMixin` replacements.
Why use it?
It explains breaking changes such as replacing scattered options with unified option classes and updating deprecated APIs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when upgrading signals.dart, including signal creators, asynchronous signals, collection options, SignalBuilder, and SignalsMixin replacements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rodydavis/signals.dart/signals-migration-6-to-7
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 rodydavis/signals.dart --skill signals-migration-6-to-7
Clone the repo
git clone --depth 1 https://github.com/rodydavis/signals.dart

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 signals-migration-6-to-7

README.md
[![agentmods](https://agentmods.dev/badge/skills/rodydavis/signals.dart/signals-migration-6-to-7/github.svg)](https://agentmods.dev/skills/rodydavis/signals.dart/signals-migration-6-to-7)
Your own site
<a href="https://agentmods.dev/skills/rodydavis/signals.dart/signals-migration-6-to-7"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/signals-migration-6-to-7/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 signals-migration-6-to-7

Your own site · 80×15
<a href="https://agentmods.dev/skills/rodydavis/signals.dart/signals-migration-6-to-7"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/signals-migration-6-to-7.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,351 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00033 $0.01351
Opus 5 $0.00016 $0.00675
Sonnet 5 $0.00007 $0.00270
Haiku 4.5 $0.00003 $0.00135

Measured 13d ago against content hash 23a0e6396364, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

signals-migration-6-to-7 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 13d 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/signals-migration-6-to-7/SKILL.md · 136 lines

How it starts

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

Migrating from signals.dart v6 to v7

This guide provides comprehensive instructions for migrating applications and packages using signals.dart from version 6.x to 7.0.0.

Related File Description
signal_options.md Guide to migrating scattered parameters (e.g. autoDispose, debugLabel) of signal and computed creators to the new unified options classes.
async_options.md Guidelines for migrating asynchronous signal creators (futureSignal, streamSignal) to use AsyncSignalOptions.
collection_options.md Instructions on migrating collection-based signal creators to strongly typed collection options classes.
builder_migration.md Migration path for SignalBuilder constructor to use the required named builder parameter.
mixin_migration.md Safe refactoring guidelines for replacing the deprecated SignalsMixin with SignalWidget or localized builders.

1. Unified Options Classes (Named Parameter Pattern)

In v6, signals, computed, effects, and async signals accepted individual parameters like autoDispose, debugLabel, lazy, etc. In v7, all parameters have been unified under a single, cohesive options class parameter.

A. General Signals

  • Before (v6):
    final count = signal(0, autoDispose: true, debugLabel: 'counter');
    
  • After (v7):
    final count = signal(0, options: SignalOptions(autoDispose: true, name: 'counter'));
    

B. Computed Signals

  • Before (v6):
    final double = computed(() => count.value * 2, autoDispose: true, debugLabel: 'double');
    
  • After (v7):
    final double = computed(() => count.value * 2, options: ComputedOptions(autoDispose: true, name: 'double'));
    

C. Collections Signals (listSignal, setSignal, mapSignal, etc.)

All collections now accept unified options objects corresponding to their types (e.g. ListSignalOptions, SetSignalOptions, MapSignalOptions, IterableSignalOptions, QueueSignalOptions).

  • Before (v6):
    final list = listSignal([1, 2], autoDispose: true);
    
  • After (v7):
    final list = listSignal([1, 2], options: ListSignalOptions(autoDispose: true));
    

Read the full file on GitHub · 136 lines

Files

What ships with it

8 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. 13d ago First seen · 136 lines · 33 tokens per session scan A 23a0e6396364

Subscribe to this mod's changes

signals-migration-6-to-7 is a skill published in the GitHub repository rodydavis/signals.dart (814 stars, last pushed 3d ago), licensed Apache-2.0. It adds 33 tokens to every session and 1,351 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

building-flutter-apps

Flutter Riverpod app architecture and Windows installer delivery. Use before changing a Riverpod Flutter app/package or its Windows desktop packaging/update pipeline; skip non-Riverpod stacks and pure-Dart work.

sgaabdu4/building-flutter-apps · 45 tokens

at_client_skills-sdk

Use this skill when a developer is building a Dart or Flutter app that depends on atclient or atclientflutter from pub.dev, stores or shares data via the Atsign Protocol, needs onboarding (CRAM new-atsign, atKeys file, keychain, APKAM) or APKAM enrollment, or asks about AtCollection , CItem , Query , sub-collections…

atsign-foundation/at_client_sdk · 232 tokens

migrate-intellij-util

Optimize memory usage, consistency, and performance by migrating standard Java/Kotlin classes to IntelliJ's specialized com.intellij.util implementations.

flutter/flutter-intellij · 31 tokens

android-navigation-3

Install and migrate to Jetpack Navigation 3. Use when implementing Navigation 3 patterns including NavDisplay, NavKey routes, deep links, multiple backstacks, scenes (dialogs, bottom sheets), or migrating from Navigation 2.

HoangNguyen0403/agent-skills-standard · 52 tokens

dart-3-updates

Use when writing switch statements, refactoring if-else chains, creating data classes, choosing records vs classes, destructuring values, or modernizing pre-Dart-3 code.

evanca/flutter-ai-rules · 42 tokens

effective-dart

Use when writing Dart code, reviewing for style, refactoring naming, adding doc comments, structuring imports, or enforcing type annotations.

evanca/flutter-ai-rules · 31 tokens