一键导入
python3-budget-scripts-budget-py
Set and check monthly spending budgets per category. Use for: 예산, 지출 한도, 이번 달 예산, 카테고리 한도, 예산 초과, budget limit, spending cap
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Set and check monthly spending budgets per category. Use for: 예산, 지출 한도, 이번 달 예산, 카테고리 한도, 예산 초과, budget limit, spending cap
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
One-shot import of Google Contacts (People API) into the user's Connect (인맥) list. Pages through every contact, dedupes against existing connections by email then phone, and inserts new rows with category=acquaintance and tags=['google_contacts']. Honors BR-SOCIAL-3 — never writes social_profiles even if Google returns LinkedIn URLs. Use for: 구글 연락처 가져오기, 연락처 동기화, contacts import, import google contacts, sync google contacts, google 연락처, 인맥 가져오기, 주소록 가져오기
Record and sync Connect (인맥) activity timeline entries. Pulls from Google Calendar + Gmail (shares google-workspace OAuth token), or accepts manual entries like '김철수와 어제 점심 먹었어'. Use for: 인맥 활동, 활동 기록, 만남 기록, 미팅 기록, 점심, 저녁, 통화 기록, 일정 동기화, 인맥 동기화, connect sync, connect activity, meeting log, met with, had lunch with
Add or replace Context Memo (context_notes) for a Connect (인맥) entry. Looks up the target connection by exact or fuzzy name when the agent doesn't already know the connection UUID. Use for: 인맥 메모, 인맥 메모 추가, 메모 추가, 메모 수정, 인물 메모, 사람 메모, connect memo, add note, update note, context note
Scan a business card image with Gemini Vision and extract structured contact fields (name, role, company, email, phone, address, etc.) to create a new Connect (인맥) entry. Use for: 명함, 명함 스캔, 명함 등록, 명함 인식, 명함 저장, 명함 추가, 인맥, 인맥 추가, 인맥 등록, 연락처 등록, 연락처 추가, 비즈니스 카드, business card, business card ocr, scan business card, contact card, register contact
"Analyze uploaded images using Gemini Vision, or generate/edit images with Gemini AI. Use for: 이미지 분석, 사진 분석, 이미지 생성, 그려줘, 그림 만들어줘, image generation, photo analysis"
Search the internet for up-to-date information and fetch web page content via Tavily. Use for: 검색해줘, 찾아줘, 최신 정보, 인터넷 검색, 뉴스, 요즘, web search, latest news, current information
基于 SOC 职业分类
| name | python3 budget/scripts/budget.py |
| display_name | 예산 관리 |
| description | Set and check monthly spending budgets per category. Use for: 예산, 지출 한도, 이번 달 예산, 카테고리 한도, 예산 초과, budget limit, spending cap |
| version | 2.0.0 |
| emoji | 💰 |
| category | finance |
| enabled_by_default | true |
| requires_api_key | false |
| platforms | web, telegram, api |
| uses_provider | false |
| triggers | {"keywords":["예산","예산 설정","한도","지출 한도","한달 예산","카테고리 예산","예산 초과","예산 현황","budget","spending limit","monthly limit","budget status","over budget"],"when_to_use":["User wants to set a monthly spending budget for a category","User asks to check remaining budget for a category","User asks if they are over budget","User says \"이번 달 식비 예산 설정해줘\" or \"예산 현황 알려줘\""],"not_for":["Recording individual transactions (use finance skill)","Viewing spending history (use finance skill)"]} |
Use python3 budget/scripts/budget.py to set monthly spending limits and check budget status.
Always pass --user-id {user_id}.
python3 budget/scripts/budget.py --user-id {user_id} set --category {category} --amount {amount}
# All categories
python3 budget/scripts/budget.py --user-id {user_id} status
# Specific category
python3 budget/scripts/budget.py --user-id {user_id} status --category 식비
--category is a free-form label. Infer the appropriate label from context in any language:
| User intent | --category example |
|---|---|
| Food / dining / meals | 식비 |
| Transport / commute / fuel | 교통 |
| Shopping / retail | 쇼핑 |
| Entertainment / culture | 문화 |
| Medical / health | 의료 |
| Subscriptions / services | 구독 |
| Other | 기타 |
Use the category name that matches the user's existing budget entries. If unknown, infer from context.
User: "Set food budget to 300,000 won"
python3 budget/scripts/budget.py --user-id abc123 set --category 식비 --amount 300000
User: "How much budget do I have left?"
python3 budget/scripts/budget.py --user-id abc123 status
User: "Show transport budget status"
python3 budget/scripts/budget.py --user-id abc123 status --category 교통