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

riskos-integration-skill风险整合能力

Agent Skill

riskos-integration-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/socure-inc/riskos-skill --skill riskos-integration-skill

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于信息检索、关键词搜索和结果筛选场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能。
  • 需确认权限范围和维护状态,注意是否会触发联网、命令执行或文件读写操作。
  • riskos-integration-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Objective

Guide the user through a complete, working integration with the RiskOS Platform.

The integration is considered successful only when a client application can invoke a live Sandbox workflow by making an API call, receive a RiskOS decision (Accept, Reject, or Review), and correctly handle the response.


Core Principles

  • Integration is the final goal — do not stop at documentation or setup steps
  • Progress step-by-step and confirm required inputs before advancing
  • Use RiskOS documentation and tools as the single source of truth
  • Prefer Sandbox-based validation before any Production discussion
  • Do not assume configuration, workflows, or environments unless explicitly confirmed
  • Always provide documentation links only from https://help.socure.com/riskos to guide the user about RiskOS
  • Give preference to integration_checklist over general RiskOS Docs via ask_docs

State Management

The skill must explicitly track and confirm the following before proceeding:

  • Programming language and framework
  • Environment (Sandbox or Production)
  • Selected use case
  • Selected live workflow
  • Integration two approaches:

- API-only integration - Socure Hosted UX

Do not advance to later steps until the required state is confirmed.


Integration Plan

1. Set Up the Development Context

Ask the user:

  • Which programming language and framework they want to use

Confirm before continuing.


2. Obtain RiskOS API and SDK Credentials

Use the ask_docs tool to read the API and SDK Keys documentation.

Guide the user through:

  • Creating or locating their RiskOS API key
  • Storing credentials securely for local development
  • SDK Keys only required in certain cases if DocV or Digitial Intelligence SDK is used
  • Same SDK key works both for DocV and Digital Intelligence

Do not proceed until credentials are confirmed.


3. Understand Environments

Use the ask_docs tool to read documentation on Sandbox and Production environments.

Explicitly clarify that:

  • list_usecases, list_workflows, and integration_checklist return data from the Sandbox environment only
  • Only live Sandbox workflows can be used for integration and evaluation
  • Production workflows are not discoverable via these tools
  • The list_testcases only applies to sandbox enviornment

4. Discover Eligible Use Cases and Workflows

Use the following sequence:

  1. Call list_usecases to retrieve available usecases configured for the specific account
  2. For each usecase, call list_workflows to see the workflows configured for the specific account
  3. Identify usecases with at least one live workflow without which the intergation is not possible
  4. Copy the Workflow Name as the Workflow Identifier is needed for the API Call

If a use case has no live workflows:

  • Clearly explain that integration cannot proceed for that use case
  • Ask the user to select a different use case

Present only eligible use cases and ask the user to select one.


5. Select the Integration Path

Once the usecase is selected:

  • Identify if the user is integrating via the two integration patterns:

- API-only integration (build your own UI) - Socure Hosted UX

If Socure Hosted UX is selected:

  • Use ask_docs to read the Socure Hosted UX integration guide
  • Use the intergration_checklist and code guidance to understand Hosted UX integration requirements

6. Read Integration Guides

Use the ask_docs tool to read the Integration Guides for the selected use case.

Focus on:

  • Required inputs and fields
  • Decisioning behavior
  • Expected responses
  • Any use-case-specific constraints
  • Edge cases and negative scenarios

7. Work Through the Integration Checklist

Use the integration_checklist tool to retrieve the integration steps for the selected usecase.

Work through the checklist step by step with the user:

  • Explain each integration checklist item
  • Confirm completion before moving on
  • Adjust steps if Socure Hosted UX is used

Do not skip checklist items. If the Integration Checklist is comprehensive use the checklist as authoritative source for integration code. Otherwise rely on Integration Guides from ask_docs. Give strong preference to integration_checklist over general Docs from ask_docs


8. Understand the RiskOS API Model to Understand Integration Requirements at High Level

Use the api_spec tool to download and review the OpenAPI specification located at:

references/riskos-api-spec.json

Use this specification as the single source of truth for:

  • Request and response schemas
  • Required and optional fields
  • Enum values
  • Error models

Use it to generate or validate integration code. The OpenAPI Spec is a general guidance only and every workflow is unique and the api schema might not fit exactly with the Spec.


9. Use Test Cases to Integration

Use the list_testcases tool for the selected use case.

Leverage test cases to:

  • Understand sample requests and responses
  • Populate required fields correctly
  • Validate expected decision outcomes
  • Plan integration for edge cases and negative scenarios
  • The test cases are only specific for sandbox mock testing with dummy data and cannot be used in production.
  • The RiskOS is configured to provide mock response for the mock requests which is all pre-configured so will not work on other request data

Use Sandbox-approved test PII only. If Test Cases are not available via the tool, then skip this step.


10. Implement the Client Application

Guide the user to implement the client application that:

  • Authenticates using the RiskOS API key
  • Submits requests to the selected live workflow
  • Parses and handles the RiskOS response

Clearly explain how to handle and create integration code based on the final outcome of the Evaluation:

  • Accept
  • Reject
  • Review

Ensure the client’s behavior aligns with the final RiskOS decision.


11. Test and Validate the Integration

For each major integration step:

  • Generate at least one successful Sandbox test case by making an API call
  • Generate at least one negative or edge-case test
  • Execute API Requests against the live Sandbox workflow
  • Verify the RiskOS decision and response handling

Iterate until results are correct and stable.


12. Troubleshoot Errors

If any errors occur:

  • Surface the HTTP status code and error message
  • Use ask_docs to identify relevant error documentation
  • Explain the root cause in clear language
  • Propose a concrete fix
  • Retry and revalidate

Do not proceed until errors are resolved. If stuck on error, provide support email for Socure from ask_docs.


13. Completion and Next Steps

Once integration is successful:

  • Confirm that a live Sandbox workflow is invoked successfully
  • Confirm correct handling of Accept, Reject, and Review outcomes

Congratulate the user on completing the integration 🎉

Offer to:

  • Walk through additional sample API calls
  • Discuss Production readiness considerations
  • Discuss any edge cases and negative scenarios that need to be handled

Guidelines

  • You MUST include all references provided by OWL Bot (ask_docs) in your responses
  • You MUST make all links clickable
  • You MUST use the ask_docs tool for any information you do not already know
  • You MUST NOT use web search for any Socure resources. Only stick to RiskOS-related docs from https://help.socure.com/riskos
  • You MUST use the api_spec tool output to understand the RiskOS API data model
  • You MUST plan and execute tests after each significant change
  • If list_workflows returns no live workflows, remind the user that only live workflows are eligible for integration and evaluation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.46%
按下载量换算44

Claude

28.85%
按下载量换算36

Cursor

18.7%
按下载量换算23

Gemini CLI

8.6%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills