fibonacci-optimization
Optimización evolutiva y paramétrica basada en Fibonacci y el Número Áureo (phi).
npx skills add majiayu000/claude-skill-registry --skill fibonacci-optimization --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Skill: Fibonacci & Golden Ratio Optimization ## Contexto El uso de la secuencia de Fibonacci y el Número Áureo ($\phi \approx 1.618$) para optimizar búsquedas, tamaños de población y distribución de parámetros. Inspirado en la eficiencia de la naturaleza. ## Cuándo Usar - Optimización de hiperparámetros (tuning de temperatura, top-p, etc.). - Gestión de población en algoritmos genéticos (FSGA). - Búsquedas espaciales o muestreo uniforme (Spiral Sampling). - Estrategias de reintento/backoff (Fibonacci backoff). ## Patrones de Implementación ### 1. Fibonacci Population Control (FSGA) Dinámica de población que permite exploración amplia inicial y refinamiento denso posterior. ```python def fib_pop_size(generation, base=10): a, b = 1, 1 for _ in range(generation): a, b = b, a + b return b * base ``` ### 2. Golden Section Search Para encontrar el óptimo global en funciones unimodales sin usar derivadas. ```python def golden_search(f, a, b, tol=1e-5): phi = (1 + 5**0.5) / 2 resphi = 2 - phi c = a + resphi * (b - a) d = b - resphi * (b - a) # ... loop de reducción de intervalo ... ``` ### 3. Fibonacci Spiral Sampling Distribución uniforme de puntos para evitar sesgos en el espacio de pa
- Contexto
- Cuándo Usar
- Patrones de Implementación
- 1. Fibonacci Population Control (FSGA)
- 2. Golden Section Search
- 3. Fibonacci Spiral Sampling
- Reglas Críticas
- Recursos Relacionados
What does the fibonacci-optimization skill do?
Optimización evolutiva y paramétrica basada en Fibonacci y el Número Áureo (phi).
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill fibonacci-optimization --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.
