npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
Generates bifurcation diagrams showing how system behavior changes with parameters.
Generates phase portraits for 2D dynamical systems to visualize vector fields, nullclines, equilibria, and trajectories using Python and matplotlib.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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: