valueclaw 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- valueclaw-0.7.0/LICENSE +21 -0
- valueclaw-0.7.0/MANIFEST.in +13 -0
- valueclaw-0.7.0/PKG-INFO +211 -0
- valueclaw-0.7.0/README.md +167 -0
- valueclaw-0.7.0/pyproject.toml +83 -0
- valueclaw-0.7.0/setup.cfg +4 -0
- valueclaw-0.7.0/tests/test_compaction.py +331 -0
- valueclaw-0.7.0/tests/test_persistence.py +293 -0
- valueclaw-0.7.0/tests/test_rag_hybrid.py +400 -0
- valueclaw-0.7.0/tests/test_skills.py +247 -0
- valueclaw-0.7.0/tests/test_soul.py +434 -0
- valueclaw-0.7.0/value_claw/__init__.py +17 -0
- valueclaw-0.7.0/value_claw/__main__.py +6 -0
- valueclaw-0.7.0/value_claw/channels/discord_bot.py +455 -0
- valueclaw-0.7.0/value_claw/channels/telegram_bot.py +684 -0
- valueclaw-0.7.0/value_claw/channels/whatsapp_bot.py +373 -0
- valueclaw-0.7.0/value_claw/config.py +241 -0
- valueclaw-0.7.0/value_claw/core/__init__.py +25 -0
- valueclaw-0.7.0/value_claw/core/agent.py +1223 -0
- valueclaw-0.7.0/value_claw/core/compaction.py +226 -0
- valueclaw-0.7.0/value_claw/core/knowledge/rag.py +93 -0
- valueclaw-0.7.0/value_claw/core/llm/anthropic_client.py +297 -0
- valueclaw-0.7.0/value_claw/core/llm/base.py +55 -0
- valueclaw-0.7.0/value_claw/core/llm/gemini_client.py +191 -0
- valueclaw-0.7.0/value_claw/core/llm/openai_compatible.py +109 -0
- valueclaw-0.7.0/value_claw/core/llm/response.py +57 -0
- valueclaw-0.7.0/value_claw/core/memory/manager.py +221 -0
- valueclaw-0.7.0/value_claw/core/memory/storage.py +249 -0
- valueclaw-0.7.0/value_claw/core/persistent_agent.py +135 -0
- valueclaw-0.7.0/value_claw/core/retrieval/__init__.py +6 -0
- valueclaw-0.7.0/value_claw/core/retrieval/chunker.py +78 -0
- valueclaw-0.7.0/value_claw/core/retrieval/dense.py +152 -0
- valueclaw-0.7.0/value_claw/core/retrieval/fusion.py +51 -0
- valueclaw-0.7.0/value_claw/core/retrieval/reranker.py +112 -0
- valueclaw-0.7.0/value_claw/core/retrieval/retriever.py +166 -0
- valueclaw-0.7.0/value_claw/core/retrieval/sparse.py +69 -0
- valueclaw-0.7.0/value_claw/core/session_store.py +274 -0
- valueclaw-0.7.0/value_claw/core/skill_loader.py +405 -0
- valueclaw-0.7.0/value_claw/core/stt.py +185 -0
- valueclaw-0.7.0/value_claw/core/tools.py +860 -0
- valueclaw-0.7.0/value_claw/core/utils.py +64 -0
- valueclaw-0.7.0/value_claw/daemon.py +224 -0
- valueclaw-0.7.0/value_claw/init.py +68 -0
- valueclaw-0.7.0/value_claw/main.py +429 -0
- valueclaw-0.7.0/value_claw/onboard.py +386 -0
- valueclaw-0.7.0/value_claw/scheduler/heartbeat.py +188 -0
- valueclaw-0.7.0/value_claw/scheduler/mlflow_scheduler.py +656 -0
- valueclaw-0.7.0/value_claw/scheduler/prefect_scheduler.py +644 -0
- valueclaw-0.7.0/value_claw/server.py +144 -0
- valueclaw-0.7.0/value_claw/session_manager.py +155 -0
- valueclaw-0.7.0/value_claw/templates/persona/demo_persona.md +2 -0
- valueclaw-0.7.0/value_claw/templates/skills/communication/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/communication/email/SKILL.md +65 -0
- valueclaw-0.7.0/value_claw/templates/skills/communication/email/send_email.py +88 -0
- valueclaw-0.7.0/value_claw/templates/skills/communication/slack/SKILL.md +98 -0
- valueclaw-0.7.0/value_claw/templates/skills/communication/slack/slack_api.py +153 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/csv_analyzer/SKILL.md +61 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/csv_analyzer/analyze.py +138 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/finance/SKILL.md +51 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/finance/fetch_quote.py +118 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/news/SKILL.md +52 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/news/search_news.py +57 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_convert/SKILL.md +65 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_convert/convert_pdf.py +187 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_merge/SKILL.md +52 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_merge/merge_pdf.py +115 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_protect/SKILL.md +65 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_protect/protect_pdf.py +140 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_reader/SKILL.md +51 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_reader/read_pdf.py +113 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_split/SKILL.md +55 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_split/split_pdf.py +109 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_writer/SKILL.md +61 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/pdf_writer/write_pdf.py +138 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/scraper/SKILL.md +40 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/scraper/scrape.py +92 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/weather/SKILL.md +68 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/weather/weather.py +142 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/youtube/SKILL.md +54 -0
- valueclaw-0.7.0/value_claw/templates/skills/data/youtube/youtube_info.py +167 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/code_runner/SKILL.md +58 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/code_runner/run_code.py +117 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/github/SKILL.md +78 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/github/gh.py +165 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/http_request/SKILL.md +50 -0
- valueclaw-0.7.0/value_claw/templates/skills/dev/http_request/request.py +90 -0
- valueclaw-0.7.0/value_claw/templates/skills/google/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/google/workspace/SKILL.md +105 -0
- valueclaw-0.7.0/value_claw/templates/skills/google/workspace/check_setup.sh +52 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/a-stock-analysis/SKILL.md +130 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/a-stock-analysis/scripts/analyze.py +378 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/a-stock-analysis/scripts/portfolio.py +252 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/akshare_data/SKILL.md +79 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/akshare_data/akshare_data.py +378 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/etf-assistant/SKILL.md +129 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/etf-assistant/etf-assistant.sh +318 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/README.md +155 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/SKILL.md +280 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/cron/alerts.sh +19 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/cron/earnings-weekly.sh +19 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/cron/earnings.sh +19 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/cron/evening.sh +19 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/cron/morning.sh +19 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/docs/EQUITY_SHEET_FIXES.md +122 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/docs/PREMIUM_SOURCES.md +212 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/alerts.py +500 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/briefing.py +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/earnings.py +614 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/fetch_news.py +1126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/portfolio.py +317 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/ranking.py +325 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/research.py +283 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/setup.py +290 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/stocks.py +335 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/summarize.py +1728 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/translate_portfolio.py +158 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/utils.py +45 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/scripts/venv-setup.sh +109 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/README.md +34 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_alerts.py +110 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_alerts_extended.py +390 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_briefing.py +101 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_earnings.py +111 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_fetch_news.py +136 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_portfolio.py +76 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_ranking.py +70 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_research.py +356 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_setup.py +84 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_stocks.py +286 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/tests/test_summarize.py +345 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/README.md +97 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/alerts-cron.yaml +45 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/briefing-cron.yaml +101 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/briefing.yaml +115 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/earnings-cron.yaml +45 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/finance-news/workflows/earnings-weekly-cron.yaml +45 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/SKILL.md +256 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/scripts/ib_account.py +192 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/scripts/ib_contract.py +205 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/scripts/ib_helpers.py +151 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/scripts/ib_market_data.py +305 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/interactive-brokers/scripts/ib_orders.py +258 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/market-environment-analysis/SKILL.md +139 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/market-environment-analysis/references/analysis_patterns.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/market-environment-analysis/references/indicators.md +99 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/market-environment-analysis/scripts/market_utils.py +127 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/sec_filings/SKILL.md +70 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/sec_filings/sec_filings.py +227 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/App-Plan.md +442 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/README.md +214 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/SKILL.md +248 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/TODO.md +394 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/docs/ARCHITECTURE.md +408 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/docs/CONCEPT.md +233 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/docs/HOT_SCANNER.md +288 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/docs/README.md +95 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/docs/USAGE.md +465 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/analyze_stock.py +2532 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/dividends.py +365 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/hot_scanner.py +582 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/portfolio.py +548 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/rumor_scanner.py +342 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/test_stock_analysis.py +381 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock-analysis/scripts/watchlist.py +336 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock_fundamentals/SKILL.md +74 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/stock_fundamentals/fundamentals.py +392 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/technical-analyst/SKILL.md +238 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/technical-analyst/assets/analysis_template.md +183 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/technical-analyst/references/technical_analysis_framework.md +282 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/technical_analysis/SKILL.md +70 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/technical_analysis/technicals.py +354 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/trading-coach/SKILL.md +97 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/trading-coach/references/csv_formats.md +155 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/trading-coach/references/insight_dimensions.md +246 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/trading-coach/references/scoring_system.md +223 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/QUICK_REFERENCE.md +228 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/README.md +336 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/SKILL.md +89 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference/README.md +360 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/AH/350/202/241/346/257/224/344/273/267.md +160 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/344/273/275/351/242/235/350/247/204/346/250/241.md +145 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/345/210/206/351/222/237/350/241/214/346/203/205.md +165 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/345/237/272/345/207/206/346/214/207/346/225/260.md +126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/345/237/272/346/234/254/344/277/241/346/201/257.md +213 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/345/244/215/346/235/203/345/233/240/345/255/220.md +130 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/345/256/236/346/227/266/346/227/245/347/272/277.md +159 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ETF/346/227/245/347/272/277/350/241/214/346/203/205.md +156 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/Hibor/345/210/251/347/216/207.md +168 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/IPO/346/226/260/350/202/241/344/270/212/345/270/202.md +162 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/LPR/350/264/267/346/254/276/345/237/272/347/241/200/345/210/251/347/216/207.md +116 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/Libor/345/210/251/347/216/207.md +174 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/ST/350/202/241/347/245/250/345/210/227/350/241/250.md +118 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/Shibor/345/210/251/347/216/207.md +151 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243/Shibor/346/212/245/344/273/267/346/225/260/346/215/256.md +226 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/345/270/202/345/205/254/345/217/270/345/205/254/345/221/212.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/345/270/202/345/205/254/345/217/270/345/237/272/346/234/254/344/277/241/346/201/257.md +189 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/345/270/202/345/205/254/345/217/270/347/256/241/347/220/206/345/261/202.md +175 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/346/265/267/351/273/204/351/207/221/345/237/272/347/241/200/344/277/241/346/201/257.md +162 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/346/265/267/351/273/204/351/207/221/347/216/260/350/264/247/346/227/245/350/241/214/346/203/205.md +179 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/212/350/257/201e/344/272/222/345/212/250/351/227/256/347/255/224.md +135 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/232/347/273/251/345/277/253/346/212/245.md +251 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/232/347/273/251/351/242/204/345/221/212.md +175 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/234/346/226/271/350/264/242/345/257/214App/347/203/255/346/246/234.md +141 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/234/346/226/271/350/264/242/345/257/214/346/246/202/345/277/265/346/210/220/345/210/206.md +104 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/234/346/226/271/350/264/242/345/257/214/346/246/202/345/277/265/346/235/277/345/235/227.md +160 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/234/350/264/242/346/246/202/345/277/265/345/222/214/350/241/214/344/270/232/346/214/207/346/225/260/350/241/214/346/203/205.md +164 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/255/344/277/241/350/241/214/344/270/232/346/210/220/345/210/206.md +204 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/255/344/277/241/350/241/214/344/270/232/346/214/207/346/225/260/346/227/245/350/241/214/346/203/205.md +154 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/255/345/244/256/347/273/223/347/256/227/347/263/273/347/273/237/346/214/201/350/202/241/346/230/216/347/273/206.md +134 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/255/345/244/256/347/273/223/347/256/227/347/263/273/347/273/237/346/214/201/350/202/241/347/273/237/350/256/241.md +129 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/270/273/350/220/245/344/270/232/345/212/241/346/236/204/346/210/220.md +133 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/272/244/346/230/223/346/227/245/345/216/206.md +169 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//344/273/223/345/215/225/346/227/245/346/212/245.md +205 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/200/272/345/210/270/345/233/236/350/264/255/346/227/245/350/241/214/346/203/205.md +198 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/201/232/345/270/202/345/200/237/345/210/270/344/272/244/346/230/223/346/261/207/346/200/273(/345/201/234).md +129 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/205/250/345/233/275/347/224/265/345/275/261/345/211/247/346/234/254/345/244/207/346/241/210/346/225/260/346/215/256.md +118 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/205/250/345/233/275/347/224/265/350/247/206/345/211/247/345/244/207/346/241/210/345/205/254/347/244/272/346/225/260/346/215/256.md +227 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/205/250/347/220/203/350/264/242/347/273/217/344/272/213/344/273/266.md +171 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/210/206/347/272/242/351/200/201/350/202/241/346/225/260/346/215/256.md +187 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/210/251/346/266/246/350/241/250.md +749 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/210/270/345/225/206/346/234/210/345/272/246/351/207/221/350/202/241.md +91 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/210/270/345/225/206/347/233/210/345/210/251/351/242/204/346/265/213/346/225/260/346/215/256.md +224 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/211/215/345/215/201/345/244/247/346/265/201/351/200/232/350/202/241/344/270/234.md +143 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/211/215/345/215/201/345/244/247/350/202/241/344/270/234.md +143 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/214/227/344/272/244/346/211/200/346/226/260/346/227/247/344/273/243/347/240/201/345/257/271/347/205/247.md +92 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/215/227/345/215/216/346/234/237/350/264/247/346/214/207/346/225/260/350/241/214/346/203/205.md +381 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/216/206/345/217/262Tick/350/241/214/346/203/205.md +126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/216/206/345/217/262/345/210/206/351/222/237.md +165 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/216/206/345/217/262/345/210/206/351/222/237/350/241/214/346/203/205.md +172 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/216/206/345/217/262/346/227/245/347/272/277.md +161 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/345/217/221/350/241/214.md +301 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/345/237/272/347/241/200/344/277/241/346/201/257.md +290 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/346/212/200/346/234/257/351/235/242/345/233/240/345/255/220(/344/270/223/344/270/232/347/211/210).md +624 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/347/245/250/351/235/242/345/210/251/347/216/207.md +99 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/350/241/214/346/203/205.md +212 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/350/265/216/345/233/236/344/277/241/346/201/257.md +153 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/350/275/254/350/202/241/344/273/267/345/217/230/345/212/250.md +103 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/257/350/275/254/345/200/272/350/275/254/350/202/241/347/273/223/346/236/234.md +176 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/260/346/271/276/347/224/265/345/255/220/344/272/247/344/270/232/346/234/210/350/220/245/346/224/266.md +395 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/217/260/346/271/276/347/224/265/345/255/220/344/272/247/344/270/232/346/234/210/350/220/245/346/224/266/346/230/216/347/273/206.md +4056 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/204/346/270/240/351/201/223/345/205/254/345/213/237/345/237/272/351/207/221/351/224/200/345/224/256/344/277/235/346/234/211/350/247/204/346/250/241/345/215/240/346/257/224.md +98 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/210/347/272/246/344/277/241/346/201/257.md +192 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/214/350/212/261/351/241/272App/347/203/255/346/246/234/346/225/260.md +153 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/214/350/212/261/351/241/272/346/246/202/345/277/265/345/222/214/350/241/214/344/270/232/346/214/207/346/225/260/350/241/214/346/203/205.md +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/214/350/212/261/351/241/272/346/266/250/350/267/214/345/201/234/346/246/234/345/215/225.md +242 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/214/350/212/261/351/241/272/350/241/214/344/270/232/346/246/202/345/277/265/346/210/220/345/210/206.md +121 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/220/214/350/212/261/351/241/272/350/241/214/344/270/232/346/246/202/345/277/265/346/235/277/345/235/227.md +116 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/221/250_/346/234/210/347/272/277/345/244/215/346/235/203/350/241/214/346/203/205(/346/257/217/346/227/245/346/233/264/346/226/260).md +214 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/221/250_/346/234/210/347/272/277/350/241/214/346/203/205(/346/257/217/346/227/245/346/233/264/346/226/260).md +175 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/221/250/347/272/277/350/241/214/346/203/205.md +185 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/200/272/345/256/236/351/231/205/346/224/266/347/233/212/347/216/207/346/233/262/347/272/277/345/210/251/347/216/207.md +125 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/200/272/346/224/266/347/233/212/347/216/207/346/233/262/347/272/277.md +133 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/200/272/346/224/266/347/233/212/347/216/207/346/233/262/347/272/277/345/210/251/347/216/207.md +174 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/200/272/351/225/277/346/234/237/345/210/251/347/216/207.md +113 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/200/272/351/225/277/346/234/237/345/210/251/347/216/207/345/271/263/345/235/207/345/200/274.md +101 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/206/205/347/224/237/344/272/247/346/200/273/345/200/274(GDP).md +144 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/345/256/266/346/224/277/347/255/226/345/272/223.md +145 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/233/275/351/231/205/344/270/273/350/246/201/346/214/207/346/225/260.md +270 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/345/207/200/345/200/274.md +145 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/345/210/206/347/272/242.md +188 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/345/210/227/350/241/250.md +228 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/346/212/200/346/234/257/351/235/242/345/233/240/345/255/220(/344/270/223/344/270/232/347/211/210).md +599 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/346/214/201/344/273/223.md +159 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/347/256/241/347/220/206/344/272/272.md +162 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/347/273/217/347/220/206.md +147 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/350/247/204/346/250/241.md +114 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/237/272/351/207/221/351/224/200/345/224/256/350/241/214/344/270/232/346/225/260/346/215/256.md +10 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/207/347/224/250/350/241/214/346/203/205.md +284 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/215/346/235/203/345/233/240/345/255/220.md +125 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/215/346/235/203/350/241/214/346/203/205.md +128 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/226/346/261/207/345/237/272/347/241/200/344/277/241/346/201/257(/346/265/267/345/244/226).md +209 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/226/346/261/207/346/227/245/347/272/277/350/241/214/346/203/205.md +199 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/247/345/256/227/344/272/244/346/230/223.md +121 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/247/345/256/227/344/272/244/346/230/223/346/230/216/347/273/206.md +135 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/244/247/347/233/230/346/214/207/346/225/260/346/257/217/346/227/245/346/214/207/346/240/207.md +156 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266Tick(/347/210/254/350/231/253).md +257 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266/345/210/206/351/222/237.md +137 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266/345/210/206/351/222/237/350/241/214/346/203/205.md +182 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266/346/210/220/344/272/244(/347/210/254/350/231/253).md +111 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266/346/216/222/345/220/215(/347/210/254/350/231/253).md +245 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/256/236/346/227/266/346/227/245/347/272/277.md +168 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/270/202/345/234/272/346/270/270/350/265/204/346/234/200/345/205/250/345/220/215/345/275/225.md +520 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/271/277/345/267/236/346/260/221/351/227/264/345/200/237/350/264/267/345/210/251/347/216/207.md +130 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/274/200/347/233/230/347/253/236/344/273/267/346/210/220/344/272/244(/345/275/223/346/227/245).md +140 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//345/275/261/351/231/242/346/227/245/345/272/246/347/245/250/346/210/277.md +129 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/345/221/250/347/272/277/350/241/214/346/203/205.md +189 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/345/237/272/346/234/254/344/277/241/346/201/257.md +245 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/345/256/236/346/227/266/346/227/245/347/272/277.md +134 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/346/210/220/345/210/206/345/222/214/346/235/203/351/207/215.md +106 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/346/212/200/346/234/257/351/235/242/345/233/240/345/255/220(/344/270/223/344/270/232/347/211/210).md +593 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/346/227/245/347/272/277/350/241/214/346/203/205.md +150 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/214/207/346/225/260/346/234/210/347/272/277/350/241/214/346/203/205.md +181 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/225/260/346/215/256/347/264/242/345/274/225.md +20 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/226/260/351/227/273/345/277/253/350/256/257(/347/237/255/350/256/257).md +149 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/226/260/351/227/273/350/201/224/346/222/255/346/226/207/345/255/227/347/250/277.md +96 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/226/260/351/227/273/351/200/232/350/256/257(/351/225/277/347/257/207).md +120 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/227/245/347/272/277/350/241/214/346/203/205.md +248 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/210/347/272/277/350/241/214/346/203/205.md +195 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/346/235/203/345/210/206/351/222/237/350/241/214/346/203/205.md +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/346/235/203/345/220/210/347/272/246/344/277/241/346/201/257.md +213 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/346/235/203/346/227/245/347/272/277/350/241/214/346/203/205.md +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/350/264/247/344/270/273/345/212/233/344/270/216/350/277/236/347/273/255/345/220/210/347/272/246.md +115 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/350/264/247/344/270/273/350/246/201/345/223/201/347/247/215/344/272/244/346/230/223/345/221/250/346/212/245.md +257 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/350/264/247/345/220/210/347/272/246/346/266/250/350/267/214/345/201/234/344/273/267/346/240/274.md +151 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/237/350/264/247/345/221/250_/346/234/210/347/272/277/350/241/214/346/203/205(/346/257/217/346/227/245/346/233/264/346/226/260).md +179 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/234/272/346/236/204/350/260/203/347/240/224/346/225/260/346/215/256.md +144 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/237/234/345/217/260/346/265/201/351/200/232/345/274/217/345/200/272/345/210/270/346/212/245/344/273/267.md +166 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/237/234/345/217/260/346/265/201/351/200/232/345/274/217/345/200/272/345/210/270/346/234/200/344/274/230/346/212/245/344/273/267.md +145 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/246/234/345/215/225/346/225/260/346/215/256(/345/274/200/347/233/230/345/225/246).md +241 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/345/201/234/345/244/215/347/211/214/344/277/241/346/201/257.md +131 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/346/214/201/344/273/223/346/216/222/345/220/215.md +185 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/346/214/207/346/240/207.md +194 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/346/266/250/350/267/214/345/201/234/344/273/267/346/240/274.md +131 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/347/255/271/347/240/201/345/210/206/345/270/203.md +113 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/347/255/271/347/240/201/345/217/212/350/203/234/347/216/207.md +155 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/347/273/223/347/256/227/345/217/202/346/225/260.md +220 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/257/217/346/227/245/350/202/241/346/234/254(/347/233/230/345/211/215).md +130 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/262/252/346/267/261/345/270/202/345/234/272/346/257/217/346/227/245/344/272/244/346/230/223/347/273/237/350/256/241.md +351 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/262/252/346/267/261/346/270/257/351/200/232/350/202/241/347/245/250/345/210/227/350/241/250.md +150 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/262/252/346/267/261/350/202/241/351/200/232/345/215/201/345/244/247/346/210/220/344/272/244/350/202/241.md +164 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/262/252/346/267/261/350/202/241/351/200/232/346/214/201/350/202/241/346/230/216/347/273/206.md +157 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/266/250/345/201/234/346/234/200/345/274/272/346/235/277/345/235/227/347/273/237/350/256/241.md +149 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/266/250/345/201/234/350/202/241/347/245/250/350/277/236/346/235/277/345/244/251/346/242/257.md +154 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/266/250/350/267/214/345/201/234/345/222/214/347/202/270/346/235/277/346/225/260/346/215/256.md +206 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/267/261/345/234/263/345/270/202/345/234/272/346/257/217/346/227/245/344/272/244/346/230/223/346/203/205/345/206/265.md +226 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/267/261/350/257/201/346/230/223/344/272/222/345/212/250/351/227/256/347/255/224.md +154 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/251/345/267/236/346/260/221/351/227/264/345/200/237/350/264/267/345/210/251/347/216/207.md +189 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/344/272/244/346/230/223/346/227/245/345/216/206.md +95 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/210/206/351/222/237/350/241/214/346/203/205.md +164 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/210/251/346/266/246/350/241/250.md +142 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/237/272/347/241/200/344/277/241/346/201/257.md +159 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/244/215/346/235/203/345/233/240/345/255/220.md +114 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/244/215/346/235/203/350/241/214/346/203/205.md +202 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/345/256/236/346/227/266/346/227/245/347/272/277.md +118 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/346/227/245/347/272/277/350/241/214/346/203/205.md +166 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/347/216/260/351/207/221/346/265/201/351/207/217/350/241/250.md +166 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/350/264/242/345/212/241/346/214/207/346/240/207/346/225/260/346/215/256.md +620 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/350/265/204/344/272/247/350/264/237/345/200/272/350/241/250.md +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/351/200/232/345/215/201/345/244/247/346/210/220/344/272/244/350/202/241.md +237 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/351/200/232/346/257/217/346/227/245/346/210/220/344/272/244/347/273/237/350/256/241.md +127 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/257/350/202/241/351/200/232/346/257/217/346/234/210/346/210/220/344/272/244/347/273/237/350/256/241.md +147 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//346/270/270/350/265/204/344/272/244/346/230/223/346/257/217/346/227/245/346/230/216/347/273/206.md +131 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/216/260/351/207/221/346/265/201/351/207/217/350/241/250.md +773 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/263/344/270/207/350/241/214/344/270/232/345/210/206/347/261/273.md +5795 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/263/344/270/207/350/241/214/344/270/232/346/210/220/345/210/206(/345/210/206/347/272/247).md +162 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/263/344/270/207/350/241/214/344/270/232/346/214/207/346/225/260/346/227/245/350/241/214/346/203/205.md +177 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/265/345/275/261/345/221/250/345/272/246/347/245/250/346/210/277.md +125 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/265/345/275/261/346/227/245/345/272/246/347/245/250/346/210/277.md +126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/224/265/345/275/261/346/234/210/345/272/246/347/245/250/346/210/277.md +126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/237/255/346/234/237/345/233/275/345/200/272/345/210/251/347/216/207.md +168 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/244/276/345/214/272/346/215/220/345/212/251.md +18 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/244/276/350/236/215/345/242/236/351/207/217(/346/234/210/345/272/246).md +119 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/245/236/345/245/207/344/271/235/350/275/254/346/214/207/346/240/207.md +170 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/256/241/347/220/206/345/261/202/350/226/252/351/205/254/345/222/214/346/214/201/350/202/241.md +127 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/344/272/244/346/230/223/346/227/245/345/216/206.md +102 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/345/210/251/346/266/246/350/241/250.md +144 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/345/237/272/347/241/200/344/277/241/346/201/257.md +128 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/345/244/215/346/235/203/345/233/240/345/255/220.md +120 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/345/244/215/346/235/203/350/241/214/346/203/205.md +224 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/346/227/245/347/272/277/350/241/214/346/203/205.md +186 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/347/216/260/351/207/221/346/265/201/351/207/217/350/241/250.md +145 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/350/264/242/345/212/241/346/214/207/346/240/207/346/225/260/346/215/256.md +516 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//347/276/216/350/202/241/350/265/204/344/272/247/350/264/237/345/200/272/350/241/250.md +147 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/344/270/234/344/272/272/346/225/260.md +118 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/344/270/234/345/242/236/345/207/217/346/214/201.md +193 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/346/235/203/350/264/250/346/212/274/346/230/216/347/273/206/346/225/260/346/215/256.md +161 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/346/235/203/350/264/250/346/212/274/347/273/237/350/256/241/346/225/260/346/215/256.md +130 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/210/227/350/241/250.md +222 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/216/206/345/217/262/345/210/227/350/241/250.md +218 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/233/236/350/264/255.md +152 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/274/200/346/210/267/346/225/260/346/215/256(/345/201/234).md +123 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/274/200/346/210/267/346/225/260/346/215/256(/346/227/247).md +160 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/345/274/200/347/233/230/351/233/206/345/220/210/347/253/236/344/273/267/346/225/260/346/215/256.md +140 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/346/212/200/346/234/257/351/235/242/345/233/240/345/255/220(/344/270/223/344/270/232/347/211/210).md +1625 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/346/212/200/346/234/257/351/235/242/345/233/240/345/255/220.md +305 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/346/224/266/347/233/230/351/233/206/345/220/210/347/253/236/344/273/267/346/225/260/346/215/256.md +140 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/202/241/347/245/250/346/233/276/347/224/250/345/220/215.md +110 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/236/215/350/265/204/350/236/215/345/210/270/344/272/244/346/230/223/346/230/216/347/273/206.md +189 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/236/215/350/265/204/350/236/215/345/210/270/344/272/244/346/230/223/346/261/207/346/200/273.md +139 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/236/215/350/265/204/350/236/215/345/210/270/346/240/207/347/232/204(/347/233/230/345/211/215).md +117 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/264/242/345/212/241/345/256/241/350/256/241/346/204/217/350/247/201.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/264/242/345/212/241/346/214/207/346/240/207/346/225/260/346/215/256.md +1100 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/264/242/346/212/245/346/212/253/351/234/262/346/227/245/346/234/237/350/241/250.md +133 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/264/247/345/270/201/344/276/233/345/272/224/351/207/217(/346/234/210).md +150 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/265/204/344/272/247/350/264/237/345/200/272/350/241/250.md +1126 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/275/254/350/236/215/345/210/270/344/272/244/346/230/223/346/230/216/347/273/206(/345/201/234).md +123 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/275/254/350/236/215/345/210/270/344/272/244/346/230/223/346/261/207/346/200/273(/345/201/234).md +129 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//350/275/254/350/236/215/350/265/204/344/272/244/346/230/223/346/261/207/346/200/273.md +119 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/200/232/347/224/250/350/241/214/346/203/205/346/216/245/345/217/243.md +161 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/200/232/350/276/276/344/277/241/346/235/277/345/235/227/344/277/241/346/201/257.md +134 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/200/232/350/276/276/344/277/241/346/235/277/345/235/227/346/210/220/345/210/206.md +98 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/200/232/350/276/276/344/277/241/346/235/277/345/235/227/350/241/214/346/203/205.md +316 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/207/207/350/264/255/347/273/217/347/220/206/346/214/207/346/225/260(PMI).md +444 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/224/200/345/224/256/346/234/272/346/236/204/345/205/254/345/213/237/345/237/272/351/207/221/351/224/200/345/224/256/344/277/235/346/234/211/350/247/204/346/250/241.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/231/220/345/224/256/350/202/241/350/247/243/347/246/201.md +167 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/242/230/346/235/220/346/210/220/345/210/206(/345/274/200/347/233/230/345/225/246).md +127 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/242/230/346/235/220/346/225/260/346/215/256(/345/274/200/347/233/230/345/225/246).md +115 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/276/231/350/231/216/346/246/234/346/234/272/346/236/204/344/272/244/346/230/223/345/215/225.md +144 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/reference//346/216/245/345/217/243/346/226/207/346/241/243//351/276/231/350/231/216/346/246/234/346/257/217/346/227/245/347/273/237/350/256/241/345/215/225.md +227 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/tushare-finance/scripts/api_client.py +340 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/twitter-news/SKILL.md +137 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/twitter-news/scripts/twitter_search.py +328 -0
- valueclaw-0.7.0/value_claw/templates/skills/invest/yahoo-finance/SKILL.md +190 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/image_gen/SKILL.md +99 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/image_gen/generate.py +103 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/spotify/SKILL.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/spotify/spotify_ctl.py +231 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/tts/SKILL.md +83 -0
- valueclaw-0.7.0/value_claw/templates/skills/media/tts/speak.py +50 -0
- valueclaw-0.7.0/value_claw/templates/skills/meta/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/meta/skill_creator/SKILL.md +79 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/n8n/SKILL.md +124 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/n8n/scripts/n8n_api.py +203 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/notion/SKILL.md +99 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/notion/notion_api.py +185 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/obsidian/SKILL.md +110 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/obsidian/obsidian_vault.py +165 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/trello/SKILL.md +110 -0
- valueclaw-0.7.0/value_claw/templates/skills/productivity/trello/trello_api.py +141 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/change_persona/SKILL.md +47 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/change_setting/SKILL.md +69 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/change_setting/update_config.py +137 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/change_soul/SKILL.md +46 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/model_usage/SKILL.md +73 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/model_usage/usage_stats.py +73 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/onboarding/SKILL.md +58 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/onboarding/write_identity.py +220 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/random/SKILL.md +51 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/random/random_util.py +45 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/session_logs/SKILL.md +80 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/session_logs/search_sessions.py +55 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/time/SKILL.md +51 -0
- valueclaw-0.7.0/value_claw/templates/skills/system/time/time_util.py +81 -0
- valueclaw-0.7.0/value_claw/templates/skills/text/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/text/translator/SKILL.md +52 -0
- valueclaw-0.7.0/value_claw/templates/skills/text/translator/translate.py +66 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/CATEGORY.md +5 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/brave_search/SKILL.md +34 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/brave_search/brave.py +73 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/perplexity_search/SKILL.md +34 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/perplexity_search/perplexity.py +80 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/summarize/SKILL.md +84 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/summarize/summarize_url.py +107 -0
- valueclaw-0.7.0/value_claw/templates/skills/web/tavily/SKILL.md +62 -0
- valueclaw-0.7.0/value_claw/templates/soul/SOUL.md +54 -0
- valueclaw-0.7.0/value_claw/templates/tools/TOOLS.md +43 -0
- valueclaw-0.7.0/value_claw/web/__init__.py +1 -0
- valueclaw-0.7.0/value_claw/web/app.py +1356 -0
- valueclaw-0.7.0/value_claw/web/static/dashboard.html +374 -0
- valueclaw-0.7.0/value_claw/web/static/favicon.png +0 -0
- valueclaw-0.7.0/value_claw/web/static/index.html +962 -0
- valueclaw-0.7.0/value_claw/web/static/logo.png +0 -0
- valueclaw-0.7.0/valueclaw.egg-info/PKG-INFO +211 -0
- valueclaw-0.7.0/valueclaw.egg-info/SOURCES.txt +462 -0
- valueclaw-0.7.0/valueclaw.egg-info/dependency_links.txt +1 -0
- valueclaw-0.7.0/valueclaw.egg-info/entry_points.txt +2 -0
- valueclaw-0.7.0/valueclaw.egg-info/requires.txt +18 -0
- valueclaw-0.7.0/valueclaw.egg-info/top_level.txt +1 -0
valueclaw-0.7.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Eric Wang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
include LICENSE README.md
|
|
2
|
+
recursive-include pythonclaw *.py *.html *.css *.js *.png *.ico
|
|
3
|
+
recursive-include tests *.py
|
|
4
|
+
|
|
5
|
+
exclude pythonclaw.json
|
|
6
|
+
exclude pythonclaw.example.json
|
|
7
|
+
exclude .env .env.example
|
|
8
|
+
recursive-exclude * __pycache__
|
|
9
|
+
recursive-exclude * *.py[cod]
|
|
10
|
+
recursive-exclude * *.pyc
|
|
11
|
+
recursive-exclude context *
|
|
12
|
+
recursive-exclude .github *
|
|
13
|
+
recursive-exclude assets *
|
valueclaw-0.7.0/PKG-INFO
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: valueclaw
|
|
3
|
+
Version: 0.7.0
|
|
4
|
+
Summary: OpenClaw reimagined in pure Python β autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support.
|
|
5
|
+
Author-email: Eric Wang <wangchen2007915@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ericwang915/ValueClaw
|
|
8
|
+
Project-URL: Documentation, https://github.com/ericwang915/ValueClaw#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/ericwang915/ValueClaw
|
|
10
|
+
Project-URL: Issues, https://github.com/ericwang915/ValueClaw/issues
|
|
11
|
+
Keywords: llm,agent,ai,autonomous,memory,rag,skills,telegram,discord,chatbot,framework,portfolio,investing
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Operating System :: OS Independent
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: openai
|
|
26
|
+
Requires-Dist: anthropic
|
|
27
|
+
Requires-Dist: google-generativeai
|
|
28
|
+
Requires-Dist: python-telegram-bot[job-queue]>=20.0
|
|
29
|
+
Requires-Dist: discord.py>=2.3
|
|
30
|
+
Requires-Dist: apscheduler>=3.10
|
|
31
|
+
Requires-Dist: pyyaml>=6.0
|
|
32
|
+
Requires-Dist: prefect>=3.0
|
|
33
|
+
Requires-Dist: fastapi>=0.100
|
|
34
|
+
Requires-Dist: uvicorn[standard]>=0.20
|
|
35
|
+
Requires-Dist: httpx>=0.24
|
|
36
|
+
Requires-Dist: tavily-python
|
|
37
|
+
Requires-Dist: rank-bm25>=0.2
|
|
38
|
+
Requires-Dist: numpy>=1.24
|
|
39
|
+
Requires-Dist: scikit-learn>=1.3
|
|
40
|
+
Requires-Dist: beautifulsoup4
|
|
41
|
+
Requires-Dist: requests
|
|
42
|
+
Requires-Dist: yfinance>=0.2.31
|
|
43
|
+
Dynamic: license-file
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<img src="assets/logo.png" alt="ValueClaw" width="160">
|
|
47
|
+
</p>
|
|
48
|
+
|
|
49
|
+
<h1 align="center">ValueClaw</h1>
|
|
50
|
+
|
|
51
|
+
<p align="center">
|
|
52
|
+
<strong>Your Autonomous AI Investment Analyst β Built entirely in Python.</strong><br>
|
|
53
|
+
Market Research Β· Fundamentals Analysis Β· Sentiment Tracking Β· Web Dashboard Β· Multi-Channel
|
|
54
|
+
</p>
|
|
55
|
+
|
|
56
|
+
<p align="center">
|
|
57
|
+
<a href="https://github.com/ericwang915/ValueClaw/actions/workflows/ci.yml">
|
|
58
|
+
<img src="https://github.com/ericwang915/ValueClaw/actions/workflows/ci.yml/badge.svg" alt="CI">
|
|
59
|
+
</a>
|
|
60
|
+
<a href="https://pypi.org/project/value_claw/">
|
|
61
|
+
<img src="https://img.shields.io/pypi/v/value_claw?color=blue" alt="PyPI">
|
|
62
|
+
</a>
|
|
63
|
+
<img src="https://img.shields.io/pypi/pyversions/value_claw" alt="Python">
|
|
64
|
+
<a href="LICENSE">
|
|
65
|
+
<img src="https://img.shields.io/github/license/ericwang915/ValueClaw" alt="MIT License">
|
|
66
|
+
</a>
|
|
67
|
+
<a href="https://github.com/ericwang915/ValueClaw/stargazers">
|
|
68
|
+
<img src="https://img.shields.io/github/stars/ericwang915/ValueClaw?style=social" alt="Stars">
|
|
69
|
+
</a>
|
|
70
|
+
</p>
|
|
71
|
+
|
|
72
|
+
<p align="center">
|
|
73
|
+
<em>An intelligent, provider-agnostic native AI agent dedicated to deep financial research, SEC filing analysis, and autonomous market monitoring. Surpass human limitations with code-driven investment intelligence.</em>
|
|
74
|
+
</p>
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## π Why ValueClaw?
|
|
79
|
+
|
|
80
|
+
While other frameworks offer generic conversational AI, **ValueClaw** is engineered from the ground up to be a **Tier-1 Financial Analyst**. It bridges the gap between massive LLM reasoning capabilities (like DeepSeek, GPT-4, and Claude) and hard quantitative market data.
|
|
81
|
+
|
|
82
|
+
- **Data-Driven Objectivity:** Never hallucinates stock prices. ValueClaw pulls real-time data before answering.
|
|
83
|
+
- **Provider-Agnostic Engine:** Swap between DeepSeek, Grok, Claude, Gemini, Kimi, and GLM on the fly.
|
|
84
|
+
- **Persistent Memory:** Remembers your portfolio preferences, risk tolerance, and historical market contexts.
|
|
85
|
+
- **Hybrid RAG Architecture:** Fuses BM25 sparse retrieval with dense embeddings for pinpoint accuracy on massive SEC documents.
|
|
86
|
+
- **Always Online:** Runs as a standalone background daemon interacting with you seamlessly via Telegram, Discord, WhatsApp, or its own rich Web Dashboard.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## π Investment Capabilities (Deep Dive)
|
|
91
|
+
|
|
92
|
+
ValueClaw's true power lies in its extensible **Financial Skills Engine**. Out of the box, it is equipped to handle complex quantitative and qualitative research tasks.
|
|
93
|
+
|
|
94
|
+
### 1. Market Data Mastery
|
|
95
|
+
- **`yahoo-finance`**: Instantly pull global stock prices, historical ticks, and major indices.
|
|
96
|
+
- **`tushare-finance`**: Deep integration with Chinese A-Shares. Fetch daily quotes, margin trading data, and macroeconomic indicators (PMI, CPI).
|
|
97
|
+
- **`akshare_data`**: Access an arsenal of alternative data for futures, options, and foreign exchange markets.
|
|
98
|
+
|
|
99
|
+
### 2. Corporate Fundamentals
|
|
100
|
+
- **`sec_filings`**: Automatically fetch 10-K and 10-Q reports directly from the SEC EDGAR database. The agent reads the raw filings, bypasses PR spin, and extracts critical risk factors and management discussions.
|
|
101
|
+
- **`stock_fundamentals`**: Calculates and tracks PE, PB, ROE, EPS, Free Cash Flow, and operating margins to evaluate intrinsic value.
|
|
102
|
+
|
|
103
|
+
### 3. Quantitative & Technical Analysis
|
|
104
|
+
- **`technical_analysis`**: Calculates dynamic indicators including RSI, MACD, Moving Averages (EMA/SMA), and Bollinger Bands to optimize entry/exit points.
|
|
105
|
+
- **`market-environment-analysis`**: Assesses macroeconomic trends and broader market sentiment to determine systematic risk levels.
|
|
106
|
+
|
|
107
|
+
### 4. News & Social Sentiment Engine
|
|
108
|
+
- **`finance-news`**: Monitors breaking financial news across global endpoints.
|
|
109
|
+
- **`twitter-news`**: Analyzes social media sentiment in real-time to front-run retail trends and viral market movements.
|
|
110
|
+
|
|
111
|
+
### 5. Strategy & Trading Assistants
|
|
112
|
+
- **`trading-coach`**: Acts as your personal quant strategist. Submit a portfolio hypothesis, and the agent will backtest the logic, pointing out historical flaws and risk exposures.
|
|
113
|
+
- **`etf-assistant`**: Recommends ETF allocations based on desired thematic exposure (e.g., "Give me a low-volatility semiconductor basket").
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## π Web & Deep Research Capabilities
|
|
118
|
+
|
|
119
|
+
When financial data platforms fall short, ValueClaw takes to the open web.
|
|
120
|
+
|
|
121
|
+
- **`perplexity_search`**: Connected to the `sonar-pro` model, the agent can synthesize massive geopolitical reports, supply chain disruptions, and macro research dynamically.
|
|
122
|
+
- **`brave_search`**: Programmatic, unbiased web searches for the latest unindexed events and press releases.
|
|
123
|
+
- **`summarize`**: Feed the agent an earnings call transcript link, and receive a structured, 5-point executive summary in seconds.
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## π Quick Start
|
|
128
|
+
|
|
129
|
+
### 1. Installation
|
|
130
|
+
Install the package directly via pip (Requires Python 3.10+):
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
pip install value_claw
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### 2. Initialization Wizard
|
|
137
|
+
Set up your preferred LLM provider (e.g., DeepSeek, OpenAI) and API keys securely:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
value_claw onboard
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### 3. Launch the Analyst
|
|
144
|
+
Start ValueClaw as a persistent background daemon:
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
value_claw start
|
|
148
|
+
```
|
|
149
|
+
*The local Web UI dashboard is now available at `http://localhost:7788`.*
|
|
150
|
+
|
|
151
|
+
### 4. Chat
|
|
152
|
+
Interact with your deployment directly from the terminal or Telegram:
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
value_claw chat
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## π§ Architecture Overview
|
|
161
|
+
|
|
162
|
+
```
|
|
163
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
164
|
+
β ValueClaw β
|
|
165
|
+
βββββββββββββ¬βββββββββββββ¬ββββββββββββββ¬βββββββββββββββββββββββββββ€
|
|
166
|
+
β Interface β Lifecycle β Memory & β Core Engine β
|
|
167
|
+
β β β State β β
|
|
168
|
+
β CLI β Start β Markdown β ββ Hybrid RAG Retrieval β
|
|
169
|
+
β Web UI βββ€ Stop β Local DB β ββ Financial Skills β
|
|
170
|
+
β Telegram β Status β Locks β ββ Context Compaction β
|
|
171
|
+
β Discord β Cron Jobs β Per-group β ββ Persona Manager β
|
|
172
|
+
βββββββββββββ΄βββββββββββββ΄ββββββββββββββ΄βββββββββββββββββββββββββββ€
|
|
173
|
+
β LLM Provider Abstraction Layer β
|
|
174
|
+
β DeepSeek β Grok β Claude β Gemini β Kimi β GLM | OpenAI API β
|
|
175
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## π οΈ Configuration
|
|
181
|
+
|
|
182
|
+
All system properties, API keys, and model preferences are handled natively in `value_claw.json`. See the [`value_claw.example.json`](value_claw.example.json) to manually configure providers like Brave, Perplexity, or Telegram bots.
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## πΊοΈ Roadmap
|
|
187
|
+
|
|
188
|
+
- [x] Integrate global LLM models (DeepSeek, Grok, Gemini, Claude).
|
|
189
|
+
- [x] Multi-Channel Support (Telegram, Discord, Web UI).
|
|
190
|
+
- [x] Fully open-source Skills Marketplace integration.
|
|
191
|
+
- [ ] **Multi-Agent Debate**: Spawn two agents (a Bull and a Bear) to argue a stock thesis before finalizing a report.
|
|
192
|
+
- [ ] **Live Trade Integration**: Direct API hookups for Alpaca and Interactive Brokers paper trading.
|
|
193
|
+
- [ ] **PDF/Image Parse**: Native visual parsing for bespoke hedge fund reports and charting images.
|
|
194
|
+
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
## π€ Contributing
|
|
198
|
+
|
|
199
|
+
We welcome pull requests! Whether you are building a new financial skill, optimizing the RAG pipeline, or translating documentationβyour contributions are highly valued. See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## π License
|
|
204
|
+
|
|
205
|
+
This project is licensed under the [MIT License](LICENSE).
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
<p align="center">
|
|
210
|
+
<sub>If ValueClaw saves you time or makes you money, consider giving the repo a β</sub>
|
|
211
|
+
</p>
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/logo.png" alt="ValueClaw" width="160">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">ValueClaw</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>Your Autonomous AI Investment Analyst β Built entirely in Python.</strong><br>
|
|
9
|
+
Market Research Β· Fundamentals Analysis Β· Sentiment Tracking Β· Web Dashboard Β· Multi-Channel
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<a href="https://github.com/ericwang915/ValueClaw/actions/workflows/ci.yml">
|
|
14
|
+
<img src="https://github.com/ericwang915/ValueClaw/actions/workflows/ci.yml/badge.svg" alt="CI">
|
|
15
|
+
</a>
|
|
16
|
+
<a href="https://pypi.org/project/value_claw/">
|
|
17
|
+
<img src="https://img.shields.io/pypi/v/value_claw?color=blue" alt="PyPI">
|
|
18
|
+
</a>
|
|
19
|
+
<img src="https://img.shields.io/pypi/pyversions/value_claw" alt="Python">
|
|
20
|
+
<a href="LICENSE">
|
|
21
|
+
<img src="https://img.shields.io/github/license/ericwang915/ValueClaw" alt="MIT License">
|
|
22
|
+
</a>
|
|
23
|
+
<a href="https://github.com/ericwang915/ValueClaw/stargazers">
|
|
24
|
+
<img src="https://img.shields.io/github/stars/ericwang915/ValueClaw?style=social" alt="Stars">
|
|
25
|
+
</a>
|
|
26
|
+
</p>
|
|
27
|
+
|
|
28
|
+
<p align="center">
|
|
29
|
+
<em>An intelligent, provider-agnostic native AI agent dedicated to deep financial research, SEC filing analysis, and autonomous market monitoring. Surpass human limitations with code-driven investment intelligence.</em>
|
|
30
|
+
</p>
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## π Why ValueClaw?
|
|
35
|
+
|
|
36
|
+
While other frameworks offer generic conversational AI, **ValueClaw** is engineered from the ground up to be a **Tier-1 Financial Analyst**. It bridges the gap between massive LLM reasoning capabilities (like DeepSeek, GPT-4, and Claude) and hard quantitative market data.
|
|
37
|
+
|
|
38
|
+
- **Data-Driven Objectivity:** Never hallucinates stock prices. ValueClaw pulls real-time data before answering.
|
|
39
|
+
- **Provider-Agnostic Engine:** Swap between DeepSeek, Grok, Claude, Gemini, Kimi, and GLM on the fly.
|
|
40
|
+
- **Persistent Memory:** Remembers your portfolio preferences, risk tolerance, and historical market contexts.
|
|
41
|
+
- **Hybrid RAG Architecture:** Fuses BM25 sparse retrieval with dense embeddings for pinpoint accuracy on massive SEC documents.
|
|
42
|
+
- **Always Online:** Runs as a standalone background daemon interacting with you seamlessly via Telegram, Discord, WhatsApp, or its own rich Web Dashboard.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## π Investment Capabilities (Deep Dive)
|
|
47
|
+
|
|
48
|
+
ValueClaw's true power lies in its extensible **Financial Skills Engine**. Out of the box, it is equipped to handle complex quantitative and qualitative research tasks.
|
|
49
|
+
|
|
50
|
+
### 1. Market Data Mastery
|
|
51
|
+
- **`yahoo-finance`**: Instantly pull global stock prices, historical ticks, and major indices.
|
|
52
|
+
- **`tushare-finance`**: Deep integration with Chinese A-Shares. Fetch daily quotes, margin trading data, and macroeconomic indicators (PMI, CPI).
|
|
53
|
+
- **`akshare_data`**: Access an arsenal of alternative data for futures, options, and foreign exchange markets.
|
|
54
|
+
|
|
55
|
+
### 2. Corporate Fundamentals
|
|
56
|
+
- **`sec_filings`**: Automatically fetch 10-K and 10-Q reports directly from the SEC EDGAR database. The agent reads the raw filings, bypasses PR spin, and extracts critical risk factors and management discussions.
|
|
57
|
+
- **`stock_fundamentals`**: Calculates and tracks PE, PB, ROE, EPS, Free Cash Flow, and operating margins to evaluate intrinsic value.
|
|
58
|
+
|
|
59
|
+
### 3. Quantitative & Technical Analysis
|
|
60
|
+
- **`technical_analysis`**: Calculates dynamic indicators including RSI, MACD, Moving Averages (EMA/SMA), and Bollinger Bands to optimize entry/exit points.
|
|
61
|
+
- **`market-environment-analysis`**: Assesses macroeconomic trends and broader market sentiment to determine systematic risk levels.
|
|
62
|
+
|
|
63
|
+
### 4. News & Social Sentiment Engine
|
|
64
|
+
- **`finance-news`**: Monitors breaking financial news across global endpoints.
|
|
65
|
+
- **`twitter-news`**: Analyzes social media sentiment in real-time to front-run retail trends and viral market movements.
|
|
66
|
+
|
|
67
|
+
### 5. Strategy & Trading Assistants
|
|
68
|
+
- **`trading-coach`**: Acts as your personal quant strategist. Submit a portfolio hypothesis, and the agent will backtest the logic, pointing out historical flaws and risk exposures.
|
|
69
|
+
- **`etf-assistant`**: Recommends ETF allocations based on desired thematic exposure (e.g., "Give me a low-volatility semiconductor basket").
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## π Web & Deep Research Capabilities
|
|
74
|
+
|
|
75
|
+
When financial data platforms fall short, ValueClaw takes to the open web.
|
|
76
|
+
|
|
77
|
+
- **`perplexity_search`**: Connected to the `sonar-pro` model, the agent can synthesize massive geopolitical reports, supply chain disruptions, and macro research dynamically.
|
|
78
|
+
- **`brave_search`**: Programmatic, unbiased web searches for the latest unindexed events and press releases.
|
|
79
|
+
- **`summarize`**: Feed the agent an earnings call transcript link, and receive a structured, 5-point executive summary in seconds.
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## π Quick Start
|
|
84
|
+
|
|
85
|
+
### 1. Installation
|
|
86
|
+
Install the package directly via pip (Requires Python 3.10+):
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
pip install value_claw
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### 2. Initialization Wizard
|
|
93
|
+
Set up your preferred LLM provider (e.g., DeepSeek, OpenAI) and API keys securely:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
value_claw onboard
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### 3. Launch the Analyst
|
|
100
|
+
Start ValueClaw as a persistent background daemon:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
value_claw start
|
|
104
|
+
```
|
|
105
|
+
*The local Web UI dashboard is now available at `http://localhost:7788`.*
|
|
106
|
+
|
|
107
|
+
### 4. Chat
|
|
108
|
+
Interact with your deployment directly from the terminal or Telegram:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
value_claw chat
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## π§ Architecture Overview
|
|
117
|
+
|
|
118
|
+
```
|
|
119
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
120
|
+
β ValueClaw β
|
|
121
|
+
βββββββββββββ¬βββββββββββββ¬ββββββββββββββ¬βββββββββββββββββββββββββββ€
|
|
122
|
+
β Interface β Lifecycle β Memory & β Core Engine β
|
|
123
|
+
β β β State β β
|
|
124
|
+
β CLI β Start β Markdown β ββ Hybrid RAG Retrieval β
|
|
125
|
+
β Web UI βββ€ Stop β Local DB β ββ Financial Skills β
|
|
126
|
+
β Telegram β Status β Locks β ββ Context Compaction β
|
|
127
|
+
β Discord β Cron Jobs β Per-group β ββ Persona Manager β
|
|
128
|
+
βββββββββββββ΄βββββββββββββ΄ββββββββββββββ΄βββββββββββββββββββββββββββ€
|
|
129
|
+
β LLM Provider Abstraction Layer β
|
|
130
|
+
β DeepSeek β Grok β Claude β Gemini β Kimi β GLM | OpenAI API β
|
|
131
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## π οΈ Configuration
|
|
137
|
+
|
|
138
|
+
All system properties, API keys, and model preferences are handled natively in `value_claw.json`. See the [`value_claw.example.json`](value_claw.example.json) to manually configure providers like Brave, Perplexity, or Telegram bots.
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## πΊοΈ Roadmap
|
|
143
|
+
|
|
144
|
+
- [x] Integrate global LLM models (DeepSeek, Grok, Gemini, Claude).
|
|
145
|
+
- [x] Multi-Channel Support (Telegram, Discord, Web UI).
|
|
146
|
+
- [x] Fully open-source Skills Marketplace integration.
|
|
147
|
+
- [ ] **Multi-Agent Debate**: Spawn two agents (a Bull and a Bear) to argue a stock thesis before finalizing a report.
|
|
148
|
+
- [ ] **Live Trade Integration**: Direct API hookups for Alpaca and Interactive Brokers paper trading.
|
|
149
|
+
- [ ] **PDF/Image Parse**: Native visual parsing for bespoke hedge fund reports and charting images.
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## π€ Contributing
|
|
154
|
+
|
|
155
|
+
We welcome pull requests! Whether you are building a new financial skill, optimizing the RAG pipeline, or translating documentationβyour contributions are highly valued. See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## π License
|
|
160
|
+
|
|
161
|
+
This project is licensed under the [MIT License](LICENSE).
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
<p align="center">
|
|
166
|
+
<sub>If ValueClaw saves you time or makes you money, consider giving the repo a β</sub>
|
|
167
|
+
</p>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "valueclaw"
|
|
7
|
+
version = "0.7.0"
|
|
8
|
+
description = "OpenClaw reimagined in pure Python β autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Eric Wang", email = "wangchen2007915@gmail.com"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["llm", "agent", "ai", "autonomous", "memory", "rag", "skills", "telegram", "discord", "chatbot", "framework", "portfolio", "investing"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Operating System :: OS Independent",
|
|
27
|
+
]
|
|
28
|
+
dependencies = [
|
|
29
|
+
"openai",
|
|
30
|
+
"anthropic",
|
|
31
|
+
"google-generativeai",
|
|
32
|
+
"python-telegram-bot[job-queue]>=20.0",
|
|
33
|
+
"discord.py>=2.3",
|
|
34
|
+
"apscheduler>=3.10",
|
|
35
|
+
"pyyaml>=6.0",
|
|
36
|
+
"prefect>=3.0",
|
|
37
|
+
"fastapi>=0.100",
|
|
38
|
+
"uvicorn[standard]>=0.20",
|
|
39
|
+
"httpx>=0.24",
|
|
40
|
+
"tavily-python",
|
|
41
|
+
"rank-bm25>=0.2",
|
|
42
|
+
"numpy>=1.24",
|
|
43
|
+
"scikit-learn>=1.3",
|
|
44
|
+
"beautifulsoup4",
|
|
45
|
+
"requests",
|
|
46
|
+
"yfinance>=0.2.31",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[project.scripts]
|
|
50
|
+
value_claw = "value_claw.main:main"
|
|
51
|
+
|
|
52
|
+
[project.urls]
|
|
53
|
+
Homepage = "https://github.com/ericwang915/ValueClaw"
|
|
54
|
+
Documentation = "https://github.com/ericwang915/ValueClaw#readme"
|
|
55
|
+
Repository = "https://github.com/ericwang915/ValueClaw"
|
|
56
|
+
Issues = "https://github.com/ericwang915/ValueClaw/issues"
|
|
57
|
+
|
|
58
|
+
[tool.setuptools.packages.find]
|
|
59
|
+
include = ["value_claw*"]
|
|
60
|
+
|
|
61
|
+
[tool.setuptools.package-data]
|
|
62
|
+
value_claw = [
|
|
63
|
+
"templates/**/*.py",
|
|
64
|
+
"templates/**/*.sh",
|
|
65
|
+
"templates/**/*.yaml",
|
|
66
|
+
"templates/**/*.md",
|
|
67
|
+
"web/static/**/*",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[tool.setuptools.exclude-package-data]
|
|
71
|
+
"*" = ["__pycache__", "*.pyc", "*.pyo"]
|
|
72
|
+
|
|
73
|
+
[tool.ruff]
|
|
74
|
+
target-version = "py310"
|
|
75
|
+
line-length = 120
|
|
76
|
+
|
|
77
|
+
[tool.ruff.lint]
|
|
78
|
+
select = ["E", "F", "W", "I"]
|
|
79
|
+
ignore = ["E501"]
|
|
80
|
+
|
|
81
|
+
[tool.pytest.ini_options]
|
|
82
|
+
testpaths = ["tests"]
|
|
83
|
+
pythonpath = ["."]
|