Skill Claude Code
A block-layout pattern for arranging block-level page elements in rows according to their available width. Elements that do not fit on a row are stacked on the next one.
Skill Claude Code
A block-layout pattern for arranging block-level page elements in rows according to their available width. Elements that do not fit on a row are stacked on the next one.
Skill Claude Code
A Web Audio API pattern for creating an oscillator, controlling volume, and starting browser audio. An oscillator generates a basic repeating sound wave.
Skill Claude Code
An HTTP cache pattern using ETags, which are server-provided identifiers for a response version. The browser sends the ETag back to ask whether the resource has changed.
Skill Claude Code
A browser Geolocation API pattern for requesting permission and obtaining a device's coordinates.
Skill Claude Code
A browser Web Worker pattern for running work away from the main page thread and sending data back with messages.
Skill Claude Code
A Subresource Integrity (SRI) pattern for checking a downloaded script against an expected cryptographic hash. SRI helps detect a file that was changed or tampered with.
Skill Claude Code
A browser Payment Request API pattern for checking whether a payment method can be used, starting a payment, and reading its status.
Skill Claude Code
A Canvas drawing operation that fills pixels at coordinates and checks the drawing boundaries. Canvas is a browser area used to draw images and graphics with code.
Skill Claude Code
A browser security step that converts HTML special characters into safe entities. Cross-site scripting, or XSS, is an attack that injects a script into a web page.
Skill Claude Code
A browser prompt operation for setting, reading, or clearing a prompt value. A prompt is text or state that a browser task can use as input.
Skill Claude Code
A routing entry for a Chinese-language compiler made up of many smaller compiler tasks. A compiler converts source code into instructions that a computer or virtual machine can run.
Skill Claude Code
A compiler analysis step that infers a symbol's type from its assignments. A type describes what kind of value something holds, such as a number, text, or Boolean value.
Skill Claude Code
A name checker that verifies every required symbol has been declared. A symbol is a named program entity such as a variable or function.
Skill Claude Code
A compiler step that turns an assignment such as `target = expression` into instructions that store a value under a name.
Skill Claude Code
A compiler step that turns an infix expression into a nested expression tree. An expression tree is a structured representation of the parts and nesting of an expression.
Skill Claude Code
A complete compiler pipeline for turning Chinese source code into bytecode. It covers reading source line by line, checking it, and compiling it; bytecode is a compact instruction format for a virtual machine.
Skill Claude Code
A compiler step that defines a function, including where its body starts and where it returns. A function is a named block of code that can be called later.
Skill Claude Code
A compiler skill for turning if/else conditions into low-level instructions. It adds jumps so false conditions skip the correct branch.
Skill Claude Code
A compiler skill for translating logical expressions such as AND and OR into short-circuit jumps. Short-circuiting stops evaluating once the result is already known.
Skill Claude Code
A compiler skill for turning recursive functions into bytecode. Recursion is when a function calls itself, usually with a base case that stops the calls.
Skill Claude Code
A compiler scope-analysis skill for resolving names in nested blocks or functions. It searches from the innermost scope outward, so a nearer definition hides an outer one.
Skill Claude Code
A compiler skill for checking types during compilation. Types describe what kind of values expressions and names contain, such as numbers or text.
Skill Claude Code
A compiler skill for translating while loops into jumps. A while loop checks its condition, runs its body, and repeats until the condition is false.
Skill Claude Code
A compiler optimisation skill for reordering independent instructions, such as moving constant pushes earlier. Optimisation changes instruction arrangement without changing the intended result.
At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: