Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

youversion-platform-apiyouversion platform API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

196

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youversion-platform-api(youversion platform API 搜索)
来源仓库:https://github.com/youversion/platform-skills
仓库路径:skills/youversion-platform-api
安装命令:
npx skills add https://github.com/youversion/platform-skills --skill youversion-platform-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/youversion/platform-skills --skill youversion-platform-api

简介

用于辅助 YouVersion 平台的 API 设计与集成开发。

  • 帮助梳理接口路径、参数结构与响应格式。
  • 适用于圣经应用、经文查询类服务的后端对接。
  • 需遵循官方认证机制并避免虚构未经验证的字段。
  • youversion-platform-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

YouVersion Platform API

Use this skill for raw HTTP answers.

Use This Skill When

  • The user wants raw REST calls instead of the React SDK @youversion/platform-core or Swift or Kotlin SDKs.
  • The user wants exact method, URL, headers, query parameters, or response JSON.
  • The user is working in a runtime where plain HTTP is more helpful than an SDK.
  • The user wants examples in cURL, fetch, Python, Go, or another non-SDK client.

Reach For Another Skill When

  • The user explicitly wants the JavaScript or TypeScript SDK. Use youversion-platform-js.
  • The user wants a React app or prebuilt React Bible UI components. Use the React-focused YVP skill instead of building from raw REST.

YVP Mental Model

  • Every request needs an app key in the X-YVP-App-Key header. App keys are not secrets.
  • Bible versions are identified by numeric ids such as 3034 or 111.
  • Bible availability depends on the current app key and accepted licenses, so discovery must come from the API itself.
  • Passage ids use USFM notation such as JHN.3.16, GEN.1, or JHN.1.1-3.
  • Passage responses are JSON wrappers. The scripture payload is in content, usually as text or html.
  • Attribution matters. When showing Bible text, include the version name or abbreviation plus copyright.

Default Workflow

  1. Determine the user's runtime and answer in that runtime's normal HTTP client instead of introducing an SDK.
  2. Check that a YouVersion Platform app key is available, usually as YVP_APP_KEY. If not, ask for it or point the user to https://platform.youversion.com.
  3. Use https://api.youversion.com as the fixed server and always include /v1 in the path.
  4. Send X-YVP-App-Key on every request and include Accept: application/json.
  5. For Bible discovery, default to GET /v1/bibles?language_ranges[]=en unless the user wants another language. Other common codes: es, de, fr, pt.
  6. Explain that GET /v1/bibles returns versions visible to the current app key and license state. Add all_available=true only when the user explicitly wants every available Bible surfaced.
  7. If the user names only a language, title, or abbreviation but does not provide a version id, do not invent one. Show the discovery request first and explain how to identify the right object in the response.
  8. For Bible metadata, use GET /v1/bibles/{versionId}. Use 3034 as the default public-domain example and mention 111 only as a common licensed example.
  9. For scripture, use GET /v1/bibles/{versionId}/passages/{usfm}. Default to format=text unless the user specifically wants html.
  10. Add include_headings=true or include_notes=true only when the user asks for those extras. include_notes=true adds footnotes to HTML responses.
  11. If the user wants something they can open in a browser, return a complete HTML document rather than only the API call. When rendering format=html, include this stylesheet exactly:
<link rel="stylesheet" href="https://cdn.youversion.com/platform/1/bible.css" />
  1. If the user does not name a language or runtime, start with cURL because it is the most portable raw HTTP example, then add one language-specific example only if it clearly helps.

Response style

  • Give the exact method, URL, headers, and query parameters first.
  • Prefer one runnable raw HTTP example in the user's language over several disconnected snippets.
  • Do not switch to @youversion/platform-core or any other SDK unless the user explicitly asks for an SDK. SDKs are available for TypeScript, React, Swift, and Kotlin - using them will save time and effort for many use cases, but straight API usage can also be great.
  • Use YVP_APP_KEY in examples unless the user's project already uses another environment variable name.
  • Show only the response fields the user needs, such as data, id, content, and reference, unless they ask for the full schema.
  • When the user wants a browser-openable deliverable, produce the full HTML document instead of stopping at passage.content.
  • Never fabricate Bible text. Hallucinating scripture content is unacceptable in this skill.
  • When the answer depends on live API results, such as which Bibles are available, which version id matches an abbreviation, or what passage text is returned, do not claim exact results unless you actually executed the request in the current environment. Otherwise show the request to run and explain what to look for.
  • For discovery-dependent questions, default to this structure: (1) show the discovery request, (2) explain how to identify the desired item in the response, and (3) only state the exact id, version list, or passage text if you actually executed the request in the current environment.
  • For API lookup questions, the YouVersion Platform API is the only acceptable source of truth. Do not use bible.com pages, web search results, or other non-API pages to infer which Bible ids are available to the app key, nor for getting Bible text, etc.

Default request shape

GET https://api.youversion.com/v1/...
X-YVP-App-Key: YOUR_APP_KEY
Accept: application/json

Most commonly used endpoints:

  1. GET /v1/bibles?language_ranges[]=en
  2. GET /v1/bibles/3034
  3. GET /v1/bibles/3034/passages/JHN.3.16?format=text

