Borrowing it
Nothing to install: this file belongs to rodydavis/signals.dart. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/rodydavis/signals.dart/main/.agents/skills/jaspr-fundamentals/SKILL.mdgit 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/jaspr-fundamentals)<a href="https://agentmods.dev/skills/rodydavis/signals.dart/jaspr-fundamentals"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/jaspr-fundamentals/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/jaspr-fundamentals"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/jaspr-fundamentals.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.00040 | $0.01774 |
| Opus 5 | $0.00020 | $0.00887 |
| Sonnet 5 | $0.00008 | $0.00355 |
| Haiku 4.5 | $0.00004 | $0.00177 |
Grade A, and why
jaspr-fundamentals 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 12d 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 — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Components
Jaspr uses a component-based architecture very similar to Flutter's widgets. Concepts like ui composition, architecture and state management are transferable.
- StatelessComponent: For components that don't need mutable state. You must override
Component build(BuildContext context). - StatefulComponent: For components with mutable state. Requires an associated
Stateclass. The state has lifecycle methods likeinitState()anddispose(). You must overrideComponent build(BuildContext context)in the state class. - InheritedComponent: For propagating context or state efficiently down the component tree.
Returning Components from build
Building UIs in Jaspr requires you to return a single Component from build().
- Rule 1: You MUST NOT use
Iterable<Component> build(BuildContext context) sync*. This is legacy code. - Rule 2: You MUST use dot-shorthands instead of capitalized component names for fragments, text, and empty nodes.
- Use
.fragment([...])(Do NOT useFragment([...])orfragment([...])). - Use
.text('...')(Do NOT useText('...')ortext('...')). - Use
.empty()to return an empty space safely.
- Use
Example Usage:
import 'package:jaspr/jaspr.dart';
import 'package:jaspr/dom.dart';
class MyComponent extends StatelessComponent {
const MyComponent({super.key});
@override
Component build(BuildContext context) {
// 1. Return a single component (e.g. div)
// 2. Use dot-shorthand (.text) instead of Text()
return div(classes: 'my-class', [
.text('Hello World'),
]);
}
}
HTML Components
Jaspr provides typed components for standard HTML elements (e.g., div(), p(), a(), button()). To use these add the package:jaspr/dom.dart import.
All HTML components take standard named Key? key, String? id, String? classes, Styles? style, Map<String, String>? attributes and Map<String, void Function(Event)>? events parameters.
Most HTML components take a positional List<Component> children parameter (except for self-closing tags like img, input, br, etc.).
What ships with it
60 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.
- references/html/a.md 631 B
- references/html/article.md 307 B
- references/html/aside.md 299 B
- references/html/audio.md 537 B
- references/html/b.md 283 B
- references/html/blockquote.md 332 B
- references/html/body.md 295 B
- references/html/br.md 247 B
- references/html/button.md 441 B
- references/html/caption.md 307 B
- references/html/circle.md 394 B
- references/html/code.md 295 B
- references/html/col.md 257 B
- references/html/colgroup.md 317 B
- references/html/datalist.md 311 B
- references/html/dd.md 287 B
- references/html/details.md 324 B
- references/html/dialog.md 320 B
- references/html/div.md 291 B
- references/html/dl.md 287 B
- references/html/dt.md 287 B
- references/html/ellipse.md 413 B
- references/html/em.md 287 B
- references/html/embed.md 323 B
- references/html/fieldset.md 349 B
- references/html/figcaption.md 319 B
- references/html/figure.md 303 B
- references/html/footer.md 303 B
- references/html/form.md 608 B
- references/html/h1.md 287 B
- references/html/h2.md 287 B
- references/html/h3.md 287 B
- references/html/h4.md 287 B
- references/html/h5.md 287 B
- references/html/h6.md 287 B
- references/html/head.md 295 B
- references/html/header.md 303 B
- references/html/hr.md 247 B
- references/html/html.md 295 B
- references/html/i.md 283 B
- references/html/iframe.md 672 B
- references/html/img.md 638 B
- references/html/input.md 974 B
- references/html/label.md 318 B
- references/html/legend.md 303 B
- references/html/li.md 295 B
- references/html/line.md 401 B
- references/html/link.md 321 B
- references/html/main.md 299 B
- references/html/meta.md 327 B
- references/html/meter.md 392 B
- references/html/nav.md 291 B
- references/html/object.md 377 B
- references/html/ol.md 466 B
- references/html/optgroup.md 359 B
- references/html/option.md 385 B
- references/html/p.md 283 B
- references/html/path.md 357 B
- references/html/polygon.md 379 B
- references/html/polyline.md 383 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.
- 12d ago First seen · 178 lines · 40 tokens per session scan A 5703641b5233
jaspr-fundamentals is a skill published in the GitHub repository rodydavis/signals.dart (814 stars, last pushed 3d ago), licensed Apache-2.0. It adds 40 tokens to every session and 1,774 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.
Other skills, from other repositories
architecture-feature-first
Use when creating a feature, designing folder structure, adding repositories/services/view models, wiring dependency injection, or deciding which layer owns logic.
flutter-use-column-row-first
Use when building any Flutter screen or component to choose responsive Row, Column, Expanded, Flexible, and Spacer layouts before fixed-size or coordinate-based alternatives.
flutter-mcp-toolkit-maintain-web
Maintains fluttertestapp and intentcall web targets (Chrome, web codegen, WebMCP bootstrap, web-showcase, webmcp verify). Use when editing web/index.html, agentmanifest.json, intentcallwebmcp.generated.js, web platform sync, Chrome dogfood, or WebMCP modelContext.
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.
building-jaspr-web-apps
Builds SEO-friendly web applications with Dart using the Jaspr framework. Use when creating Dart-based websites, blogs, or landing pages requiring semantic HTML output; implementing server-side rendering (SSR) or static site generation (SSG); adding Tailwind CSS via jasprtailwind; routing with jasprrouter; testing…
generating-flutter-ui
Generative UI (GenUI) for Flutter using AI models like Google Gemini, Anthropic Claude, or OpenAI via the genui package. Use this skill when building dynamic AI-driven interfaces, conversational UI flows, server-rendered screen layouts, LLM-powered dashboards, chat-based UI generation, or implementing prompt-to-UI…