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.
npx skills add rodydavis/signals.dart --skill signals-hooksgit clone --depth 1 https://github.com/rodydavis/signals.dartWrote 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.
[](https://agentmods.dev/skills/rodydavis/signals.dart/signals-hooks)<a href="https://agentmods.dev/skills/rodydavis/signals.dart/signals-hooks"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/signals-hooks/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.
<a href="https://agentmods.dev/skills/rodydavis/signals.dart/signals-hooks"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/signals-hooks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00014 | $0.02016 |
| Opus 5 | $0.00007 | $0.01008 |
| Sonnet 5 | $0.00003 | $0.00403 |
| Haiku 4.5 | $0.00001 | $0.00202 |
Grade A, and why
signals-hooks 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reactive State Hooks (signals_hooks)
This skill covers orchestrating reactive state signals within flutter_hooks codebases utilizing the signals_hooks package.
🚀 Getting Started
import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
import 'package:signals_hooks/signals_hooks.dart';
class ExampleWidget extends HookWidget {
const ExampleWidget({super.key});
@override
Widget build(BuildContext context) {
// 1. Create a reactive signal managed by the widget's hook lifecycle
final count = useSignal(0);
// 2. Derive a lazy, memoized computed value
final doubleCount = useComputed(() => count.value * 2);
// 3. Register reactive side effects automatically bound to layout phases
useSignalEffect(() {
debugPrint('count changed: $count, double: $doubleCount');
});
return Scaffold(
body: Center(
child: Text('Count: $count (Double: $doubleCount)'),
),
floatingActionButton: FloatingActionButton(
onPressed: () => count.value++,
child: const Icon(Icons.add),
),
);
}
}
[!TIP] All signals, derived computed states, and side effects created inside standard
HookWidgetelements using theuse...methods automatically teardown and dispose when the widget unmounts. This completely eliminates memory leaks or manual resource disposal.
📊 Comprehensive Hooks Reference Directory
The following table summarizes all available reactive hooks in the signals_hooks package. Click on any hook's name to view its detailed documentation, signature, best practices, and code examples.
| Hook | Return Type | Description | Lifecycle / Teardown Behavior |
|---|---|---|---|
| useSignal | Signal<T> |
Creates a mutable reactive signal managed by the hook lifecycle. | Disposes the signal on widget unmount. |
| useComputed | Computed<T> |
Creates a derived, cached read-only computed signal. | Disposes the computed signal on widget unmount. |
| useSignalEffect | void |
Registers a reactive side effect bound to the widget mount lifecycle. | Cancels the effect subscription on widget unmount. |
| useExistingSignal | Signal<T> |
Binds an external signal to rebuild when it mutates. | Detaches subscription on unmount (does not dispose signal). |
| useSignalValue | T |
Directly reads and subscribes to the value of an external signal. | Detaches subscription on unmount (does not dispose signal). |
| useLazySignal | Signal<T> |
Creates a new lazy Signal initialized late, managed by hook state. | Disposes the lazy signal on widget unmount. |
| useLinkedSignal | LinkedSignal<T> |
Creates a new LinkedSignal that resets its value when its source changes. | Disposes the linked signal on widget unmount. |
| useFutureSignal | FutureSignal<T> |
Creates a reactive future signal with auto-disposal and race protection. | Disposes the future signal on widget unmount. |
| useStreamSignal | StreamSignal<T> |
Creates a reactive stream signal with key-based resubscription. | Cancels stream subscription and disposes signal on unmount. |
| useAsyncSignal | AsyncSignal<T> |
Wraps an asynchronous task state inside a manageable AsyncSignal. | Disposes the async signal on widget unmount. |
| useAsyncComputed | AsyncSignal<T> |
Creates an async computed signal re-evaluated on dependency change. | Disposes the async signal on widget unmount. |
| useValueNotifierToSignal | Signal<T> |
Bridges a standard Flutter ValueNotifier to a mutable reactive Signal. | Detaches subscription on unmount (does not dispose). |
| useValueListenableToSignal | ReadonlySignal<T> |
Bridges a standard Flutter ValueListenable to a read-only Signal. | Detaches subscription on unmount (does not dispose). |
| useListSignal | ListSignal<T> |
Creates a reactive list with deep item-level mutation tracking. | Disposes the list signal on widget unmount. |
| useSetSignal | SetSignal<T> |
Creates a reactive set with deep element-level mutation tracking. | Disposes the set signal on widget unmount. |
| useMapSignal | MapSignal<K, V> |
Creates a reactive map with deep key-value mutation tracking. | Disposes the map signal on widget unmount. |
| useIterableSignal | IterableSignal<T> |
Creates a reactive iterable with element-level mutation tracking. | Disposes the iterable signal on widget unmount. |
| useTrackedSignal | TrackedSignal<T> |
Creates a tracked signal remembering its historical value state. | Disposes the tracked signal on widget unmount. |
| useQueueSignal | QueueSignal<T> |
Creates a reactive queue for FIFO collection management. | Disposes the queue signal on widget unmount. |
| useChangeStackSignal | ChangeStackSignal<T> |
Creates a change-stack signal for robust undo/redo history tracking. | Disposes the change-stack signal on widget unmount. |
What ships with it
43 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.
- CONTEXT.md 758 B
- hooks/CONTEXT.md 651 B
- hooks/use-async-computed.md 481 B
- hooks/use-async-signal.md 423 B
- hooks/use-change-stack-signal.md 543 B
- hooks/use-computed.md 400 B
- hooks/use-existing-signal.md 417 B
- hooks/use-future-signal.md 577 B
- hooks/use-iterable-signal.md 386 B
- hooks/use-lazy-signal.md 386 B
- hooks/use-linked-signal.md 511 B
- hooks/use-list-signal.md 441 B
- hooks/use-map-signal.md 368 B
- hooks/use-queue-signal.md 366 B
- hooks/use-set-signal.md 356 B
- hooks/use-signal-effect.md 490 B
- hooks/use-signal-value.md 403 B
- hooks/use-signal.md 424 B
- hooks/use-stream-signal.md 541 B
- hooks/use-tracked-signal.md 480 B
- hooks/use-value-listenable-to-signal.md 523 B
- hooks/use-value-notifier-to-signal.md 514 B
- hooks/useAsyncComputed.md 481 B
- hooks/useAsyncSignal.md 423 B
- hooks/useChangeStackSignal.md 543 B
- hooks/useComputed.md 400 B
- hooks/useConnect.md 1.4 KB
- hooks/useExistingSignal.md 417 B
- hooks/useFutureSignal.md 577 B
- hooks/useIterableSignal.md 386 B
- hooks/useLazySignal.md 386 B
- hooks/useLinkedSignal.md 511 B
- hooks/useListSignal.md 441 B
- hooks/useMapSignal.md 368 B
- hooks/useQueueSignal.md 366 B
- hooks/useSetSignal.md 356 B
- hooks/useSignal.md 424 B
- hooks/useSignalEffect.md 490 B
- hooks/useSignalValue.md 403 B
- hooks/useStreamSignal.md 541 B
- hooks/useTrackedSignal.md 480 B
- hooks/useValueListenableToSignal.md 523 B
- hooks/useValueNotifierToSignal.md 514 B
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.
- 11d ago First seen · 105 lines · 14 tokens per session scan A 7a945b3c5dbe
signals-hooks is a skill published in the GitHub repository rodydavis/signals.dart (814 stars, last pushed 2d ago), licensed Apache-2.0. It adds 14 tokens to every session and 2,016 once invoked, about $0.0001 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.
Other skills, from other repositories
flutter-expert
Expert in Flutter SDK, Dart, widgets, state management, and cross-platform mobile development. Use when the user mentions mobile, Dart, cross platform, UI, or state management, or when the task involves Flutter Architecture, Widget Fundamentals, State Management Approaches, or Lifecycle Methods.
flutter
Flutter 3.44 — widget catalog, layouts, interactivity, animations, navigation, assets, adaptive/responsive design, accessibility, i18n, state management, data & backend (networking, serialization, Firebase, persistence), app architecture (MVVM, DI), platform integration (Android, iOS, web, Windows, macOS, Linux…
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…
flutter-pre-caching
Use when preloading fonts, asset/network images, Lottie/Rive animations, local JSON/config, warming initial API data, or optimizing Flutter Web startup.
bloc
Use when creating a Cubit or Bloc, modeling state with sealed classes or status enums, wiring BlocBuilder/BlocListener/BlocProvider, writing bloc tests, or choosing between Cubit and Bloc.
firebase-messaging
Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).