account

account is a command for Claude Code from Ramsbaby/jarvis. It costs 54 tokens per session (475 once invoked), scanned A, original, MIT.

A command set for switching between saved company and personal Claude accounts and checking their status. It uses a local script and can synchronize login data between the system keychain and a file.

In plain words
What is it for?
Use it to view account status, switch accounts, save the current login under an account profile, or refresh synchronized login data.
Why use it?
It avoids manually repeating account login and configuration steps when one account reaches its limit or its token needs attention.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md). Also seen: positional $N argument.

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.

agentmods
npx agentmods add commands/ramsbaby/jarvis/account
Clone the repo
git clone --depth 1 https://github.com/Ramsbaby/jarvis

Made for: Claude Code.

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 account

README.md
[![agentmods](https://agentmods.dev/badge/commands/ramsbaby/jarvis/account.svg)](https://agentmods.dev/commands/ramsbaby/jarvis/account)
Your own site
<a href="https://agentmods.dev/commands/ramsbaby/jarvis/account"><img src="https://agentmods.dev/badge/commands/ramsbaby/jarvis/account.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 475 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00054 $0.00475
Opus 5 $0.00027 $0.00237
Sonnet 5 $0.00011 $0.00095
Haiku 4.5 $0.00005 $0.00047

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

Security

Grade A, and why

account 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 6d 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.

dotfiles/claude/commands/account.md · 60 lines

What it actually says

Claude 계정 관리

회사($220) ↔ 개인($110) Claude 계정 전환

명령어

명령 설명
(없음) 양쪽 계정 상태 + 현재 활성 + 토큰 잔여시간
use company 회사 계정으로 전환 (자동 갱신)
use personal 개인 계정으로 전환
save company 현재 로그인을 company 프로필로 저장
save personal 현재 로그인을 personal 프로필로 저장
refresh Keychain ↔ 파일 재동기화 (실제 토큰 갱신은 Claude CLI가 자동)

계정 전환 흐름

회사 한도 초과 시:

  1. /account use personal

월요일 회사 리셋 후:

  1. /account use company

개인 토큰 만료로 전환 안 될 때:

  1. /login (personal 계정으로 브라우저 인증)
  2. /account save personal
  3. /account use personal

실행

SCRIPT=~/.jarvis/scripts/claude-switch.sh

if [[ ! -f "$SCRIPT" ]]; then
    echo "⚠ 스크립트 없음: $SCRIPT"
    exit 1
fi

chmod +x "$SCRIPT"
ARG="${ARGUMENTS:-}"

if [[ -z "$ARG" ]]; then
    bash "$SCRIPT" status
elif [[ "$ARG" == use* ]]; then
    NAME=$(echo "$ARG" | awk '{print $2}')
    bash "$SCRIPT" use "$NAME"
elif [[ "$ARG" == save* ]]; then
    NAME=$(echo "$ARG" | awk '{print $2}')
    bash "$SCRIPT" save "$NAME"
elif [[ "$ARG" == refresh ]]; then
    bash "$SCRIPT" refresh
else
    bash "$SCRIPT" "$ARG"
fi
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. 6d ago First seen · 60 lines · 54 tokens per session scan A f6a364fc5ab0

Subscribe to this mod's changes

account is a command published in the GitHub repository Ramsbaby/jarvis (16 stars, last pushed 13d ago), licensed MIT. It adds 54 tokens to every session and 475 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.