Bankr Dev - Project Templates

Bankr Dev - Project Templates is a skill for Claude Code from BankrBot/claude-plugins. It costs 83 tokens per session (1,968 once invoked), scanned A, original, MIT.

Project templates and folder layouts for applications built with the Bankr API, a service for crypto and blockchain operations.

In plain words
What is it for?
They are for scaffolding Bankr bots, web services, dashboards, and command-line tools, with matching files for scheduling, APIs, user interfaces, prompts, and status updates.
Why use it?
They provide a starting structure for different application types instead of designing the project organization from scratch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the bankr-agent-dev plugin — 16 skills, 1 command shipped together

Good fit They are for scaffolding Bankr bots, web services, dashboards, and command-line tools, with matching files for scheduling, APIs, user interfaces, prompts, and status updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bankrbot/claude-plugins/bankr-project-templates
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add BankrBot/claude-plugins --skill bankr-project-templates
Clone the repo
git clone --depth 1 https://github.com/BankrBot/claude-plugins

Made for: Claude Code.

Or install bankr-agent-dev, the plugin that ships this one along with the rest of its 16 skills, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Bankr Dev - Project Templates

README.md
[![agentmods](https://agentmods.dev/badge/skills/bankrbot/claude-plugins/bankr-project-templates/github.svg)](https://agentmods.dev/skills/bankrbot/claude-plugins/bankr-project-templates)
Your own site
<a href="https://agentmods.dev/skills/bankrbot/claude-plugins/bankr-project-templates"><img src="https://agentmods.dev/badge/skills/bankrbot/claude-plugins/bankr-project-templates/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Bankr Dev - Project Templates

Your own site · 80×15
<a href="https://agentmods.dev/skills/bankrbot/claude-plugins/bankr-project-templates"><img src="https://agentmods.dev/badge/skills/bankrbot/claude-plugins/bankr-project-templates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,968 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00083 $0.01968
Opus 5 $0.00042 $0.00984
Sonnet 5 $0.00017 $0.00394
Haiku 4.5 $0.00008 $0.00197

Measured 11d ago against content hash 352b6877d955, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

Bankr Dev - Project Templates scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

bankr-agent-dev/skills/bankr-project-templates/SKILL.md · 323 lines

How it starts

The opening of the file, as written. The whole thing — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bankr Project Templates

Directory structures and templates for Bankr API projects.

Available Templates

Template Use Case Key Features
bot Automated tasks Polling loop, scheduler, status streaming
web-service HTTP APIs REST endpoints, webhooks, async handling
dashboard Web UIs Frontend + backend, real-time updates
cli Command-line tools Subcommands, 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();

Read the full file on GitHub · 323 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 323 lines · 83 tokens per session scan A 352b6877d955

Subscribe to this mod's changes

Bankr Dev - Project Templates is a skill published in the GitHub repository BankrBot/claude-plugins (85 stars, last pushed 5mo ago), licensed MIT. It adds 83 tokens to every session and 1,968 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.