FuRongJun-1999

200 mods across 1 repository, 164 stars between them.

compiler-39457d2e

145

FuRongJun-1999/dsh-memory

Skill Claude Code

A handler for bitwise operations, which work on the individual binary digits of values, including AND, OR, XOR, and NOT.

not rated 164 +39 today A 107 tokens original MIT

compiler-39fb5926

146

FuRongJun-1999/dsh-memory

Skill Claude Code

A debugger breakpoint handler for registering, clearing, and checking pause points in a program.

not rated 164 +39 today A 100 tokens original MIT

compiler-47f4fbfa

147

FuRongJun-1999/dsh-memory

Skill Claude Code

A function-call counter that records how many times functions are called and can report the count.

not rated 164 +39 today A 68 tokens original MIT

compiler-4a8cd1f1

148

FuRongJun-1999/dsh-memory

Skill Claude Code

A condition evaluator for Chinese comparison words such as “equal to,” “greater than,” and “less than.” It returns no value when a symbol is not defined or the condition does not apply.

not rated 164 +39 today A 135 tokens original MIT

compiler-4b230b6b

149

FuRongJun-1999/dsh-memory

Skill Claude Code

A parser for an empty or absent value, mapping it to None, the value used to represent no value in many programming languages.

not rated 164 +39 today A 103 tokens original MIT

compiler-4cbbda95

150

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler instruction mapper that translates supported instruction kinds into internal operations or paths.

not rated 164 +39 today A 79 tokens original MIT

compiler-4d5a68ff

151

FuRongJun-1999/dsh-memory

Skill Claude Code

A checker for whether a condition uses only names in a declared type space, meaning the set of types allowed in that context.

not rated 164 +39 today A 107 tokens original MIT

compiler-56dc9bdd

152

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexer that attaches a source-line number to each token, where a token is a small piece of program text such as a word or symbol.

not rated 164 +39 today A 101 tokens original MIT

compiler-57e76ebe

153

FuRongJun-1999/dsh-memory

Skill Claude Code

An array-literal parser for bracketed lists whose elements are separated by commas.

not rated 164 +39 today A 110 tokens copy · 86% MIT

compiler-61ff016b

154

FuRongJun-1999/dsh-memory

Skill Claude Code

A name-binding checker that confirms every name used in a reference is linked to a real entity, such as a declared variable or object.

not rated 164 +39 today A 115 tokens original MIT

compiler-63eae588

155

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexical helper that converts the Chinese boolean words “真” and “假” into the boolean values True and False.

not rated 164 +39 today A 86 tokens original MIT

compiler-64c4224b

156

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler helper for turning assignments and two-part calculations into three-address code, a simple intermediate form with one operation per instruction.

not rated 164 +39 today A 80 tokens original MIT

compiler-66377955

157

FuRongJun-1999/dsh-memory

Skill Claude Code

A register-allocation helper that assigns temporary values to processor registers using their active time ranges and a greedy conflict-colouring method.

not rated 164 +39 today A 116 tokens copy · 86% MIT

compiler-674ab4f6

158

FuRongJun-1999/dsh-memory

Skill Claude Code

A bytecode integrity checker that verifies a C3 .pbc file with an XOR checksum, a small calculation used to detect changed or damaged data.

not rated 164 +39 today A 114 tokens original MIT

compiler-6af76fd6

159

FuRongJun-1999/dsh-memory

Skill Claude Code

A constant-pool helper that stores each literal once and lets compiled code refer to it by an index, such as an LDC reference.

not rated 164 +39 today A 91 tokens original MIT

compiler-6d979db2

160

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler-optimization helper that evaluates operations on known constants while compiling, replacing pushes and arithmetic with the resulting constant.

not rated 164 +39 today A 118 tokens original MIT

compiler-6de326c0

161

FuRongJun-1999/dsh-memory

Skill Claude Code

An escape-analysis helper that checks whether an object leaves the function that created it, for example by being returned or stored elsewhere.

not rated 164 +39 today A 111 tokens copy · 72% MIT

compiler-6f1c0eea

162

FuRongJun-1999/dsh-memory

Skill Claude Code

A preprocessing helper that removes hash-prefixed line comments, including comments written in Chinese, before later code processing.

not rated 164 +39 today A 124 tokens copy · 72% MIT

compiler-724d6c9b

163

FuRongJun-1999/dsh-memory

Skill Claude Code

A type-conversion helper that applies a rule table to implicit and explicit conversions, such as converting between numbers and text.

not rated 164 +39 today A 105 tokens original MIT

compiler-7690177f

164

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler operation that joins adjacent constant strings during compilation. This is called constant folding: calculating a fixed result before the program runs.

not rated 164 +39 today A 109 tokens original MIT

compiler-7b229a7d

165

FuRongJun-1999/dsh-memory

Skill Claude Code

A bytecode encoder and decoder for compact representations using variable-length integers. Bytecode is the lower-level instruction data produced by a compiler.

not rated 164 +39 today A 104 tokens original MIT

compiler-7f471b3a

166

FuRongJun-1999/dsh-memory

Skill Claude Code

A control-flow analysis that divides instructions into basic blocks. A basic block is a straight-line sequence with one entry point, split at jump targets and jump instructions.

not rated 164 +39 today A 101 tokens original MIT

compiler-815cad08

167

FuRongJun-1999/dsh-memory

Skill Claude Code

A syntax operation for compound assignments such as `+=`. It represents the operation as loading a value, applying an operation, and storing the result.

not rated 164 +39 today A 89 tokens original MIT

compiler-83c61634

168

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler pipeline for statically checking condition-based code and then producing bytecode. Static checking finds certain errors before execution.

not rated 164 +39 today A 111 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: