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 instructions/luisfurquim/wings/copilot-instructionsgit 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/instructions/luisfurquim/wings/copilot-instructions)<a href="https://agentmods.dev/instructions/luisfurquim/wings/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/luisfurquim/wings/copilot-instructions.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.00425 | $0.00425 |
| Opus 5 | $0.00212 | $0.00212 |
| Sonnet 5 | $0.00085 | $0.00085 |
| Haiku 4.5 | $0.00042 | $0.00042 |
Grade A, and why
wings copilot-instructions.md 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.
What it actually says
WINGS authoring
This project builds UI as Go compiled to WASM with the WINGS framework: each
component is a custom element whose logic is Go, not JavaScript. The canonical,
always-current authoring guide is AGENTS.md at the repository
root — read and follow it; this file is only a short pointer plus the two
mistakes that bite hardest.
- Binding names in attributes must be snake_case. The browser lowercases
attribute names, so a camelCase binding name (
?isLoading,*myItems,&myValue,showExtra="{{...}}") silently becomes a no-op — wrong render, zero error.go run ./cmd/build <target>fails the build on any uppercase binding name, withfile:line.{{textBinding}}in text content is exempt, but use snake_case everywhere anyway. - Handlers that need
objcan't be built inInitData(objisn't ready there). Putwings.TriggerHandler(nil)as a placeholder inInitData, then set the realfunc(args ...any){...}inRenderviaobj.This.Set.
Mental model in one breath: a module is three files with the same basename
(name.go/name.html/name.css); name.go calls wings.Register(...) in
init() and implements PranaMod (InitData + Render); state lives in the
reactive store obj.This and the DOM updates from data — there is no virtual
DOM and you never set innerHTML. All component files carry
//go:build js && wasm. Everything else — template syntax, i18n, skins,
built-in widgets, the build, and security — is in AGENTS.md and the
wings-authoring Claude Code plugin (see the README "AI-Assisted Development").
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 · 27 lines · 425 tokens per session scan A a7c47b51be82
wings copilot-instructions.md is an instructions file published in the GitHub repository luisfurquim/wings (29 stars, last pushed 1mo ago), licensed MPL-2.0. It adds 425 tokens to every session, about $0.0021 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 instructions, from other repositories
ollama CLAUDE.md
Claude Code instructions for ollama/ollama: See AGENTS.md for the shared agent instructions for this repository.
prest copilot-instructions.md
Copilot instructions for prest/prest, covering copilot instructions for prest go backend, project scope, core engineering principles, solid principles for go and s — single responsibility.
azure-sdk-for-go go-examples.instructions.md
Instructions for Azure/azure-sdk-for-go, a project described as: This repository is for active development of the Azure SDK for Go. For consumers of the SDK we recommend visiting our public developer docs at.
azure-sdk-for-go go-code.instructions.md
Instructions for Azure/azure-sdk-for-go: All code should follow the guidelines from the Azure Go SDK Guidelines. This document is a summary of the most important guidelines to follow when contributing to the Azure Go SDK.
gorest AGENTS.md
AGENTS.md instructions for pilinux/gorest, covering agents.md, project overview, build and run commands, build and tidy dependencies.
devops-ai-guidelines copilot-instructions.md
Instructions for VersusControl/devops-ai-guidelines, covering copilot instructions: kubernetes mcp workspace, operating rules and code style for go contributions.