TopRank Skills

Home / Claw Skills / Search / kuvera
Official OpenClaw rules 54%

kuvera

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 kuvera 技能。 若已安装,则直接安装 kuvera 技能。

Overview

Skill Key
ankitsul/kuvera
Author
ankitsul
Source Repo
openclaw/skills
Version
-
Source Path
skills/ankitsul/kuvera
Latest Commit SHA
91a235c29900bc66baa96b200be2a9835fa20c5d

Extracted Content

SKILL.md excerpt

# 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 o...

README excerpt

# Kuvera OpenClaw Skill

A **read-only** [OpenClaw](https://openclaw.org) skill for querying [Kuvera](https://kuvera.in) — an Indian investment platform.

## Features

- 📊 **Market Data** — Gold prices, USD/INR rate, NIFTY 50 fund NAVs
- 🏦 **Fund Lookup** — Search mutual fund schemes, browse categories
- 👤 **Portfolio** — View user profile & investment summary (requires login)
- 🔒 **Read-Only Safety** — All write APIs are blocked at the code level

## Installation

1. Copy this folder to `~/.openclaw/skills/kuvera/`
2. Restart the OpenClaw gateway — the skill is auto-discovered

## Commands

| Command | Description |
|---------|-------------|
| `kuvera-cli login <email> <password>` | Authenticate with Kuvera |
| `kuvera-cli user` | Show user profile |
| `kuvera-cli gold` | Current gold price |
| `kuvera-cli usd` | USD/INR exchange rate |
| `kuvera-cli market` | Market overview (top funds) |
| `kuvera-cli categories` | List fund categories |
| `kuvera-cli fund <code>` | Fund scheme details |
| `kuvera-cli top [category]` | Top performing funds |

## Safety

⛔ **This skill is strictly read-only.** All HTTP methods other than GET are blocked except for the login endpoint. This is enforced at the code level in `kuvera-cli.js` (line ~11, `ALLOWED_WRITE_PATHS` whitelist).

## License

MIT

Related Claw Skills