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 agentmods add commands/ramsbaby/jarvis/accountgit clone --depth 1 https://github.com/Ramsbaby/jarvisWrote 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/commands/ramsbaby/jarvis/account)<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>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.00054 | $0.00475 |
| Opus 5 | $0.00027 | $0.00237 |
| Sonnet 5 | $0.00011 | $0.00095 |
| Haiku 4.5 | $0.00005 | $0.00047 |
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.
What it actually says
Claude 계정 관리
회사($220) ↔ 개인($110) Claude 계정 전환
명령어
| 명령 | 설명 |
|---|---|
| (없음) | 양쪽 계정 상태 + 현재 활성 + 토큰 잔여시간 |
use company |
회사 계정으로 전환 (자동 갱신) |
use personal |
개인 계정으로 전환 |
save company |
현재 로그인을 company 프로필로 저장 |
save personal |
현재 로그인을 personal 프로필로 저장 |
refresh |
Keychain ↔ 파일 재동기화 (실제 토큰 갱신은 Claude CLI가 자동) |
계정 전환 흐름
회사 한도 초과 시:
/account use personal
월요일 회사 리셋 후:
/account use company
개인 토큰 만료로 전환 안 될 때:
/login(personal 계정으로 브라우저 인증)/account save personal/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
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.
- 6d ago First seen · 60 lines · 54 tokens per session scan A f6a364fc5ab0
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.
Other commands, from other repositories
bm-scan
Build or refresh the basemind index by running basemind scan via the CLI — works without the MCP server (use it when basemind reports "no index" / "no indexed files").
bm
Ask basemind anything about the current codebase — outlines, refs, callers, git history, blame, diffs, docs, memory.
harden
Run the real-OSS harden harness against the 8 canary repos.
serve
Start the basemind MCP stdio server.
dream
Memory dream pass — judge undreamed days, promote durable signal to long-term, then sweep.
bm-doctor
Diagnose and recover basemind when it isn't working (MCP tools missing/erroring, "no index", dead server) — runs CLI checks and gives the client-specific way to reconnect the server.