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

set-up-wso2-open-banking设置 wso2 开放银行

Agent Skill

set-up-wso2-open-banking 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

242

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vimukthirajapaksha/agent-skills --skill set-up-wso2-open-banking

简介

set-up-wso2-open-banking 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它支持按来源仓库、安装命令和原始 README 核验具体用法,适用于开发协作与代码管理场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态后再部署。
  • 安装前建议检查是否会触发联网、命令执行或文件读写,避免误操作影响系统安全。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Setting up WSO2 Open Banking

Set up WSO2 Open Banking Accelerator on:

  • WSO2 Identity Server (IS)
  • WSO2 API Manager (APIM) (required for OB3, optional for OB4)
  • Optional WSO2 Streaming Integrator (SI) (OB3 data publishing only)

Rules:

  • Collect all inputs first.
  • Run steps in order.
  • Stop on first failed check/command.
  • Use skip logic for optional components.
  • Use idempotent checks before destructive actions.

Guardrails

  • Confirm before destructive actions (scripts, keystores/truststores, overwriting configs).
  • Do not ask the user to paste secrets.
  • Change only the files listed in this workflow.
  • Run commands one by one (do not combine all commands into one script).

Execution contract

  1. Do not execute any command until all required non-secret inputs are collected.
  2. During input collection, ask one question at a time.
  3. For secret values, require environment variables only (never ask to paste raw secrets).
  4. When a pre-check fails, stop immediately and report the exact failed check.
  5. For optional components (APIM/SI), skip all related steps explicitly and log the skip reason.
  6. Always print resolved paths before running commands there.

Input contract (collect first)

If missing, use defaults.

  • OB_VERSION: OB3 or OB4 (default: OB4)

Version-specific inputs

Host inputs

  • IS_HOST: default https://localhost:9446
  • APIM_HOST: default https://localhost:9443 (required only when APIM is selected)
  • SI_HOST: default https://localhost:9444 (required only when SI is selected)

Database host inputs

  • DB_HOST: default localhost
  • DB_PORT: default 3306

Workspace input

  • WORK_DIR: absolute path used to create the setup directory (default: $pwd)

Primary workflow (do not reorder)

1. Prerequisites

  • Run preflight checks:
java -version
command -v mysql
command -v curl
command -v keytool
command -v unzip
  • Stop if any required tools are missing.

2. Install accelerators into base products

  • Create <WORK_DIR>/wso2-open-banking-accelerator and cd into it.
  • Resolve and record canonical paths after extraction:

- <IS_HOME> - <APIM_HOME> (if IS+APIM) - <SI_HOME> (if OB3 data publishing requested) - <OB_IAM_ACCELERATOR_HOME> inside <IS_HOME> - <OB_AM_ACCELERATOR_HOME> inside <APIM_HOME> (if IS+APIM) - <OB_SI_ACCELERATOR_HOME> inside <SI_HOME> (if OB3 data publishing)

  • A zip source is a URL if it starts with https://; otherwise treat it as a local path. Download only for URLs.
  • Extract base product zips into the current directory.
  • Unzip accelerators into corresponding base product directories.
  • Path resolution rule:

- <IS_HOME>: extracted dir name starts with wso2is- and contains bin. - <APIM_HOME>: extracted dir name starts with wso2am- and contains bin. - <SI_HOME>: extracted dir name starts with wso2si- and contains bin. - <OB_IAM_ACCELERATOR_HOME>: dir under <IS_HOME> containing repository/conf/configure.properties. - <OB_AM_ACCELERATOR_HOME>: dir under <APIM_HOME> containing repository/conf/configure.properties. - <OB_SI_ACCELERATOR_HOME>: dir under <SI_HOME> containing repository/conf/configure.properties.

  • Verify path existence before continuing:

- <IS_HOME>/bin - <OB_IAM_ACCELERATOR_HOME>/bin - <APIM_HOME>/bin and <OB_AM_ACCELERATOR_HOME>/bin only if IS+APIM

  • Version-specific branch:

- If OB3, run set up IS connector. - If OB3 data publishing requested, run set up data publishing.

3. Update base products and accelerators

  • Select relevant update binary by OS:

- macOS: wso2update_darwin - Linux: wso2update_linux - Windows: wso2update_windows.exe

  • Verify the OS-specific update tool exists in each directory below.

- <IS_HOME>/bin - <OB_IAM_ACCELERATOR_HOME>/bin - <APIM_HOME>/bin (if IS+APIM) - <OB_AM_ACCELERATOR_HOME>/bin (if IS+APIM) - <SI_HOME>/bin (if OB3 data publishing) - <OB_SI_ACCELERATOR_HOME>/bin (if OB3 data publishing)

  • If missing, stop and tell the user their WSO2 subscription is likely missing. Ask them to contact WSO2 Online Support System to download the product or skip updates.
  • Verify the required environment variables for the update tool are set. Stop if missing:
