FuRongJun-1999/dsh-memory

Exploring a white-box AGI architecture: metacognition (self-awareness loops), continual learning (knowledge flywheel), world models (conditional space + semantic spatiotemporal graphs), self-improvement (bootstrapping discipline), zero-LLM white-box pipelines, and auditable trust guardrails.

164Stars on the repository
200Mods indexed here, across every type
todayLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

compiler-8c798c81

169

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexer operation that decodes supported escape sequences, such as `\n`, `\t`, and escaped quotes. Escape sequences let source text represent special characters.

not rated 164 +39 today A 98 tokens original MIT

compiler-8dd747ac

170

FuRongJun-1999/dsh-memory

Skill Claude Code

A syntax operation for dictionary literals such as `{key: value}`. It reads the key-value pairs between the braces.

not rated 164 +39 today A 115 tokens copy · 83% MIT

compiler-90324d0a

171

FuRongJun-1999/dsh-memory

Skill Claude Code

A compile-time check that confirms every condition space used by code has already been declared. Here, a condition space is treated as part of the type system.

not rated 164 +39 today A 117 tokens original MIT

compiler-94b8d72d

172

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler analysis for finding names used inside a nested function that come from an outer scope. These names are called free variables and may need to be stored for the nested function.

not rated 164 +39 today A 130 tokens original MIT

compiler-94f12231

173

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexer operation that reads identifiers: continuous sequences of letters, numbers, underscores, or supported CJK characters. A lexer is the part of a compiler that turns source text into tokens.

not rated 164 +39 today A 106 tokens original MIT

compiler-95937c16

174

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexer component that reads quoted string values, handles escape characters, and marks strings that do not have a closing quote. A lexer is the part of a language tool that breaks source text into tokens.

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

compiler-98a5625b

175

FuRongJun-1999/dsh-memory

Skill Claude Code

A debugger feature that pauses a program only when a specified condition is true. A debugger is a tool for stopping and examining a running program.

not rated 164 +39 today A 78 tokens original MIT

compiler-98b4c42f

176

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that copies a loop body a fixed number of times instead of repeating the loop control for every iteration. Loop unrolling can make some code faster, but excessive copying can make programs larger.

not rated 164 +39 today A 97 tokens original MIT

compiler-98e3894a

177

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that replaces a call through a class interface with a direct call when there is only one possible implementation. This removes a level of method-selection work.

not rated 164 +39 today A 97 tokens original MIT

compiler-9bdfe4b8

178

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that moves a calculation outside a loop when its result does not change between iterations. The calculation then runs once instead of repeatedly.

not rated 164 +39 today A 107 tokens original MIT

compiler-9d9b4e83

179

FuRongJun-1999/dsh-memory

Skill Claude Code

A syntax handler for conditional expressions written as condition, question mark, true value, colon, and false value. It chooses one of two values based on the condition.

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

compiler-9f7be5ad

180

FuRongJun-1999/dsh-memory

Skill Claude Code

A character classifier that labels each character as a letter, number, whitespace, or other character. This is a basic step in turning source text into meaningful language elements.

not rated 164 +39 today A 109 tokens copy · 81% MIT

compiler-a6daf076

181

FuRongJun-1999/dsh-memory

Skill Claude Code

A bytecode inspection tool that lists low-level instructions with their addresses, operations, and arguments. Bytecode is the intermediate code produced by a compiler before a program runs.

not rated 164 +39 today A 105 tokens original MIT

compiler-a7995a0c

182

FuRongJun-1999/dsh-memory

Skill Claude Code

A debugging tool that shows the error location and the chain of function calls that led there. This chain is often called a stack trace or traceback.

not rated 164 +39 today A 106 tokens original MIT

compiler-a8399248

183

FuRongJun-1999/dsh-memory

Skill Claude Code

A syntax handler that splits multiple statements separated by semicolons into an ordered sequence. A statement is one complete instruction in a programming language.

not rated 164 +39 today A 110 tokens original MIT

compiler-aabbd099

184

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that removes instructions which cannot be reached, such as instructions after an unconditional jump. A compiler turns source code into executable instructions.

not rated 164 +39 today A 88 tokens original MIT

compiler-afe169d8

185

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that moves instructions earlier when they do not depend on instructions around them. Instruction scheduling arranges compiled operations while preserving their required dependencies.

not rated 164 +39 today A 106 tokens copy · 81% MIT

compiler-b0678bda

186

FuRongJun-1999/dsh-memory

Skill Claude Code

A data-flow analysis that tracks where values are defined and where they are used. A def-use chain links an assignment of a value to the later code that reads it.

not rated 164 +39 today A 91 tokens original MIT

compiler-b09bd196

187

FuRongJun-1999/dsh-memory

Skill Claude Code

A lexical check for suffixes on numeric literals, such as hexadecimal or binary notation and k or m suffixes. Lexical analysis is the step that splits source text into meaningful tokens.

not rated 164 +39 today A 104 tokens original MIT

compiler-b1396e23

188

FuRongJun-1999/dsh-memory

Skill Claude Code

A loop-cost estimate based on the number of instructions in the loop body multiplied by the number of iterations. A loop repeats the same block of program code.

not rated 164 +39 today A 109 tokens copy · 80% MIT

compiler-b9b31ce0

189

FuRongJun-1999/dsh-memory

Skill Claude Code

A bytecode instruction-size check that measures how many encoded bytes each instruction uses. Bytecode is the compact form of program instructions used by a runtime or virtual machine.

not rated 164 +39 today A 107 tokens original MIT

compiler-c10264a7

190

FuRongJun-1999/dsh-memory

Skill Claude Code

A compiler optimization that replaces a variable known to have a constant value with that value directly. A compiler translates source code into instructions for a computer.

not rated 164 +39 today A 107 tokens original MIT

compiler-cb1e8e4b

191

FuRongJun-1999/dsh-memory

Skill Claude Code

A debugger variable watch that looks up a watched name in the program's symbol table and returns its current value. A debugger is a tool for inspecting a program while it runs.

not rated 164 +39 today A 110 tokens original MIT

compiler-ccafd438

192

FuRongJun-1999/dsh-memory

Skill Claude Code

A file-header check for C3 .pbc files. It checks the file's identifying marker, called a magic number, and whether its format version is compatible.

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