Endpoint notes

List Bibles

Use GET /v1/bibles for version discovery.

  • language_ranges[] is required and uses repeated bracket notation such as language_ranges[]=en&language_ranges[]=es.
  • When multiple language ranges are provided, the API returns results from the first language range that has available Bibles.
  • This collection is paginated. Use next_page_token from the response as page_token on the next request when needed.
  • Only when 1 to 3 fields are requested, you can add page_size=* to avoid pagination. For example, https://api.youversion.com/v1/bibles?language_ranges%5B%5D=*&fields%5B%5D=id&fields%5B%5D=localized_title&page_size=* quickly returns ids and titles of the available versions in every language.
  • all_available=true includes Bibles regardless of the current license state for the app key.
  • If the user asks for the id of a Bible by abbreviation or title, show a filtered discovery request and tell them which response fields to inspect. Do not state the id unless you actually ran the request in the current environment.
  • For prompts like "what is the id of BDS" or "find the French BDS version id", prefer wording like "Run this request and look for the object whose abbreviation is BDS" rather than "The id is...", unless you actually executed the request in the current environment.
  • Do not look up Bible ids from bible.com version pages for these tasks. The API response for the current app key is the authoritative source for which ids should be used.

For example: curl -s -H "x-yvp-app-key: $YVP_APP_KEY" 'https://api.youversion.com/v1/bibles?language_ranges[]=fr'

Read references/response-shapes.md for an example response object from this call.

Get Bible metadata

Use GET /v1/bibles/{bible_id} to fetch metadata for one version.

  • Default example: GET /v1/bibles/3034
  • Useful response fields include id, abbreviation, title, localized_title, language_tag, copyright, promotional_content, books, and youversion_deep_link.

For example: curl -s -H "x-yvp-app-key: $YVP_APP_KEY" 'https://api.youversion.com/v1/bibles/3034'

Read references/response-shapes.md for an example response object from this call.

Get passage text or html

Use GET /v1/bibles/{bible_id}/passages/{passage_id} for scripture content.

  • Default example: GET /v1/bibles/3034/passages/JHN.3.16?format=text
  • format supports text and html. The default is text.
  • The response is JSON. The actual passage payload is in content.
  • The reference can be a range of verses, e.g. JHN.3.16-17 but every range must be within a single chapter. Make multiple calls if you need a cross-chapter range.
  • Use include_headings=true and include_notes=true when the user wants those sections included.
  • reference is the human-readable label to display alongside the content.
  • When rendering format=html in a page, include the YVP Bible stylesheet so verse numbers and formatting render correctly.
  • If the user has not supplied a Bible version id, do not guess one from the language alone. Show the discovery call first, or explain that the version id must be chosen before the passage call can be written precisely.
  • If you have not actually executed the passage request, do not quote the returned scripture text. Show the request that would fetch it and explain that content will hold the returned text or html.
  • Bible text needs attribution: the version abbreviation (or title) and the copyright need to be displayed somewhere appropriate for the specific UI. We hugely appreciate the publishers and they deserve credit for their work. Every Bible version's metadata has abbreviation, localized_title, and copyright fields; display them somewhere good.

For example: curl -s -H "x-yvp-app-key: $YVP_APP_KEY" "https://api.youversion.com/v1/bibles/111/passages/GEN.1.1?format=text"

Read references/response-shapes.md for an example response object from this call.

Other Endpoints

Other endpoints are available to be called, to get more bible metadata, to enumerate languages and get their metadata, to get the YouVersion Verse of the Day, and more. The documentation is at "https://developers.youversion.com/api/bibles"

Gotchas

  • Always include X-YVP-App-Key on every request, otherwise it will be rejected.
  • App keys are NOT secrets; they can be included in source code.
  • Always include language_ranges[] when calling /v1/bibles.
  • Do not assume every Bible is available to every app key.
  • Do not assume every book is available in every Bible version: for example some versions only have the New Testament books.
  • Do not invent live API results. If you have not actually made the request, do not claim exact Bible ids, exact available-version lists, or exact returned passage text.
  • Do not fabricate Bible text under any circumstances. Only quote or paraphrase returned scripture content if you actually executed the request in the current environment or the user supplied the text.
  • Do not imply that you executed a request unless you actually did so in the current environment.
  • Do not use bible.com pages or general web search as a shortcut for API-discovery answers that should come from /v1/bibles.
  • Default to format=text; request format=html only when the user actually wants markup.
  • Keep passage identifiers in USFM form such as JHN.3.16, GEN.1, or MAT.1.1.
  • Keep answers coding-language-agnostic unless the user names a language or framework.

References to load on demand

  • Read references/raw-http-examples.md when the user wants copy-paste examples in cURL, browser JavaScript, Node.js, Python, or Go.
  • Read references/response-shapes.md when the user needs shorthand JSON schemas for the main /v1 responses.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.88%
按下载量换算22

Claude

30.63%
按下载量换算19

Cursor

17.42%
按下载量换算11

Gemini CLI

9.04%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills