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.
npx skills add personamanagmentlayer/pcl --skill finance-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote 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.
[](https://agentmods.dev/skills/personamanagmentlayer/pcl/finance-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/finance-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/finance-expert/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.
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/finance-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/finance-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk warn
- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 171 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 173 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 373 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00055 | $0.03157 |
| Opus 5 | $0.00028 | $0.01579 |
| Sonnet 5 | $0.00011 | $0.00631 |
| Haiku 4.5 | $0.00006 | $0.00316 |
Grade A, and why
finance-expert 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 423 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Finance Expert
Expert guidance for financial systems, FinTech applications, banking platforms, payment processing, and financial technology development.
Core Concepts
Financial Systems
- Core banking systems
- Payment processing
- Trading platforms
- Risk management
- Regulatory compliance (PCI-DSS, SOX, Basel III)
- Financial reporting
FinTech Stack
- Payment gateways (Stripe, PayPal, Square)
- Banking APIs (Plaid, Yodlee)
- Blockchain/crypto
- Open Banking APIs
- Mobile banking
- Digital wallets
Key Challenges
- Security and fraud prevention
- Real-time processing
- High availability (99.999%)
- Regulatory compliance
- Data privacy
- Transaction accuracy
Payment Processing
These examples move real money. Read Money movement guardrails before running any of them. Credentials come from the environment or a secrets manager, never from source.
# Payment gateway integration (Stripe)
import os
from decimal import Decimal, ROUND_HALF_UP
import stripe
# Never hardcode a key. Load it from the environment or a secrets manager, and
# fail closed if it is absent rather than falling back to a default.
stripe.api_key = os.environ["STRIPE_API_KEY"]
WEBHOOK_SECRET = os.environ["STRIPE_WEBHOOK_SECRET"]
def to_minor_units(amount: Decimal) -> int:
"""Convert a decimal amount to integer minor units (cents).
int(amount * 100) truncates: Decimal("0.615") would silently become 61
instead of 62. Money must round explicitly, half-up, and only from Decimal
- never from float.
"""
if not isinstance(amount, Decimal):
raise TypeError("monetary amounts must be Decimal, not %s" % type(amount).__name__)
if amount < 0:
raise ValueError("amount must not be negative")
return int((amount * 100).quantize(Decimal("1"), rounding=ROUND_HALF_UP))
class PaymentService:
def create_payment_intent(
self, amount: Decimal, order_id: str, idempotency_key: str, currency: str = "usd"
):
"""Create a payment intent.
The idempotency key is supplied by the caller and derived from the
order, so a retried request cannot charge the customer twice. Stripe
replays the original response instead of creating a second intent.
"""
return stripe.PaymentIntent.create(
amount=to_minor_units(amount),
currency=currency,
payment_method_types=["card"],
metadata={"order_id": order_id},
idempotency_key=idempotency_key,
)
def process_refund(
self, payment_intent_id: str, idempotency_key: str, amount: Decimal | None = None
):
"""Process a full or partial refund (idempotent, like the charge)."""
return stripe.Refund.create(
payment_intent=payment_intent_id,
amount=to_minor_units(amount) if amount is not None else None,
idempotency_key=idempotency_key,
)
def handle_webhook(self, payload: bytes, signature: str):
"""Handle a Stripe webhook event.
Signature verification is authentication: a failure must be rejected,
never treated as a malformed payload. Returning 2xx on an unverified
event tells Stripe the forged event was accepted.
"""
try:
event = stripe.Webhook.construct_event(payload, signature, WEBHOOK_SECRET)
except stripe.error.SignatureVerificationError:
# Forged or replayed event - fail closed, log, do not process.
return {"status": "rejected"}, 400
except ValueError:
return {"status": "invalid_payload"}, 400
# Webhooks are delivered at least once: deduplicate on event.id before
# acting, or the same payment is booked twice.
if self.already_processed(event.id):
return {"status": "duplicate"}, 200
if event.type == "payment_intent.succeeded":
self.handle_successful_payment(event.data.object)
elif event.type == "payment_intent.payment_failed":
self.handle_failed_payment(event.data.object)
self.mark_processed(event.id)
return {"status": "success"}, 200
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.
- 5d ago Changed · +122 lines · +36 tokens per session 68304b9de32f
- 10d ago First seen · 301 lines · 19 tokens per session scan A 30536ee4ef22
finance-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 55 tokens to every session and 3,157 once invoked, about $0.0003 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.
Other skills, from other repositories
surf
Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…
polymarket-trading
Use when the user wants to actually PLACE, manage, or redeem bets on Polymarket (not just read odds — that's the blockrunpredexon data tools). Covers setup (deposit wallet, funding, approvals), buy/sell with confirm gating, positions, redeeming winnings, geoblock handling, and the end-to-end flow.
predexon
Use this skill — NOT browser or webfetch — for ALL Polymarket, Kalshi, Limitless, Opinion, Predict.Fun, dFlow, UMA oracle, and prediction market data. Provides structured API at localhost:8402/v1/pm/ for markets, cross-venue search, leaderboard, smart money, wallet analytics, wallet identity & clustering, UMA…
clawrouter
Hosted-gateway LLM router — save 84% on inference costs. A local proxy that forwards each request to the blockrun.ai gateway, which routes to the cheapest capable model across 76 models from OpenAI, Anthropic, Google, DeepSeek, xAI, Z.AI, and more. 7 free open-weight models included. Also exposes realtime market data…
phone
Verify phone numbers (carrier + SIM-swap fraud signals) and place AI-powered outbound voice calls via BlockRun's gateway (Twilio + Bland.ai). Trigger when the user asks to look up a number, check fraud risk, buy/rent a phone number, or place an AI voice call. Payment is automatic via x402 from the wallet.
imagegen
Generate or edit images via BlockRun's image API. Trigger when the user asks to generate, create, draw, make an image — or to edit, modify, change, or retouch an existing image.