FuRongJun-1999

200 mods across 1 repository, 159 stars between them.

compiler-0355bffb

121

FuRongJun-1999/dsh-memory

Skill Claude Code

A virtual-machine debugging skill for executing one instruction at a time. A virtual machine is a program that runs a compact instruction format instead of native machine code.

not rated 159 +39 yesterday A 118 tokens original MIT

compiler-0361708a

122

FuRongJun-1999/dsh-memory

Skill Claude Code

A parser skill for reading tuple literals such as (item1, item2). A parser turns source text into a structured form that later compiler stages can use.

not rated 159 +39 yesterday A 103 tokens copy · 77% MIT

compiler-054a0414

123

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler-analysis skill for building a dominator tree. A node dominates another when every path from the program entry must pass through it first.

not rated 159 +39 yesterday A 85 tokens original MIT

compiler-05a1691a

124

FuRongJun-1999/dsh-memory

Skill Claude Code

A runtime trust check that allows or rejects an operation by comparing a trust value with a required threshold.

not rated 159 +39 yesterday A 113 tokens original MIT

compiler-05eeed1e

125

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler-scope skill for finding which value a name refers to, checking inner scopes before outer scopes.

not rated 159 +39 yesterday A 126 tokens original MIT

compiler-0622a1f6

126

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimisation skill that replaces small function calls with the function body itself; this is called inlining.

not rated 159 +39 yesterday A 109 tokens original MIT

compiler-08b54217

127

FuRongJun-1999/dsh-memory

Skill Claude Code

A register-allocation skill for spilling a live variable to memory when the available processor registers are full.

not rated 159 +39 yesterday A 138 tokens copy · 78% MIT

compiler-0a62b70c

128

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler skill for reading number literals such as integers, decimal values, and hexadecimal values.

not rated 159 +39 yesterday A 116 tokens original MIT

compiler-0ab24d00

129

FuRongJun-1999/dsh-memory

Skill Claude Code

A code-analysis skill for calculating cyclomatic complexity, a measure based on the number of decision points in code.

not rated 159 +39 yesterday A 110 tokens original MIT

compiler-0e093688

130

FuRongJun-1999/dsh-memory

Skill Claude Code

A static-analysis skill for marking data as tainted and tracking where that mark propagates through code.

not rated 159 +39 yesterday A 83 tokens original MIT

compiler-0e82b966

131

FuRongJun-1999/dsh-memory

Skill Claude Code

A skill for connecting protocol-compiler token names to the instruction names used by another system.

not rated 159 +39 yesterday A 101 tokens original MIT

compiler-0ee9b9b9

132

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexer skill for checking whether text matches a keyword table and classifying a match as a keyword token.

not rated 159 +39 yesterday A 101 tokens original MIT

compiler-0f3787e6

133

FuRongJun-1999/dsh-memory

Skill Claude Code

A skill for loading compiled bytecode from a .pbc file, which stores a program in a form a runtime can execute or process.

not rated 159 +39 yesterday A 119 tokens original MIT

compiler-1028685f

134

FuRongJun-1999/dsh-memory

Skill Claude Code

A peephole-optimisation skill that examines short sequences of instructions and replaces known redundant patterns with simpler ones, such as PUSH 0 followed by ADD.

not rated 159 +39 yesterday A 103 tokens copy · 86% MIT

compiler-11897630

135

FuRongJun-1999/dsh-memory

Skill Claude Code

A coverage skill that marks or reports how much of a set of instructions is covered by tests. Test coverage is a measure of which code paths tests exercise.

not rated 159 +39 yesterday A 83 tokens original MIT

compiler-16661b9b

136

FuRongJun-1999/dsh-memory

Skill Claude Code

A register-allocation skill that assigns program variables to a small number of fast processor storage locations, moving some values to memory when needed.

not rated 159 +39 yesterday A 121 tokens original MIT

compiler-1f722303

137

FuRongJun-1999/dsh-memory

Skill Claude Code

A bracket-matching skill that checks whether parentheses, square brackets, and braces open and close in the right order, including nested pairs.

not rated 159 +39 yesterday A 115 tokens copy · 86% MIT

compiler-25be1262

138

FuRongJun-1999/dsh-memory

Skill Claude Code

An instruction-selection skill that translates an intermediate representation, or IR, into instructions for a target processor. IR is a compiler's machine-independent form of a program.

not rated 159 +39 yesterday A 93 tokens original MIT

compiler-2a76ba07

139

FuRongJun-1999/dsh-memory

Skill Claude Code

A tail-call-optimisation skill that replaces a final function call with a jump when possible. A tail call is a call that is the last operation in the current function.

not rated 159 +39 yesterday A 115 tokens copy · 86% MIT

compiler-2dbea54a

140

FuRongJun-1999/dsh-memory

Skill Claude Code

A cycle-detection skill that checks a directed graph for loops using depth-first search, a method that follows each path before backtracking.

not rated 159 +39 yesterday A 101 tokens original MIT

compiler-2df52f16

141

FuRongJun-1999/dsh-memory

Skill Claude Code

An instruction-fusion skill that combines certain neighbouring machine instructions into one equivalent instruction, such as replacing LOAD followed by STORE with MOV.

not rated 159 +39 yesterday A 94 tokens original MIT

compiler-2ec2c9d2

142

FuRongJun-1999/dsh-memory

Skill Claude Code

An active-variable analysis skill that identifies whether a variable's current value will be used later. A variable with no later use is dead at that point.

not rated 159 +39 yesterday A 110 tokens original MIT

compiler-2f8c8f39

143

FuRongJun-1999/dsh-memory

Skill Claude Code

A call-graph skill that maps which functions call which other functions. A call graph is a network whose nodes are functions and whose links represent calls.

not rated 159 +39 yesterday A 104 tokens original MIT

compiler-38378ac7

144

FuRongJun-1999/dsh-memory

Skill Claude Code

A top-level compiler that turns a list of program statements into bytecode, a lower-level instruction format for execution.

not rated 159 +39 yesterday A 118 tokens original MIT

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: