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 skills add kyu-n/gdx-claude-skills --skill libgdx-networkinggit clone --depth 1 https://github.com/kyu-n/gdx-claude-skillsWrote 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/kyu-n/gdx-claude-skills/libgdx-networking)<a href="https://agentmods.dev/skills/kyu-n/gdx-claude-skills/libgdx-networking"><img src="https://agentmods.dev/badge/skills/kyu-n/gdx-claude-skills/libgdx-networking/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/kyu-n/gdx-claude-skills/libgdx-networking"><img src="https://agentmods.dev/badge/skills/kyu-n/gdx-claude-skills/libgdx-networking.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00052 | $0.03599 |
| Opus 5 | $0.00026 | $0.01800 |
| Sonnet 5 | $0.00010 | $0.00720 |
| Haiku 4.5 | $0.00005 | $0.00360 |
Grade A, and why
libgdx-networking 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 — 336 lines — stays where its author put it; the contents beside it link to each section on GitHub.
libGDX Networking
Quick reference for com.badlogic.gdx.Net and com.badlogic.gdx.net.*. Covers HTTP requests, TCP sockets, HttpRequestBuilder, and platform differences.
Net Interface
Access via Gdx.net. Two capabilities: HTTP requests and TCP sockets.
// HTTP
Gdx.net.sendHttpRequest(request, listener); // async — response via listener
Gdx.net.cancelHttpRequest(request); // void
Gdx.net.isHttpRequestPending(request); // boolean
// TCP Sockets
Gdx.net.newServerSocket(Net.Protocol.TCP, port, hints); // ServerSocket
Gdx.net.newServerSocket(Net.Protocol.TCP, hostname, port, hints); // overload with bind address
Gdx.net.newClientSocket(Net.Protocol.TCP, host, port, hints); // Socket
// Browser
Gdx.net.openURI("https://example.com"); // opens system browser, returns boolean
Net.Protocol is an enum with only TCP — no UDP support.
HTTP Requests
Net.HttpRequest
Net.HttpRequest request = new Net.HttpRequest(Net.HttpMethods.GET);
request.setUrl("https://api.example.com/data");
request.setHeader("Accept", "application/json");
request.setTimeOut(5000); // millis — NOTE: capital O in TimeOut
request.setFollowRedirects(true); // default: true
request.setIncludeCredentials(false); // for GWT CORS cookies
// POST with string body
Net.HttpRequest post = new Net.HttpRequest(Net.HttpMethods.POST);
post.setUrl("https://api.example.com/submit");
post.setHeader("Content-Type", "application/json");
post.setContent("{\"key\": \"value\"}");
// POST with stream body
post.setContent(inputStream, contentLength); // InputStream + long
Gotchas:
- Spelling is
setTimeOut(capital O), NOTsetTimeout. The getter isgetTimeOut(). - There is no
setBody()— the method issetContent(). - There is no
setMethod()on HttpRequest for changing method after construction — wait, there IS:setMethod(String)exists, but prefer the constructor. HttpRequestimplementsPoolablewith areset()method for object pool reuse.
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 · 336 lines · 52 tokens per session scan A b13d3938d578
libgdx-networking is a skill published in the GitHub repository kyu-n/gdx-claude-skills (4 stars, last pushed 7mo ago), licensed MIT. It adds 52 tokens to every session and 3,599 once invoked, about $0.0003 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-31.
Other skills, from other repositories
tools-unity-unitask
UniTask async/await patterns for Unity including cancellation, lifecycle binding, and coroutine interop.
tools-unity-vcontainer
VContainer dependency injection patterns for Unity including lifecycle management, scoped registrations, and common pitfalls.
unity-packages-services
Unity 6 packages and services guide. Use when working with Package Manager, installing/updating packages, scoped registries, or Unity Gaming Services (Authentication, Cloud Save, Analytics, Leaderboards, Matchmaker). Covers essential packages list and version compatibility. Based on Unity 6.3 LTS documentation.
uw-dependency-injection
Opt-in DI architecture using Reflex for Unity 6+. Covers container setup, scoping, injection, command pattern, update management, and class taxonomy. Use when ProjectConfig.yaml -> architecturepattern is "di-first", or when the user asks about dependency injection, inversion of control, service architecture, or…
uw-network-setup
Generates networking boilerplate adapted to the project's chosen networking package (NGO, Mirror, Photon). Use when setting up multiplayer systems, syncing state, writing RPCs, building lobbies, or designing an authority matrix. Triggers on requests like "add multiplayer", "sync player health", "create an RPC", "set…
integrate-webapi
Integrates Power Pages Web API into a site's frontend code with proper permissions and deployment. Orchestrates the full integration lifecycle: code integration, table permissions setup, and deployment for Dataverse CRUD operations. Use when the user wants to add Web API calls, connect to Dataverse, or add data…