wings-build

wings-build is a skill for Claude Code from luisfurquim/wings. It costs 92 tokens per session (1,050 once invoked), scanned A, original, MPL-2.0.

A setup and build guide for WINGS applications, web apps whose Go code is compiled to WebAssembly, a browser format for running compiled code.

In plain words
What is it for?
Use it to create a WINGS project, configure Go and WebAssembly builds, serve the app locally, connect components, or use development rebuild mode.
Why use it?
It covers project structure, runtime files, HTTP serving, and build commands so the application loads and rebuilds correctly.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the wings-authoring plugin — 5 skills shipped together

Good fit Use it to create a WINGS project, configure Go and WebAssembly builds, serve the app locally, connect components, or use development rebuild mode.

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

Made for: Claude Code.

Or install wings-authoring, the plugin that ships this one along with the rest of its 5 skills.

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 wings-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/luisfurquim/wings/wings-build.svg)](https://agentmods.dev/skills/luisfurquim/wings/wings-build)
Your own site
<a href="https://agentmods.dev/skills/luisfurquim/wings/wings-build"><img src="https://agentmods.dev/badge/skills/luisfurquim/wings/wings-build.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,050 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.00092 $0.01050
Opus 5 $0.00046 $0.00525
Sonnet 5 $0.00018 $0.00210
Haiku 4.5 $0.00009 $0.00105

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

Security

Grade A, and why

wings-build 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 7d 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.

plugins/wings-authoring/skills/wings-build/SKILL.md · 114 lines

How it starts

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

Building and serving a WINGS app

WINGS components compile to a single WebAssembly binary loaded by a tiny JS shim. A WASM page cannot be opened from file:// — it must be served over HTTP with the correct MIME type.

Project layout

myapp/
  go.mod                 # module myapp
  main.go                # package main, wings.Main(), blank-imports modules
  mod/<name>/<name>.{go,html,css}   # your components (see wings-component)
  static/                # web root: index.html + the 3 runtime files
    index.html
    prana_helper.js
    wasm_exec.js
    wings.wasm           # build output

Set it up:

go mod init myapp
go get github.com/luisfurquim/wings

main.go — one per app; every component is registered by blank-importing its package:

//go:build js && wasm
package main

import (
	"github.com/luisfurquim/wings"
	_ "myapp/mod/hello"            // each module
	_ "github.com/luisfurquim/wings/wi18n" // optional: runtime i18n (see wings-i18n)
)

func main() { wings.Main() }

The two runtime helper files

Copy both into your web root next to the wasm:

W=$(go list -m -f '{{.Dir}}' github.com/luisfurquim/wings)
cp "$W/prana_helper.js" static/
# Go 1.24+: lib/wasm/ ; older: misc/wasm/
cp "$(go env GOROOT)/lib/wasm/wasm_exec.js" static/ 2>/dev/null \
  || cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" static/

static/index.html loads them and streams the wasm:

<!DOCTYPE html>
<html>
<head>
  <script src="prana_helper.js"></script>
  <script src="wasm_exec.js"></script>
  <script>
    const go = new Go();
    WebAssembly.instantiateStreaming(fetch("wings.wasm"), go.importObject)
      .then(r => go.run(r.instance)).catch(console.error);
  </script>
</head>
<body>
  <hello-world></hello-world>   <!-- your custom element tag -->
</body>
</html>

Build and serve

GOOS=js GOARCH=wasm go build -o static/wings.wasm .

Then serve static/ over HTTP with .wasm as application/wasm (any static server that sets that MIME; a tiny Go server works — see the README Quick Start). Opening index.html from disk will not work.

Read the full file on GitHub · 114 lines

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. 7d ago First seen · 114 lines · 92 tokens per session scan A e70e6e239741

Subscribe to this mod's changes

wings-build is a skill published in the GitHub repository luisfurquim/wings (29 stars, last pushed 1mo ago), licensed MPL-2.0. It adds 92 tokens to every session and 1,050 once invoked, about $0.0005 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.