T

toss-securities

by @nomadamasv
4.3(8)

韓国Toss証券口座の保有、収益、注文、監視銘柄を照会し、読み取り専用のポートフォリオ概要と市場データを提供します。

investmenttradingkoreaportfolioGitHub
インストール方法
npx skills add nomadamas/k-skill --skill toss-securities
compare_arrows

Before / After 効果比較

1
使用前

Toss証券アプリを開き、アカウントにログインし、複数のページを切り替えて保有銘柄、収益、注文、ウォッチリストの株式を確認し、手動で全体の収益を計算する必要があり、10〜15分かかります。

使用後

直接アカウントの状態を問い合わせると、10秒ですべての保有銘柄、収益、未約定注文、ウォッチリストの株式データを自動的に統合し、明確な概要を生成します。

SKILL.md

toss-securities

Toss Securities

What this skill does

JungHoonGhae/tossinvest-clitossctl 을 이용해 토스증권 조회 전용(read-only) 흐름을 실행한다.

  • 계좌 목록 / 요약

  • 포트폴리오 보유 종목 / 비중

  • 단일 종목 / 다중 종목 시세

  • 미체결 주문 / 월간 체결 내역

  • 관심 종목

When to use

  • "토스증권 계좌 요약 보여줘"

  • "토스증권 TSLA 시세 확인해줘"

  • "관심종목 목록 보여줘"

  • "이번 달 체결 내역 조회해줘"

Prerequisites

  • macOS + Homebrew

  • tossctl 설치

  • tossctl auth login 으로 브라우저 세션 확보

  • Node.js 18+

Workflow

0. Install tossctl first when missing

brew tap JungHoonGhae/tossinvest-cli
brew install tossctl
tossctl doctor
tossctl auth doctor
tossctl auth login

로그인 세션이 없으면 먼저 위 흐름을 끝낸다. 다른 비공식 크롤링이나 임의 HTTP 재구현으로 우회하지 않는다.

1. Prefer the read-only tossctl surface

지원하는 기본 명령:

  • tossctl account list --output json

  • tossctl account summary --output json

  • tossctl portfolio positions --output json

  • tossctl portfolio allocation --output json

  • tossctl quote get TSLA --output json

  • tossctl quote batch TSLA 005930 VOO --output json

  • tossctl orders list --output json

  • tossctl orders completed --market all --output json

  • tossctl watchlist list --output json

2. Use the local package wrapper when scripting helps

const {
  getAccountSummary,
  getQuote,
  listWatchlist
} = require("toss-securities");

async function main() {
  const summary = await getAccountSummary();
  const quote = await getQuote("TSLA");
  const watchlist = await listWatchlist();

  console.log(summary.data);
  console.log(quote.data);
  console.log(watchlist.data);
}

main().catch((error) => {
  console.error(error);
  process.exitCode = 1;
});

3. Answer conservatively

  • 계좌번호/민감정보는 꼭 필요한 범위만 노출한다.

  • 사용자가 "오늘" 같은 상대 날짜를 말하면 절대 날짜로 풀어 답한다.

  • 이 스킬은 조회 전용이다. 실거래 mutation 은 범위 밖이라고 분명히 말한다.

Done when

  • tossctl 설치/로그인 상태가 확인되었다.

  • 요청에 맞는 read-only 명령을 실행했다.

  • 결과를 한국어로 짧게 정리했다.

Failure modes

  • tossctl auth login 전이면 계좌/포트폴리오 조회가 실패할 수 있다.

  • upstream 웹 API 구조가 바뀌면 tossctl 자체 업데이트가 필요할 수 있다.

  • 계좌/주문 정보는 민감하므로 출력 범위를 과도하게 넓히지 않는다.

Weekly Installs740Repositorynomadamas/k-skillGitHub Stars3.0KFirst Seen14 days agoSecurity AuditsGen Agent Trust HubWarnSocketWarnSnykWarnInstalled oncodex733antigravity732opencode731github-copilot731kimi-cli731amp731

ユーザーレビュー (0)

レビューを書く

効果
使いやすさ
ドキュメント
互換性

レビューなし

統計データ

インストール数2.2K
評価4.3 / 5.0
バージョン
更新日2026年5月23日
比較事例1 件

ユーザー評価

4.3(8)
5
75%
4
25%
3
0%
2
0%
1
0%

この Skill を評価

0.0

対応プラットフォーム

🔧Claude Code

タイムライン

作成2026年4月14日
最終更新2026年5月23日