Claude-skill-registry fibonacci-number

Calculates the nth entry in the Fibonacci sequence. Use this when asked to calculate Fibonacci numbers.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/dominino-number-calculator" ~/.claude/skills/majiayu000-claude-skill-registry-fibonacci-number && rm -rf "$T"
manifest: skills/data/dominino-number-calculator/SKILL.md
source content

Fibonacci Calculation with Python

This skill helps you to calculate Fibonacci numbers using a very efficient algorithm.

When to use this skill

Use this skill when you need to calculate Fibonacci numbers.

To access the skill

Run python fib.py and pass it N on the command line.

python <full_path_to_skill>/fib.py <N>

Example

This will output the 100th Fibonacci number.

python C:/Users/Fred/.agentc/skills/fibonacci-number/fib.py 100