test -n "$OB_AGENT_UPDATE_TOOL_USERNAME"
test -n "$OB_AGENT_UPDATE_TOOL_PASSWORD"
  • Run the update tool in each directory:
./<WSO2UPDATE_BINARY> --username "$OB_AGENT_UPDATE_TOOL_USERNAME" --password "$OB_AGENT_UPDATE_TOOL_PASSWORD"

4. Configure MySQL database

  • Verify MySQL >= 8.0 available, stop if not.
  • Verify DB credentials are provided via environment variables. Stop if missing:
test -n "$OB_AGENT_DATABASE_USERNAME"
test -n "$OB_AGENT_DATABASE_PASSWORD"
  • Verify DB credentials by connecting to the DB. Stop if invalid.

MySQL check example:

MYSQL_PWD="$OB_AGENT_DATABASE_PASSWORD" mysql -h "$DB_HOST" -P "$DB_PORT" -u "$OB_AGENT_DATABASE_USERNAME" -e "SELECT 1;"
  • Download compatible JDBC driver (MySQL 8 example):
curl -L "https://repo1.maven.org/maven2/com/mysql/mysql-connector-j/9.6.0/mysql-connector-j-9.6.0.jar" -o mysql-connector-j-9.6.0.jar
  • Place the JDBC driver JAR:

- IS: copy the driver JAR into <IS_HOME>/repository/components/lib - APIM: copy the driver JAR into <APIM_HOME>/repository/components/lib - SI: copy the driver JAR into <SI_HOME>/lib (if OB3 data publishing requires DB connectivity there)

  • Set and verify DB_USER and DB_PASS in <OB_IAM_ACCELERATOR_HOME>/repository/conf/configure.properties match the environment variables. Do not print the values, report only MATCH or MISMATCH per property. Stop on any MISMATCH: grep -q "^DB_USER=$OB_AGENT_DATABASE_USERNAME$" repository/conf/configure.properties && echo "DB_USER: MATCH" || echo "DB_USER: MISMATCH"
Note: Use Select-String on Windows.
  • Update the following in <OB_IAM_ACCELERATOR_HOME>/repository/conf/configure.properties:

- DB connection properties - Change DB name pattern from current value to <DATE_PREFIX>_* - Hostnames for IS/APIM/SI - IS_PRODUCT=wso2is-<IS_VERSION> - PRODUCT_CONF_PATH=repository/resources/wso2is-<IS_VERSION>-deployment.toml

<DATE_PREFIX> uses today's date in YYYYMMDD.

  • Run IAM Accelerator scripts:
cd <OB_IAM_ACCELERATOR_HOME>/bin
./merge.sh
./configure.sh
  • If IS+APIM, repeat equivalent configuration + scripts in:

- <OB_AM_ACCELERATOR_HOME>/repository/conf/configure.properties - <OB_AM_ACCELERATOR_HOME>/bin (merge.sh, configure.sh)

  • If OB3 data publishing is requested, repeat equivalent configuration + scripts in:

- <OB_SI_ACCELERATOR_HOME>/repository/conf/configure.properties - <OB_SI_ACCELERATOR_HOME>/bin (merge.sh, configure.sh)

  • Create event-notification tables (OB4 only):

- Check if target tables already exist; skip if present. - Run mysql.sql from <IS_HOME>/dbscripts/financial-services/event-notifications against the consent DB. - Default consent DB name: <DATE_PREFIX>_*consentdb

5. Exchange Certificates

6. Start servers and verify basic health

Start order:

  1. IS: run the OS-specific startup script in <IS_HOME>/bin
./wso2server.(sh|bat) start
  1. APIM (optional): run the OS-specific startup script in <APIM_HOME>/bin
./api-manager.(sh|bat) start
  1. SI (optional): run the OS-specific startup script in <SI_HOME>/bin
./server.(sh|bat) start

Verification checklist:

  • IS, APIM, and SI hosts and ports are reachable
  • No critical errors in selected components logs:

- <IS_HOME>/repository/logs/wso2carbon.log - <APIM_HOME>/repository/logs/wso2carbon.log (if APIM selected) - <SI_HOME>/wso2/server/logs/carbon.log (if SI selected)

Completion criteria (must satisfy all applicable)

  • All selected components start successfully.
  • Health/port checks pass for selected components only.
  • No startup-blocking or critical errors in logs after 30 seconds (e.g., ERROR|FATAL).
  • Accelerator configs and DB scripts are applied for selected components.
  • Certificate exchange is complete for selected components.

Failure handling

  • On any failed command:

1. Stop immediately. 2. Report the exact command, exit code, and path. 3. Do not continue until user confirms remediation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.07%
按下载量换算28

Claude

32.7%
按下载量换算26

Cursor

17.4%
按下载量换算14

Gemini CLI

9.12%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills