Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计未展示

bankr-dev---project-templates银行开发项目模板

Agent Skill

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

总安装

10,759

周安装

317

GitHub Stars

72

下载量

3,277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:bankr-dev---project-templates(银行开发项目模板)
来源仓库:https://github.com/bankrbot/claude-plugins
仓库路径:skills/bankr-dev---project-templates
安装命令:
npx skills add https://github.com/bankrbot/claude-plugins --skill 'Bankr Dev - Project Templates'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bankrbot/claude-plugins --skill 'Bankr Dev - Project Templates'

简介

bankr-dev---project-templates 提供 bot、web-service 与 dashboard 三种工程脚手架。

  • 适用于快速启动自动化交易、HTTP API 服务或前端监控面板项目。
  • 每种模板包含依赖配置、环境变量示例与核心模块入口文件。
  • 建议根据实际业务选择目录结构,避免混合使用导致维护困难。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bankr Project Templates

Directory structures and templates for Bankr API projects.

Available Templates

TemplateUse CaseKey Features
botAutomated tasksPolling loop, scheduler, status streaming
web-serviceHTTP APIsREST endpoints, webhooks, async handling
dashboardWeb UIsFrontend + backend, real-time updates
cliCommand-line toolsSubcommands, interactive prompts

Bot Template

For automated trading bots, price monitors, alert systems, and scheduled tasks.

Directory Structure

{project-name}/
├── package.json
├── tsconfig.json
├── .env.example
├── .gitignore
├── README.md
├── src/
│   ├── index.ts           # Main entry point with scheduler
│   ├── bankr-client.ts    # Bankr API client (from bankr-client-patterns skill)
│   ├── types.ts           # TypeScript interfaces
│   └── config.ts          # Configuration loading
└── scripts/
    └── run.sh             # Convenience script

Key Features

  • Polling loop: Configurable interval for recurring checks
  • Status streaming: Real-time job status updates
  • Error handling: Automatic retries with backoff
  • Environment config: .env based configuration
  • Graceful shutdown: Handles SIGINT/SIGTERM

Use Cases

  • Price monitoring and alerts
  • Automated trading strategies
  • Portfolio rebalancing
  • Scheduled market analysis
  • DCA automation

Entry Point Pattern (index.ts)

import { execute } from "./bankr-client";

const INTERVAL = 60000; // 1 minute

async function runBot() {
  console.log("Starting Bankr bot...");

  while (true) {
    try {
      const result = await execute(
        "Check ETH price",
        (msg) => console.log("Status:", msg)
      );

      if (result.status === "completed") {
        console.log("Result:", result.response);
        // Add your logic here
      }
    } catch (error) {
      console.error("Error:", error);
    }

    await new Promise(r => setTimeout(r, INTERVAL));
  }
}

runBot();

Web Service Template

For HTTP APIs that wrap or extend Bankr functionality.

Directory Structure

{project-name}/
├── package.json
├── tsconfig.json
├── .env.example
├── .gitignore
├── README.md
├── src/
│   ├── index.ts           # Server entry point
│   ├── server.ts          # Express/Fastify server setup
│   ├── routes/
│   │   ├── health.ts      # Health check endpoint
│   │   └── bankr.ts       # Bankr proxy/extension routes
│   ├── bankr-client.ts    # Bankr API client
│   ├── types.ts           # TypeScript interfaces
│   └── config.ts          # Configuration loading
└── scripts/
    └── run.sh

Key Features

  • REST API endpoints: Clean API design
  • Request validation: Input sanitization
  • Async job handling: Non-blocking operations
  • Webhook support: Callbacks on job completion
  • Rate limiting: Prevent abuse
  • CORS: Cross-origin support

Use Cases

  • API gateway for Bankr
  • Custom trading APIs
  • Webhook integrations
  • Backend for mobile apps
  • Microservice architecture

Additional Dependencies

{
  "dependencies": {
    "express": "^4.18.0"
  }
}

Or for Fastify:

{
  "dependencies": {
    "fastify": "^4.25.0"
  }
}

Dashboard Template

For web UIs with portfolio tracking, market analysis, or monitoring.

Directory Structure

{project-name}/
├── package.json
├── tsconfig.json
├── .env.example
├── .gitignore
├── README.md
├── server/
│   ├── index.ts           # Backend server
│   ├── bankr-client.ts    # Bankr API client
│   ├── routes/
│   │   └── api.ts         # API routes for frontend
│   └── types.ts
├── public/
│   ├── index.html         # Main HTML page
│   ├── styles.css         # Basic styles
│   └── app.js             # Frontend JavaScript
└── scripts/
    └── run.sh

Key Features

  • Simple frontend: HTML/CSS/JS (no build step required)
  • Backend API: Express server for Bankr operations
  • Real-time updates: Polling for status changes
  • Portfolio display: Token balances and values
  • Market data: Price charts and analysis

Use Cases

  • Portfolio tracking dashboard
  • Trading interface
  • Market monitoring
  • Position management
  • Analytics dashboard

Frontend Pattern (app.js)

async function checkPrice() {
  const response = await fetch('/api/price/ETH');
  const data = await response.json();
  document.getElementById('eth-price').textContent = data.price;
}

setInterval(checkPrice, 30000);
checkPrice();

CLI Template

For command-line tools with subcommands and interactive features.

Directory Structure

{project-name}/
├── package.json
├── tsconfig.json
├── .env.example
├── .gitignore
├── README.md
├── src/
│   ├── index.ts           # CLI entry with commander.js
│   ├── commands/
│   │   ├── trade.ts       # Trading commands
│   │   ├── price.ts       # Price query commands
│   │   └── status.ts      # Job status commands
│   ├── bankr-client.ts    # Bankr API client
│   └── types.ts
└── scripts/
    └── run.sh

Key Features

  • Commander.js: CLI framework with subcommands
  • Interactive prompts: User input when needed
  • Progress indicators: Status during polling
  • Colored output: Better UX
  • Help system: Auto-generated from commands

Use Cases

  • Personal trading tool
  • Scripting and automation
  • DevOps integration
  • Quick price checks
  • Batch operations

Additional Dependencies

{
  "dependencies": {
    "commander": "^12.0.0"
  }
}

CLI Pattern (index.ts)

import { program } from "commander";
import { price } from "./commands/price";
import { trade } from "./commands/trade";

program
  .name("bankr-cli")
  .description("CLI for Bankr operations")
  .version("1.0.0");

program
  .command("price <token>")
  .description("Get token price")
  .action(price);

program
  .command("trade <action> <amount> <token>")
  .description("Execute a trade")
  .option("-c, --chain <chain>", "Target chain", "base")
  .action(trade);

program.parse();

Choosing a Template

NeedRecommended Template
Automated recurring tasksbot
HTTP API for integrationsweb-service
Visual interfacedashboard
Terminal-based toolcli
Price alertsbot
Trading APIweb-service
Portfolio viewerdashboard
Quick tradescli

Common Files

All templates share common files. Load the bankr-client-patterns skill for:

  • bankr-client.ts - Complete API client
  • package.json - Base dependencies
  • tsconfig.json - TypeScript config
  • .env.example - Environment template
  • .gitignore - Standard ignores

Next Steps After Scaffolding

  1. Install dependencies: bun install or npm install
  2. Configure API key: Copy .env.example to .env and add BANKR_API_KEY
  3. Customize: Modify the template for your use case
  4. Run: bun dev or npm run dev for development
  5. Build: bun run build or npm run build for production

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

38.04%
按下载量换算1,247

Claude

29.41%
按下载量换算964

Cursor

16.95%
按下载量换算555

Gemini CLI

9.79%
按下载量换算321

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills