Generate bifurcation diagrams for dynamical systems. Use when visualizing parameter-dependent behavior transitions.
/plugin marketplace add plurigrid/asi/plugin install asi-skills@asi-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Generates bifurcation diagrams showing how system behavior changes with parameters.
PLUS (+1) Generator - creates visual outputs from system parameters.
# Logistic map bifurcation
import numpy as np
import matplotlib.pyplot as plt
def logistic_bifurcation(r_min=2.5, r_max=4.0, steps=1000):
r_vals = np.linspace(r_min, r_max, steps)
x = 0.5
for r in r_vals:
for _ in range(100): # transient
x = r * x * (1 - x)
for _ in range(50): # attractor
x = r * x * (1 - x)
yield r, x
This skill (PLUS +1) pairs with bifurcation (ERGODIC 0) for balanced analysis:
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.