← 返回 Skills 市场
satnamra

Investing

作者 satnamra · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
968
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install investing
功能描述
Personal investing assistant for Lithuanian investors. Monitors markets, ETFs, crypto, pension funds (III pakopa), and provides monthly investment suggestions based on research and market conditions.
使用说明 (SKILL.md)

Investing Skill

A comprehensive investing assistant tailored for Lithuanian investors, inspired by šešiNuliai.lt philosophy.

Core Philosophy

Based on evidence-based, passive investing:

  • VWCE & Chill - Simple, low-cost global ETF strategy
  • Long-term focus - 10+ year investment horizon
  • Diversification - Across asset classes and geographies
  • Low costs - Minimize fees, maximize returns

Asset Allocation Framework

Recommended Portfolio (Moderate Risk)

📊 Sample Allocation:
├── 70% Stocks (ETFs)
│   ├── 50% VWCE (All-World)
│   ├── 15% IXUS (Ex-US) or EIMI (Emerging)
│   └── 5% Small Cap Value
├── 10% Bonds
│   └── AGGH or Government Bonds
├── 10% Crypto
│   ├── 8% Bitcoin
│   └── 2% Ethereum
└── 10% Cash / Short-term
    └── Savings accounts, MMF

Adjust based on:

  • Age (younger = more stocks)
  • Risk tolerance
  • Time horizon
  • Income stability

Data Sources

Lithuanian Sources

  • šešiNuliai.lt - Personal finance blog (LT)
  • Investuok.eu - Investment news (LT)
  • Vz.lt - Business news (LT)
  • Delfi Verslas - Business section

International Sources

  • Bogleheads - Passive investing community
  • r/eupersonalfinance - EU-focused Reddit
  • JustETF - ETF comparison tool
  • Portfolio Visualizer - Backtesting

Market Data

  • Yahoo Finance - Stock/ETF prices
  • TradingView - Charts
  • CoinGecko - Crypto prices
  • ECB - EUR exchange rates, interest rates

Scripts

check-etf-prices.sh

#!/bin/bash
# Check key ETF prices
echo "📈 ETF Prices - $(date '+%Y-%m-%d')"
echo "================================"

# VWCE - Vanguard FTSE All-World
curl -s "https://query1.finance.yahoo.com/v8/finance/chart/VWCE.DE" | \
  jq -r '"VWCE: €" + (.chart.result[0].meta.regularMarketPrice | tostring)'

# EIMI - iShares Emerging Markets
curl -s "https://query1.finance.yahoo.com/v8/finance/chart/EIMI.L" | \
  jq -r '"EIMI: £" + (.chart.result[0].meta.regularMarketPrice | tostring)'

# Bitcoin
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=eur" | \
  jq -r '"BTC: €" + (.bitcoin.eur | tostring)'

monthly-dca.sh

#!/bin/bash
# Calculate monthly DCA amounts
BUDGET=${1:-500}  # Monthly investment budget

echo "💰 Monthly DCA Plan - €$BUDGET"
echo "================================"
echo "VWCE (70%):   €$((BUDGET * 70 / 100))"
echo "EIMI (10%):   €$((BUDGET * 10 / 100))"
echo "BTC (10%):    €$((BUDGET * 10 / 100))"
echo "Cash (10%):   €$((BUDGET * 10 / 100))"

Monthly Investment Workflow

1. Market Check (5 min)

Run: check-etf-prices.sh
Check: Any significant drops (>10%) = buying opportunity

2. News Scan (10 min)

Scan:
- šešiNuliai.lt - new posts?
- r/eupersonalfinance - hot topics?
- ECB announcements - rate changes?

3. Execute DCA (5 min)

Run: monthly-dca.sh [budget]
Execute trades via:
- Interactive Brokers (ETFs)
- Bitstamp/Kraken (Crypto)

4. Record & Reflect (5 min)

Update:
- Portfolio tracker spreadsheet
- Note any deviations from plan
- Review annual progress

III Pakopa (Pension) Strategy

When III Pakopa Makes Sense

  1. Employer contribution - Free money, always take it
  2. High tax bracket - 32%+ marginal rate
  3. Long horizon - 15+ years to retirement
  4. Old contract - Pre-2019 rules may be better

Recommended Funds

Fund TER Notes
Goindex III pakopa 0.40% Index-tracking, low cost
Swedbank Index 0.45% Also index-based
Luminor Index 0.50% Decent alternative

Avoid: High-fee active funds (1%+ TER)

Yearly Optimization

  1. Max out employer match first
  2. Calculate tax benefit vs fees
  3. Consider personal IBKR account for overflow
  4. Review fund performance annually

Crypto Strategy

Core Holdings (90% of crypto allocation)

  • Bitcoin (BTC) - 80% of crypto
  • Ethereum (ETH) - 20% of crypto

Rules

  1. Never more than 10% of total portfolio
  2. DCA monthly, don't time the market
  3. Self-custody for large amounts (Ledger/Trezor)
  4. Hold through cycles (5+ years)

Where to Buy (EU)

  • Bitstamp - Low fees, EU regulated
  • Kraken - Good security, SEPA
  • Coinbase - Easy, but higher fees

Emergency Fund

Before investing, ensure:

Emergency Fund = 3-6 months expenses
Location: High-yield savings account
Current best rates (LT):
- Swedbank Taupomasis: ~3%
- SEB Taupomoji: ~2.5%
- Revolut Savings: ~3.5%

Tax Considerations (Lithuania)

Capital Gains

  • 15% tax on gains
  • Holding period: No benefit for long-term (unlike US)
  • Losses: Can offset gains in same year

