Skill Claude Code
A handler for bitwise operations, which work on the individual binary digits of values, including AND, OR, XOR, and NOT.
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.
Skill Claude Code
A handler for bitwise operations, which work on the individual binary digits of values, including AND, OR, XOR, and NOT.
Skill Claude Code
A debugger breakpoint handler for registering, clearing, and checking pause points in a program.
Skill Claude Code
A function-call counter that records how many times functions are called and can report the count.
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.
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.
Skill Claude Code
A compiler instruction mapper that translates supported instruction kinds into internal operations or paths.
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.
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.
Skill Claude Code
An array-literal parser for bracketed lists whose elements are separated by commas.
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.
Skill Claude Code
A lexical helper that converts the Chinese boolean words “真” and “假” into the boolean values True and False.
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.
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.
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.
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.
Skill Claude Code
A compiler-optimization helper that evaluates operations on known constants while compiling, replacing pushes and arithmetic with the resulting constant.
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.
Skill Claude Code
A preprocessing helper that removes hash-prefixed line comments, including comments written in Chinese, before later code processing.
Skill Claude Code
A type-conversion helper that applies a rule table to implicit and explicit conversions, such as converting between numbers and text.
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.
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.
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.
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.
Skill Claude Code
A compiler pipeline for statically checking condition-based code and then producing bytecode. Static checking finds certain errors before execution.
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: