Generate bifurcation diagrams for dynamical systems. Use when visualizing parameter-dependent behavior transitions.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill bifurcation-generator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Bifurcation Generator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-bifurcation-generator-asi)More formats (shields.io, HTML) on the badges page.
---
name: bifurcation-generator
description: Generate bifurcation diagrams for dynamical systems. Use when visualizing parameter-dependent behavior transitions.
metadata:
trit: 1
created_with: amp
---
# Bifurcation Generator
Generates bifurcation diagrams showing how system behavior changes with parameters.
## When to Use
- Visualizing Hopf, pitchfork, saddle-node bifurcations
- Parameter sweeps in dynamical systems
- Stability boundary identification
## GF(3) Role
PLUS (+1) Generator - creates visual outputs from system parameters.
## Quick Examples
```python
# 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
```
## Integration with bifurcation (0) skill
This skill (PLUS +1) pairs with `bifurcation` (ERGODIC 0) for balanced analysis:
- bifurcation: detects and classifies transitions
- bifurcation-generator: visualizes parameter space
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...
Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.
Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API
Get current weather and forecasts (no API key required).