Agent skill

bifurcation

Hopf bifurcation detection for dynamical system state transitions with GF(3) phase portraits

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill bifurcation-plurigrid-asi --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/analysis/bifurcation-plurigrid-asi/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Bifurcation **Detects and navigates bifurcation points in dynamical systems where qualitative behavior changes.** **Trit**: 0 (ERGODIC - Coordinator between stable states) **Color**: #9966FF (Purple - neutral zone bridging warm/cold) --- ## Core Concepts ### Bifurcation Types | Type | Description | GF(3) Mapping | |------|-------------|---------------| | **Saddle-Node** | Two equilibria collide and annihilate | PLUS ↔ MINUS collision | | **Hopf** | Equilibrium → limit cycle | ERGODIC spawns oscillation | | **Pitchfork** | Symmetry-breaking | One ERGODIC → two ±PLUS/MINUS | | **Transcritical** | Exchange of stability | PLUS ↔ MINUS swap roles | | **Period-Doubling** | Route to chaos | Trit cascade: 0 → 1 → -1 → 0... | --- ## Hopf Bifurcation Detection ```python import numpy as np from scipy.linalg import eig def detect_hopf(jacobian_fn, params, param_name, param_range): """ Detect Hopf bifurcation by finding where eigenvalues cross imaginary axis. At Hopf bifurcation: - Pair of complex conjugate eigenvalues - Real part crosses zero - Imaginary part nonzero (oscillation frequency) """ bifurcation_points = [] for p in param_range: params[param_name] = p J = jacobian_fn(params) eigen

What's inside
Steps it walks through
  1. Core Concepts
  2. Bifurcation Types
  3. Hopf Bifurcation Detection
  4. GF(3) Phase Portrait
  5. Bifurcation Diagram Generator
  6. State Transition Detection
  7. Triadic Bifurcation Analysis
  8. Integration with ruler-maximal
  9. Commands
  10. References
  11. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
Analyze system for bifurcations
bb -e '(bifurcation/analyze system params)'
Generate bifurcation diagram
bb scripts/bifurcation_diagram.bb --param r --range "2.5:4.0:0.001"
Monitor real-time state transitions
bb scripts/bifurcation_monitor.bb --system lorenz
More from claude-skill-registry
All skills →
About this skill
What does the bifurcation skill do?

Hopf bifurcation detection for dynamical system state transitions with GF(3) phase portraits

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill bifurcation-plurigrid-asi --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going