openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Kuvera Portfolio & Market Data

Kuvera portfolio & market data CLI. Query mutual fund data, gold prices, USD/INR rates, fund category returns, and user portfolio info from Kuvera. Use when...

数据与表格

作者:Ankit Sultania @ankitsul

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 201 · 2 current installs · 2 all-time installs

0

安装量(当前) 2

🛡 VirusTotal :良性 · OpenClaw :良性

Package:ankitsul/kuvera

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, instructions, and requirements are coherent with a read-only Kuvera CLI: it only needs a kuvera-cli binary, performs GET requests to api.kuvera.in, and stores a login token in the user's home directory.

目的

Name/description ask for market & portfolio queries. The skill requires the kuvera-cli binary and the included kuvera-cli.js implements those read-only queries against api.kuvera.in — the requested pieces align with the stated purpose.

说明范围

SKILL.md instructs the agent to run kuvera-cli commands (market, gold, usd, categories, fund, user, portfolio, transactions, sips). Login requires kuvera-cli login <email> <password>. The runtime instructions and CLI code stick to read-only GET endpoints, but note that login transmits user credentials to Kuvera and the CLI stores a token file (~/.openclaw/credentials/kuvera/token.json) — a normal side-effect but material for user privacy and s…

安装机制

No automated install script or remote downloads. The README instructs copying the skill folder into the local OpenClaw skills directory. That is low risk compared to remote installers; installing the kuvera-cli binary is required but not automated by the skill.

证书

The skill requests no environment variables or unrelated credentials. It uses process.env.HOME to determine the user's home for token storage — appropriate and proportionate for storing a user auth token.

持久

always is false and the skill does not request system-wide privileges. It writes its own token to ~/.openclaw/credentials/kuvera/token.json (expected). It does not modify other skills or global agent settings.

综合结论

This skill appears to be what it claims: a read-only Kuvera CLI. Before installing, consider: 1) Login requires you to pass your Kuvera email/password to the CLI — avoid putting credentials in shell history (use an interactive prompt or a secure mechanism) because commands like kuvera-cli login <email> <password> may be recorded. 2) The CLI stores a JWT/token at ~/.openclaw/credentials/kuvera/token.json — ensure that file is protected by files…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Kuvera Portfolio & Market Data」。简介:Kuvera portfolio & market data CLI. Query mutual fund data, gold prices, USD/IN…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ankitsul/kuvera/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: kuvera
description: "Kuvera portfolio & market data CLI. Query mutual fund data, gold prices, USD/INR rates, fund category returns, and user portfolio info from Kuvera. Use when the user asks about their investments, mutual funds, gold prices, market overview, or Kuvera portfolio."
homepage: https://kuvera.in
metadata:
  {
    "openclaw":
      {
        "emoji": "📊",
        "requires": { "bins": ["kuvera-cli"] },
      },
  }
---

# Kuvera Portfolio & Market Data CLI

Get Indian market data, mutual fund info, gold prices, and portfolio data from Kuvera.

## When to Use

✅ **USE this skill when:**

- "What's the gold price?"
- "How's the market doing?"
- "Top mutual funds"
- "Dollar rate / USD INR"
- "Show me mutual fund category returns"
- "Tell me about fund XYZ"
- "Show my Kuvera portfolio"
- "How are my investments doing?"
- "Show my recent transactions"
- "What are my active SIPs?"
- "What's my P&L / returns?"

## Commands

### Market Overview (gold + USD + MF categories)

```bash
kuvera-cli market
```

### Gold Price

```bash
kuvera-cli gold
```

### USD/INR Exchange Rate

```bash
kuvera-cli usd
```

### Mutual Fund Category Returns

```bash
kuvera-cli categories
```

### Mutual Fund Details (by code)

```bash
# Example: look up a specific fund
kuvera-cli fund LFAG-GR
```

### Top Mutual Funds

```bash
# Top bought funds
kuvera-cli top bought

# Top sold funds
kuvera-cli top sold

# Most watched funds
kuvera-cli top watched
```

### User Profile (requires login)

```bash
kuvera-cli user
```

### Investment Portfolio with P&L (requires login)

```bash
kuvera-cli portfolio
```

### Recent Transactions (requires login)

```bash
# Show last 20 transactions (default)
kuvera-cli transactions

# Show last N transactions
kuvera-cli transactions 10
```

### Active SIPs (requires login)

```bash
kuvera-cli sips
```

## ⛔ SAFETY — READ-ONLY

**This skill is strictly read-only. NEVER attempt to:**
- Buy, sell, redeem, or switch any mutual fund
- Place any order or modify any transaction
- Change any user settings or portfolio configuration
- Call any Kuvera API endpoint that modifies data

The CLI enforces this at the code level — all non-GET requests (except login) are blocked.

## Notes

- All market data commands work without login.
- `kuvera-cli user`, `portfolio`, `transactions`, and `sips` require prior login via `kuvera-cli login <email> <password>`.
- This is read-only. No buy/sell/trade operations are supported.