glyphweave-map-generator

glyphweave-map-generator is a skill for Claude Code, Codex from HsiangNianian/GlyphWeave. It costs 105 tokens per session (3,419 once invoked), scanned A, original, MIT.

A skill that turns plain-language descriptions into GlyphWeave tilemap files. A tilemap is a grid-based map made from tiles such as walls, floors, doors, and decorations.

In plain words
What is it for?
Creating or extending dungeons, rooms, corridors, and layered maps as valid .gemap JSON files.
Why use it?
It removes the need to hand-write coordinate-based JSON for dungeons and other map layouts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Creating or extending dungeons, rooms, corridors, and layered maps as valid .gemap JSON files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hsiangnianian/glyphweave/glyphweave-map-generator
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 HsiangNianian/GlyphWeave --skill glyphweave-map-generator
Clone the repo
git clone --depth 1 https://github.com/HsiangNianian/GlyphWeave

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 glyphweave-map-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/hsiangnianian/glyphweave/glyphweave-map-generator/github.svg)](https://agentmods.dev/skills/hsiangnianian/glyphweave/glyphweave-map-generator)
Your own site
<a href="https://agentmods.dev/skills/hsiangnianian/glyphweave/glyphweave-map-generator"><img src="https://agentmods.dev/badge/skills/hsiangnianian/glyphweave/glyphweave-map-generator/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 glyphweave-map-generator

Your own site · 80×15
<a href="https://agentmods.dev/skills/hsiangnianian/glyphweave/glyphweave-map-generator"><img src="https://agentmods.dev/badge/skills/hsiangnianian/glyphweave/glyphweave-map-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,419 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00105 $0.03419
Opus 5 $0.00053 $0.01709
Sonnet 5 $0.00021 $0.00684
Haiku 4.5 $0.00011 $0.00342

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

Security

Grade A, and why

glyphweave-map-generator scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST http://localhost:5173/api/render \
.agents/skills/glyphweave-map-generator/SKILL.md · 376 lines

How it starts

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

GlyphWeave Map Generator

Generate valid GlyphWeave .gemap JSON tilemaps from natural language descriptions. This skill covers the map format, tile reference, design patterns, and generation workflow.

1. Map Format (.gemap JSON)

A GlyphWeave map is a JSON object. The only required field is tiles (flat) or layerTiles + layers (multi-layer).

{
  "tiles":       { "0,0": "wall", "1,0": "floor", ... },
  "worldName":   "My Dungeon",
  "themeId":     "ansi-16",
  "version":     2
}

Coordinate System

  • Keys: "{x},{y}" — 0-indexed from top-left, no spaces
  • Sparse: only non-void tiles need keys; omitted = void
  • Negative coords are valid (bounds auto-detect)
  • null value explicitly removes a tile
{
  "tiles": {
    "0,0": "wall",
    "5,3": "floor",
    "10,7": "door",
    "2,4": null
  }
}

Layer System (optional)

{
  "layerTiles": {
    "ground": { "0,0": "wall", "1,0": "floor" },
    "decor":  { "1,0": "blood" }
  },
  "layers": [
    { "id": "ground", "name": "Ground", "visible": true, "locked": false },
    { "id": "decor",  "name": "Decor",  "visible": true, "locked": false }
  ]
}
  • layerTiles requires matching layers array
  • Render order: first layer = bottom, last = top
  • Invisible layers (visible: false) are skipped during render

2. Tile Type Reference

All tile ID strings and their rendered characters:

Walls

ID Char Description
wall # Standard dungeon wall
door + Closed door
doorOpen ' Open doorway
pillar 0 Support pillar
bar Tavern bar / fence

Floors

ID Char Description
floor . Standard floor
floorAlt , Alternate floor (variation)
bridge Bridge over water/lava

Water

ID Char Description
water ~ Shallow water
deepWater Deep water

Terrain

ID Char Description
lava ~ Lava (rendered orange/red)
void Empty space (omit from tiles)

Read the full file on GitHub · 376 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 376 lines · 105 tokens per session scan A 53833a1f5dfa

Subscribe to this mod's changes

glyphweave-map-generator is a skill published in the GitHub repository HsiangNianian/GlyphWeave (5 stars, last pushed today), licensed MIT. It adds 105 tokens to every session and 3,419 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ascii-shader-tsx

Generate animated ASCII art, dithered visuals, and shader-like effects as self-contained React/TSX components. Use when the user wants to create ASCII backgrounds, dithered image/video effects, CRT/retro overlays, matrix rain, noise fields, halftone patterns, particle systems, braille art, terminal aesthetics, or any…

Codeptor/ascii-shader-tsx · 190 tokens

react-three-fiber

React Three Fiber 3D renderer for json-render. Use when working with @json-render/react-three-fiber, building 3D scenes from JSON specs, rendering meshes/lights/models/environments, or integrating Three.js with json-render catalogs.

vercel-labs/json-render · 54 tokens

deck-open-slide-canvas

A presentation layout system for freely arranging React components on a fixed 1920×1080 slide canvas. React is a way to build interfaces from reusable pieces.

nexu-io/html-anything · 28 tokens

umg-widgets

Create and modify UMG Widget Blueprints (UI) — build the widget hierarchy, set properties, style fonts/brushes, author widget animations, bind events, capture previews, run PIE checks, and wire MVVM ViewModels. Use when the user asks to create a UI/HUD/menu, add or arrange widgets (Button, TextBlock, Image, panels)…

kevinpbuckley/VibeUE · 98 tokens

react-three-fiber-game

Build React-hosted 3D browser games with React Three Fiber. Use when the user wants pmndrs-based scene composition, shared React state, and 3D HUD integration inside a React app.

openai/plugins · 47 tokens

phaser-2d-game

Implement 2D browser games with Phaser. Use when the user wants a Phaser, TypeScript, and Vite stack for scenes, gameplay systems, cameras, sprite animation, and DOM-overlay HUD patterns.

openai/plugins · 48 tokens