III Pakopa Tax Benefits

  • Contribution: Deduct from taxable income (up to €1,500/year)
  • Withdrawal: Taxed at 15% (or 0% if after retirement age)

Crypto

  • 15% on realized gains
  • Track cost basis carefully
  • Report in annual declaration

Cron Jobs

Daily Price Alert

{
  "name": "Daily Market Check",
  "schedule": { "kind": "cron", "expr": "0 9 * * 1-5" },
  "payload": {
    "kind": "agentTurn",
    "message": "Check VWCE, BTC prices. Alert if >5% change from yesterday."
  }
}

Monthly Investment Reminder

{
  "name": "Monthly DCA Reminder",
  "schedule": { "kind": "cron", "expr": "0 10 1 * *" },
  "payload": {
    "kind": "agentTurn",
    "message": "Monthly DCA time! Check budget, run monthly-dca.sh, execute trades."
  }
}

Quarterly Review

{
  "name": "Quarterly Portfolio Review",
  "schedule": { "kind": "cron", "expr": "0 10 1 1,4,7,10 *" },
  "payload": {
    "kind": "agentTurn",
    "message": "Quarterly review: Check allocation drift, rebalance if >5% off target, update spreadsheet."
  }
}

Resources

Books

  • "The Simple Path to Wealth" - JL Collins
  • "A Random Walk Down Wall Street" - Burton Malkiel
  • "The Bogleheads' Guide to Investing"

Websites

  • šešiNuliai.lt (LT)
  • Bogleheads.org
  • JustETF.com
  • r/eupersonalfinance

Tools

  • Portfolio Visualizer (backtesting)
  • IBKR (brokerage)
  • Notion/Sheets (tracking)

Disclaimer

This is not financial advice. Do your own research. Past performance does not guarantee future results. Investing involves risk of loss.


Skill created based on research from šešiNuliai.lt, Bogleheads, and EU personal finance communities.

安全使用建议
This skill appears to do what it says (market checks and DCA suggestions) but has some inconsistencies you should resolve before use: 1) The included scripts require curl, jq and bc; ensure those are present and inspect the scripts locally. 2) The workflow mentions executing trades via brokers but the skill provides no API integration or credential handling — do NOT provide exchange/broker API keys to the skill unless you understand how they will be stored and used. 3) Scheduled cron-like agent turns could make the agent run actions automatically; if you do not want autonomous checks or potential automated trades, disable autonomous invocation or remove scheduled jobs. 4) Test the scripts manually on your machine to confirm outputs and network endpoints (Yahoo/Coingecko) and verify no unexpected endpoints are contacted. Additional information that would raise confidence: a declared list of required binaries, explicit handling/storage policy for broker API keys, and a verified publisher/homepage or source repository.
功能分析
Type: OpenClaw Skill Name: investing Version: 1.0.0 The OpenClaw skill bundle is benign. It functions as a personal investing assistant, using `curl` to fetch market data from legitimate public APIs (Yahoo Finance, CoinGecko) and `jq` for parsing. The `SKILL.md` provides clear instructions and educational content, and the embedded scripts (`check-etf-prices.sh`, `monthly-dca.sh`) perform calculations and display information without any signs of malicious intent, data exfiltration, unauthorized access, or prompt injection attempts against the agent. All external domains mentioned are relevant to finance and investing.
能力评估
Purpose & Capability
The name/description match the included scripts and guidance (ETF/crypto monitoring, DCA). However the packaged shell scripts require common CLI tools (curl, jq, bc) that are not declared in the metadata. The SKILL.md mentions executing trades via brokers but the skill provides no code, instructions, or declared env vars for broker API credentials — this is ambiguous and could mislead users about autonomous trading capability.
Instruction Scope
Runtime instructions direct the agent to run the included scripts, scan specific websites (local and international finance sites, Reddit), and to 'execute trades' via named brokers. The skill does not instruct reading local secrets or files, but it references updating a portfolio spreadsheet without specifying storage/location. The 'execute trades' step is vague: no broker APIs, credential handling, or automated trade logic is included, so it's unclear whether trade execution is expected to be manual or automated.
Install Mechanism
No install spec is provided (instruction-only with bundled scripts), so nothing is downloaded or installed automatically. The two included shell scripts are plain text and call well-known public endpoints (Yahoo Finance, CoinGecko).
Credentials
The skill declares no required environment variables, but it implicitly needs command-line tools (curl, jq, bc) to run the scripts. More importantly, the workflow calls for executing trades via Interactive Brokers / Bitstamp / Kraken but the skill requests no broker credentials and provides no mechanism for safe credential use — this is an unaddressed gap that could lead a user to supply credentials in an insecure way or expect the agent to have capabilities it lacks.
Persistence & Privilege
always:false and no system-wide config changes are requested. The SKILL.md suggests cron-style scheduled agent turns (daily/monthly reminders). Autonomous invocation is allowed by default (normal), so if scheduled jobs are registered by the platform the agent could run checks automatically — that increases operational risk only if you grant it broker credentials or otherwise enable automated trading.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install investing
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /investing 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial ClawHub publish - Lithuanian investing assistant skill
元数据
Slug investing
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Investing 是什么?

Personal investing assistant for Lithuanian investors. Monitors markets, ETFs, crypto, pension funds (III pakopa), and provides monthly investment suggestions based on research and market conditions. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 968 次。

如何安装 Investing?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install investing」即可一键安装,无需额外配置。

Investing 是免费的吗?

是的,Investing 完全免费(开源免费),可自由下载、安装和使用。

Investing 支持哪些平台?

Investing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Investing?

由 satnamra(@satnamra)开发并维护,当前版本 v1.0.0。

💬 留言讨论