Skip to main content Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill cybernetic-immuneEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
Explorador de archivos
2 archivos name cybernetic-immune description Cybernetic immune system with Varela+Friston+Powers for Self/Non-Self discrimination via reafference, GF(3) trit encoding, and information geometry version 1.0.0
Cybernetic Immune Skill
"The immune system is a cognitive system: it learns, remembers, and discriminates self from non-self."
— Francisco Varela, Principles of Biological Autonomy (1979)
bmorphism Contributions
"Autopoietic Ergodicity combines the principles of autopoiesis and ergodicity. Autopoiesis refers to the self-maintenance of a system, where the system is capable of reproducing and maintaining itself."
— vibes.lol gist
"Active Inference in String Diagrams: A Categorical Account of Predictive Processing and Free Energy"
— ACT 2023 , Tull, Kleiner, Smithe
Categorical Cybernetics Connection : The immune system's self/non-self discrimination maps directly to:
Reafference (self-caused) → SELF trit (-1)
Exafference (externally-caused) → NON-SELF trit (+1)
Markov blanket → boundary of selfhood
Key Papers (from bmorphism's Plurigrid references):
Related to bmorphism's work on:
plurigrid/act - active inference + ACT + enacted cognition
Autopoietic ergodicity and embodied gradualism
1. Core Concept Self/Non-Self Discrimination via reafference vs exafference:
Reafference : Self-caused sensations (predicted = observed) → tolerate
Exafference : Externally-caused sensations (predicted ≠ observed) → inspect/attack
Trit Classification Immune Role Action -1 SELF T_reg (regulatory) Suppress, tolerate 0 UNKNOWN MHC presentation Inspect, process +1 NON-SELF Effector cells Attack, respond
Autoimmune = GF(3) Conservation Violation : Σ(trits) ≢ 0 mod 3
2. Information Geometry The immune state manifold is a probability simplex with Fisher-Rao metric:
computeFisherInformation ( ) {
const probs = Array .from (this .stateDistribution .values ());
return probs.map ((p, i ) => 1 / Math .max (p, 0.001 ));
}
fisherRaoDistance (dist1, dist2 ) {
let sum = 0 ;
for (const k of keys) {
const p = dist1.get (k) || 0 ;
const q = dist2.get (k) || 0 ;
sum += (Math .sqrt (p) - Math .sqrt (q)) ** 2 ;
}
return 2 * Math .sqrt (sum);
}
Natural Gradient : F⁻¹ · ∇L for efficient belief updating in curved space.
Parallel Transport : Cytokine signals transported along geodesics preserve information content.
3. Immune States const IMMUNE_STATES = {
NAIVE : 'naive' ,
TOLERANT : 'tolerant' ,
ACTIVATED : 'activated' ,
MEMORY : 'memory' ,
ANERGIC : 'anergic'
};
4. Collision → Immune Response
colorSignature (color ) {
const hueBin = Math .floor (color.H / 30 );
return `H${hueBin} T${color.trit} ` ;
}
recognize (antigenColor ) {
const signature = this .colorSignature (antigenColor);
if (this .toleranceList .has (signature)) {
return { classification : 'self' , trit : -1 , action : 'tolerate' };
}
if (this .memory .has (signature)) {
const mem = this .memory .get (signature);
return { trit : mem.trit , action : mem.hostile ? 'attack' : 'tolerate' };
}
return { classification : 'novel' , trit : 0 , action : 'inspect' };
}
5. Cognitive Firewall System-level immune coordination:
class CognitiveFirewall {
constructor (immuneAgents ) {
this .agents = immuneAgents;
this .threatLevel = 0 ;
this .autoimmuneCrisis = false ;
}
coordinatedResponse ( ) {
if (this .autoimmuneCrisis ) {
return { action : 'tolerance_induction' };
}
if (this .threatLevel > 0.5 ) {
return { action : 'coordinated_attack' };
}
return { action : 'homeostasis' };
}
}
6. Parallel Processing (GF(3) Aligned) parallelProcess (allTiles ) {
const partitions = {
minus : agents.filter (a => a.trit === -1 ),
ergodic : agents.filter (a => a.trit === 0 ),
plus : agents.filter (a => a.trit === 1 )
};
for (const [trit, batch] of Object .entries (partitions)) {
for (const agent of batch) {
}
}
const tritBalance = results.minus .length * -1 + results.plus .length * 1 ;
return { conserved : tritBalance % 3 === 0 };
}
7. Cytokine Cascade with Parallel Transport Signals propagate along Fisher-Rao geodesics:
parallelTransport (signal, fromAgent, toAgent ) {
const geodesicDist = this .fisherRaoDistance (
new Map ([[fromAgent.state , 1 ]]),
new Map ([[toAgent.state , 1 ]])
);
const transported = signal.level * Math .exp (-geodesicDist * 0.5 );
return { level : transported, geodesicLoss : signal.level - transported };
}
8. GF(3) Triads # Core Immune Triads
three-match (-1) ⊗ cybernetic-immune (0) ⊗ gay-mcp (+1) = 0 ✓ [Self/Non-Self]
temporal-coalgebra (-1) ⊗ cybernetic-immune (0) ⊗ agent-o-rama (+1) = 0 ✓ [Immune Response]
sheaf-cohomology (-1) ⊗ cybernetic-immune (0) ⊗ koopman-generator (+1) = 0 ✓ [Cytokine Cascade]
shadow-goblin (-1) ⊗ cybernetic-immune (0) ⊗ gay-mcp (+1) = 0 ✓ [T_reg Surveillance]
polyglot-spi (-1) ⊗ cybernetic-immune (0) ⊗ gay-mcp (+1) = 0 ✓ [Cross-Species]
9. Visualization
Immune overlays : Red (activated), Green (tolerant), Yellow (memory), Gray (anergic)
Cytokine network : Orange edges with opacity ∝ signal level
Fisher-Rao manifold inset : 2D projection of immune state space
10. Diagnostics getDiagnostics ( ) {
return {
entropy : H (stateDistribution),
curvature : trace (FisherMatrix ) / n,
threatLevel : activatedCount / total,
autoimmune : tritSum % 3 !== 0
};
}
11. References
Varela — Principles of Biological Autonomy (1979)
Friston — The Free-Energy Principle (2010)
Powers — Behavior: The Control of Perception (1973)
Amari — Information Geometry and Its Applications (2016)
Maturana & Varela — Autopoiesis and Cognition (1980)
12. See Also
Scientific Skill Interleaving This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
Graph Theory
networkx [○] via bicomodule
Bibliography References
game-theory: 21 citations in bib.duckdb
SDF Interleaving This skill connects to Software Design for Flexibility (Hanson & Sussman, 2021):
Primary Chapter: 10. Adventure Game Example Concepts : autonomous agent, game, synthesis
GF(3) Balanced Triad cybernetic-immune (−) + SDF.Ch10 (+) + [balancer] (○) = 0
Skill Trit : -1 (MINUS - verification)
Secondary Chapters
Ch7: Propagators
Ch3: Variations on an Arithmetic Theme
Ch4: Pattern Matching
Connection Pattern Adventure games synthesize techniques. This skill integrates multiple patterns.
Cat# Integration This skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
GF(3) Naturality The skill participates in triads satisfying:
(-1) + (0) + (+1) ≡ 0 (mod 3)
This ensures compositional coherence in the Cat# equipment structure.