Threejs procedural buildings and cities
Skill linegel/threejs-complete-set-of-skill/skills/threejs-procedural-buildings-and-cities
25 expert agent skills for ambitious Three.js WebGPU/TSL scenes — procedural oceans, clouds, planets, water optics, image pipelines, and screenshot-backed visual validation. For Claude Code, Codex, Cursor, and any skill-aware agent.
npx -y skills add linegel/threejs-complete-set-of-skill --skill threejs-procedural-buildings-and-citiesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Compile procedural buildings, cities, and semantic site assemblies in Three.js r185 WebGPU/TSL. Use for building massing and facades, city-scale architectural batching and LOD, or deterministic placement of heterogeneous site assets around architecture.
SKILL.md
6.6 KB, as published. Nobody here has run it
Procedural Buildings and Cities
Treat architecture as a compiler: decide the runtime package, produce and validate a serializable plan, then emit geometry. The plan owns massing, exposed surfaces, placements, material slots, and stable identity.
Process
-
Select the runtime package from mutability and repetition.
Workload Package Static building or chunk merged indexed BufferGeometryper material slotEditable varied modules BatchedMeshper compatible material slotRepeated identical topology spatially paged InstancedMeshDistrict-scale streaming bounded chunks with projected-error LOD Initialize
WebGPURendererbefore gating WebGPU features. Architecture planning can remain CPU-deterministic; add storage or compute only for a measured city-scale visibility or update bottleneck.Complete when: every architectural element has one package, and every package has an explicit mutability, visibility, and identity reason.
-
Produce a valid building plan. Normalize units and settings, then apply the mass-operator rail: footprint pieces -> union/court subtraction -> extrude/stack -> inset/split -> optional connector. Choose only prevalidated alternatives; give every operator result a stable ID and validate it before the next operator. Read grammar-and-mesh-compiler.md when implementing these operators. Serialize footprints, mass volumes, exposed intervals, placements, module usage, ownership, material slots, UV scale, and budgets.
Complete when: the same inputs reproduce the same operator choices and IDs, every operator output passes its topology/dimension/ownership gate, and geometry emission is unnecessary to diagnose an invalid plan.
-
Resolve exposed boundaries before facade placement. Subtract shared or blocked side intervals, quantize each surviving interval into legal bays, and attach facade, roof, trim, and corner placements to those intervals. Read grammar-and-mesh-compiler.md when implementing footprint subtraction, bay quantization, placement ownership, or module-local frames.
Complete when: no facade interval lies inside the footprint, every legal interval has a declared placement or semantic blank, and corner ownership is unambiguous.
-
Close and validate the plan. Add visible caps, decks, soffits, and closure surfaces for validated connectors; resolve every placement through the module registry; then test registry completeness, ownership uniqueness, general overlap, winding, bounds, material membership, and UV density.
For a heterogeneous site assembly, keep domain assets delegated to their owning skills and register each ruin, dock, boat, rock, vegetation cluster, or prop with a stable placement ID, owner, transform/frame/scale, support and clearance volumes, anchor, and LOD policy. Apply the deterministic heterogeneous-site-placement rules in grammar-and-mesh-compiler.md. When implementing candidate identity, random lanes, or phase ranking, import deterministic-placement-key.mjs. The helper does not own support, clearance, conflict detection, or phase admission. Place the landmark first, then solve access, support, and clearance before repeated detail.
Complete when: every placement resolves, every surface has one owner, overlaps are empty or explicitly permitted, support/clearance gates pass, stable IDs replay independently of chunk load order and unrelated family insertion, and all emitted geometry or delegated assets trace to a plan record.
-
Compile by material slot and spatial boundary. Keep semantic material identities stable while choosing merge, batch, or instance emission. In Three.js r185 WebGPU,
BatchedMeshiterates visible multi-draw entries: it improves object/state management but does not prove GPU draw collapse. Merge compatible static geometry or instance identical topology when draw collapse is required. Read grammar-and-mesh-compiler.md when implementing slot writers, paging, projected-error LOD, or draw accounting.Complete when: slot membership is complete, indexed bounds are finite, pages are independently cullable, LOD error is gated in physical pixels, and actual backend draw items are reported.
-
Bind materials and presentation. Use
MeshStandardNodeMaterialorMeshPhysicalNodeMaterialper semantic slot. Preserve physical texture scale and data/color encodings. Hand final color to the scene's oneRenderPipelineoutput transform, then dispose replaced geometries, batches, textures, and node resources.Complete when: flat material, grazing light, and final output agree on geometry and normals; one component owns output conversion; replacement and disposal leave no stale bounds or live resources.
-
Verify the compiler. Exercise simple and compound footprints, courts, bridges or connectors when supported, minimum legal spans, dense placement, repeated modules, and district paging across multiple seeds. Inspect silhouette, untextured geometry, corners, openings, setbacks, roofs, and LOD transitions.
Complete when: every fixture has a valid plan, no internal facade intervals or placement overlaps, a complete registry, deterministic replay, correct bounds and material slots, stable UV scale, and measured triangle and draw counts.
Ownership Boundary
- Use
$threejs-procedural-geometryfor reusable profiles, sweeps, arches, frames, and low-level mesh writers. - Use
$threejs-procedural-materialsfor masonry, glass, metal, weathering, filtering, and material-field authoring. - Use
$threejs-procedural-fieldsfor terrain and parcel fields consumed by a city layout. - Use
$threejs-scalable-real-time-shadows,$threejs-image-pipeline, and$threejs-visual-validationfor scene-wide shadow, output, and evidence ownership.
This skill owns building massing, facade semantics, architectural module and site placement, plan validation, material-slot compilation, and architectural spatial LOD; delegated skills still own nonarchitectural asset generation.