signals.dart: Skill for Claude Code

.agents/skills/jaspr-convert-html/SKILL.md

jaspr-convert-html is a skill for Claude Code, Codex from rodydavis/signals.dart. It costs 28 tokens per session (362 once invoked), scanned A, original, Apache-2.0.

A conversion guide for turning existing HTML from a file or website into Jaspr component code. Jaspr is a Dart framework for building web interfaces.

In plain words
What is it for?
Use it when importing a full HTML page or a specific element into a Jaspr component.
Why use it?
It avoids manually rewriting HTML into Jaspr, which can introduce mistakes and take time. It also shows how to convert only a selected part of a page using a CSS selector.

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 rodydavis/signals.dart's own configuration. It tells Claude Code and Codex how to work on signals.dart 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 signals.dart configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/rodydavis/signals.dart/main/.agents/skills/jaspr-convert-html/SKILL.md
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 jaspr-convert-html

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/rodydavis/signals.dart/jaspr-convert-html"><img src="https://agentmods.dev/badge/skills/rodydavis/signals.dart/jaspr-convert-html.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 362 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.00028 $0.00362
Opus 5 $0.00014 $0.00181
Sonnet 5 $0.00006 $0.00072
Haiku 4.5 $0.00003 $0.00036

Measured 11d ago against content hash 7bca1217dfc8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

jaspr-convert-html 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.

.agents/skills/jaspr-convert-html/SKILL.md · 44 lines

What it actually says

Rules

Converting existing HTML into Jaspr component syntax by hand is prone to errors and wastes time.

  • Rule 1: You MUST ALWAYS use the jaspr convert-html command to convert existing HTML.
  • Rule 2: You MUST NEVER attempt to convert HTML to Jaspr code manually.
  • Rule 3: You MUST take the output from the daemon UNCHANGED and use it exactly as provided.

Usage

To convert HTML to Jaspr code, run one of the following commands in the terminal depending on your source:

From a local file:

jaspr convert-html --file some/path/to/file.html

From a URL:

jaspr convert-html --url https://example.com

The resulting Jaspr code is printed directly to the console. You can then copy this code directly into your component's build method.

Selecting Specific Elements

If you only need a portion of the HTML, you MUST use the --query option with a CSS selector to target specific elements rather than converting the whole file and deleting pieces manually.

jaspr convert-html --file some/path/to/file.html --query "#my-id"

This will only convert and output the element with the id my-id.

Tip: To convert everything inside the <body> tag but exclude the <body> tag itself, use:

jaspr convert-html --file some/path/to/file.html --query "body > *"
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. 11d ago First seen · 44 lines · 28 tokens per session scan A 7bca1217dfc8

Subscribe to this mod's changes

jaspr-convert-html is a skill published in the GitHub repository rodydavis/signals.dart (814 stars, last pushed yesterday), licensed Apache-2.0. It adds 28 tokens to every session and 362 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.

Related

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.

evanca/flutter-ai-rules · 31 tokens

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.

evanca/flutter-ai-rules · 36 tokens

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.

Arenukvern/mcp_flutter · 74 tokens

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.

personamanagmentlayer/pcl · 60 tokens

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…

Poorgramer-Zack/dart-expert-skills · 93 tokens

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…

Poorgramer-Zack/dart-expert-skills · 121 tokens