Agent skill

bible-lookup-helper

Expert assistant for Bible reference lookups and RPC function usage in the KR92 Bible Voice project. Use when fetching Bible verses, generating verse lookups, validating references, working with OSIS format, or choosing optimal lookup patterns.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill bible-lookup-helper --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/api/bible-lookup-helper/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

# Bible Lookup Helper ## Capabilities - Generate correct RPC function calls for Bible lookups - Validate OSIS reference formats - Suggest optimal lookup patterns (verse vs chapter vs range) - Provide book name aliases and normalization - Convert between different reference formats ## Usage Examples ### Example 1: Generate RPC call for single verse **User:** "How do I fetch John 3:16 in Finnish?" **Assistant:** ```typescript const { data } = await supabase.rpc('get_verse_by_ref', { p_ref_book: 'John', p_chapter: 3, p_verse: 16, p_version_code: 'finstlk201', p_language_code: 'fi' }); ``` ### Example 2: Generate RPC call for chapter **User:** "Get all verses from Genesis chapter 1" **Assistant:** ```typescript const { data: verses } = await supabase.rpc('get_chapter_by_ref', { p_ref_book: 'Genesis', p_chapter: 1, p_version_code: 'finstlk201', p_language_code: 'fi' }); ``` ### Example 3: Validate reference format **User:** "Is '1. Joh.4:8' a valid reference?" **Assistant:** Yes, this is valid. It follows the Finnish format for numbered books: - Book: 1. Johannes (1 John) - Chapter: 4 - Verse: 8 Alternative valid formats: - `1 Joh.4:8` (without period after number) - `1.Joh.4:8` (no spa

What's inside
Steps it walks through
  1. Capabilities
  2. Usage Examples
  3. Example 1: Generate RPC call for single verse
  4. Example 2: Generate RPC call for chapter
  5. Example 3: Validate reference format
  6. Example 4: Convert reference formats
  7. Available RPC Functions
  8. Single Verse
  9. Full Chapter
  10. Verse Range
  11. Verse Study (with Strong's)
  12. Text Search
  13. Supported Bible Versions
  14. Book Name Aliases
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the bible-lookup-helper skill do?

Expert assistant for Bible reference lookups and RPC function usage in the KR92 Bible Voice project. Use when fetching Bible verses, generating verse lookups, validating references, working with OSIS format, or choosing optimal lookup patterns.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill bible-lookup-helper --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