alpaca-broker-journals

alpaca-broker-journals is a skill for Claude Code, Codex from alpacahq/alpaca-skills. It costs 98 tokens per session (2,193 once invoked), scanned A, original, Apache-2.0.

Instructions for moving cash or securities between accounts inside your own Alpaca brokerage setup.

In plain words
What is it for?
Use them for instant funding, cashback, share rewards, and other movements between a firm or sweep account and user accounts.
Why use it?
They distinguish internal account transfers from transfers to outside banks and cover pending transfers, cancellations, retries, and corrections.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use them for instant funding, cashback, share rewards, and other movements between a firm or sweep account and user accounts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alpacahq/alpaca-skills/journals
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 alpacahq/alpaca-skills --skill journals
Clone the repo
git clone --depth 1 https://github.com/alpacahq/alpaca-skills

Made for: Claude Code, Codex.

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 alpaca-broker-journals

README.md
[![agentmods](https://agentmods.dev/badge/skills/alpacahq/alpaca-skills/journals/github.svg)](https://agentmods.dev/skills/alpacahq/alpaca-skills/journals)
Your own site
<a href="https://agentmods.dev/skills/alpacahq/alpaca-skills/journals"><img src="https://agentmods.dev/badge/skills/alpacahq/alpaca-skills/journals/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 alpaca-broker-journals

Your own site · 80×15
<a href="https://agentmods.dev/skills/alpacahq/alpaca-skills/journals"><img src="https://agentmods.dev/badge/skills/alpacahq/alpaca-skills/journals.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00098 $0.02193
Opus 5 $0.00049 $0.01097
Sonnet 5 $0.00020 $0.00439
Haiku 4.5 $0.00010 $0.00219

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

Security

Grade A, and why

alpaca-broker-journals 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.

skills/broker-api/journals/SKILL.md · 129 lines

How it starts

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

Alpaca Broker API — Journals

Journals move value between two accounts within your own Alpaca omnibus — typically between a pre-funded firm/sweep account and a user account. They are the engine behind "instant funding," cashback, and share rewards. They never touch the outside banking world (that's alpaca-broker-funding-transfers).

Read alpaca-broker-integration first. Broker API + HTTP Basic auth.

Reference

  • Guide: https://docs.alpaca.markets/docs/funding-via-journals
  • API ref: https://docs.alpaca.markets/reference/createjournal
  • Live schema: alpaca-docs MCP → get-endpoint title "Broker API" path /v1/journals

1. Endpoints

Method Path Purpose
POST /v1/journals Single journal (JNLC cash or JNLS shares)
POST /v1/journals/batch One source → many destinations (JNLC only)
POST /v1/journals/reverse_batch Many sources → one destination (JNLC only)
GET /v1/journals List (filters: after, before, status, entry_type, to_account, from_account, limit)
GET /v1/journals/{journal_id} Retrieve one
DELETE /v1/journals/{journal_id} Cancel a pending journal (204)
GET /v2/events/journals/status SSE journal status stream (v1 is legacy)

2. JNLC vs JNLS

entry_type is exactly "JNLC" or "JNLS".

  • JNLC — cash. Moves USD between accounts. Allowed firm ↔ user, both directions. Not customer-to-customer.
  • JNLS — securities. Moves whole/fractional shares. Allowed firm → user only. Used for signup/referral share rewards.
// JNLC (cash)
{ "entry_type": "JNLC", "from_account": "<firm-uuid>", "to_account": "<user-uuid>", "amount": "100.00" }

// JNLS (shares)
{ "entry_type": "JNLS", "from_account": "<firm-uuid>", "to_account": "<user-uuid>", "symbol": "AAPL", "qty": "0.5" }
Field JNLC JNLS Notes
from_account / to_account required required account UUIDs
amount required decimal string
symbol / qty required qty is a string; fractional allowed
currency optional optional defaults USD
description optional optional ≤1024 chars; accepts sandbox fixtures
transmitter_* optional (JNLC) n/a Travel Rule fields

Read the full file on GitHub · 129 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 129 lines · 98 tokens per session scan A 1c902f3fabe8

Subscribe to this mod's changes

alpaca-broker-journals is a skill published in the GitHub repository alpacahq/alpaca-skills (147 stars, last pushed 3d ago), licensed Apache-2.0. It adds 98 tokens to every session and 2,193 once invoked, about $0.0005 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.