Agent skill

fibonacci-optimization

Optimización evolutiva y paramétrica basada en Fibonacci y el Número Áureo (phi).

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill fibonacci-optimization --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/ai-ml/fibonacci-optimization/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

# 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

What's inside
Steps it walks through
  1. Contexto
  2. Cuándo Usar
  3. Patrones de Implementación
  4. 1. Fibonacci Population Control (FSGA)
  5. 2. Golden Section Search
  6. 3. Fibonacci Spiral Sampling
  7. Reglas Críticas
  8. Recursos Relacionados
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going