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 agentmods add skills/luisfurquim/wings/wings-componentnpx skills add luisfurquim/wings --skill wings-componentgit clone --depth 1 https://github.com/luisfurquim/wingsWrote 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/luisfurquim/wings/wings-component)<a href="https://agentmods.dev/skills/luisfurquim/wings/wings-component"><img src="https://agentmods.dev/badge/skills/luisfurquim/wings/wings-component.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00087 | $0.03703 |
| Opus 5 | $0.00044 | $0.01852 |
| Sonnet 5 | $0.00017 | $0.00741 |
| Haiku 4.5 | $0.00009 | $0.00370 |
Grade A, and why
wings-component 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 4d 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 — 377 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Writing a WINGS component
A component is a custom element whose logic is Go compiled to WASM. Read
AGENTS.md at the repo root first for the mental model and the two
non-negotiable gotchas; this skill is the working detail.
The module is three files (same basename)
mymod/
mymod.go # init() registers + the PranaMod implementation
mymod.html # template with bindings
mymod.css # styles (shadow-DOM scoped)
Every component .go file starts with //go:build js && wasm.
Minimal working component
mymod.go:
//go:build js && wasm
package mymod
import (
_ "embed"
"github.com/luisfurquim/wings"
)
//go:embed mymod.html
var htmlContent string
//go:embed mymod.css
var cssContent string
type MyMod struct{}
func init() {
wings.Register(
"my-mod", // custom element tag (must contain a hyphen)
htmlContent,
cssContent,
func() wings.PranaMod { return &MyMod{} },
"title", // ...observed attributes (re-render when they change)
)
}
// InitData: initial state. obj is NOT available here.
func (m *MyMod) InitData() map[string]any {
return map[string]any{
"title": "Hello",
"count": 0,
"items": []any{},
"show_extra": false, // snake_case — see gotcha #1
}
}
// Render: runs after connect; obj is available.
func (m *MyMod) Render(obj *wings.PranaObj) {
obj.This.Set("items", []any{
map[string]any{"label": "Alpha"},
map[string]any{"label": "Beta"},
})
}
mymod.html:
<div class="widget">
<h2>{{title}}</h2>
<p>Count: <span>{{count}}</span></p>
<ul>
<li *items:i>{{items[i].label}}</li>
</ul>
<div ?show_extra>
<p>Extra content</p>
</div>
<input &value="{{input_val}}" type="text" />
</div>
App entry point (main.go, native to the app, one per app):
//go:build js && wasm
package main
import (
"github.com/luisfurquim/wings"
_ "myapp/mod/mymod" // blank-import every module to register it
)
func main() { wings.Main() }
PranaMod lifecycle
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.
- 4d ago First seen · 377 lines · 87 tokens per session scan A 69b0e2ae3c24
wings-component is a skill published in the GitHub repository luisfurquim/wings (29 stars, last pushed 1mo ago), licensed MPL-2.0. It adds 87 tokens to every session and 3,703 once invoked, about $0.0004 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
ast-grep
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…
oh-my-posh
Install, configure, or troubleshoot Oh My Posh/ohmyposh: shell init, themes, segments, Nerd Font icons, and prompt setup on PowerShell, zsh, bash, or fish.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
pinchtab-stealth-score
Run the PinchTab stealth-score sweep against 15 bot-detection / fingerprint sites (sannysoft, rebrowser, deviceandbrowserinfo, iphey, whoer, browserscan, pixelscan, fingerprint-scan, incolumitas, fvision, amiunique, browserleaks, creepjs, coveryourtracks, fingerprint-demo). Starts a Docker PinchTab container per…
printing-press-import
Bring a published CLI from the public library into the internal library so it's identical to a freshly-generated copy — module path reverted, manuscripts placed alongside, ready for /printing-press-polish or /printing-press-emboss. Use when the public library has a CLI you don't have locally, or to recover from a…
gmeasure
Benchmark and measure Go code with gmeasure — an Experiment groups named Measurements, recorded via RecordValue/RecordDuration/MeasureDuration or repeated Sample/SampleValue/SampleDuration with SamplingConfig, timed inline with a Stopwatch, summarized through GetStats/Stats (StatMin/Max/Mean/Median/StdDev…