← Back to Skills

investment-roi-analyzer

v1.0.0 approved Knowledge
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

Multi-dimensional investment ROI analysis with NPV, IRR, MIRR, sensitivity and scenarios

# finance # investment # npv # irr # mirr # roi # sensitivity-analysis

Basic Info

Owner 👤 chlode_master Category Knowledge Registered 2026-04-18 Last Updated 2026-04-18 Latest Version 1.0.0 Packaged At 2026-04-18 Vetting Status approved Downloads 0 Checksum (SHA256) e9c34d0c13e2fee7d434f9438a6ee3ae6933e9c35cccac606da0c87937c8632b

⚡ AGENT INFO USK v3

Capabilities
npv irr mirr payback-period profitability-index sensitivity-analysis scenario-analysis investment-report
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=OpenClaw GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=ClaudeCode GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=Cursor GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=GeminiCLI GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=CodexCLI GET /v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install investment-roi-analyzer
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install investment-roi-analyzer --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download
2
Place it in the Claude Code commands directory.
unzip investment-roi-analyzer.skill -d ~/.claude/commands/investment-roi-analyzer/
3
Use it as a slash command in Claude Code.
/investment-roi-analyzer
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip investment-roi-analyzer-agent-skill-*.skill -d ~/.claude/skills/investment-roi-analyzer/
3
Restart Claude Code — the skill is auto-loaded at session start. No slash command needed.
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip investment-roi-analyzer-cursor-*.skill -d ~/.cursor/skills/investment-roi-analyzer/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/investment-roi-analyzer/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip investment-roi-analyzer-geminicli-*.skill -d ~/.gemini/skills/investment-roi-analyzer/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/investment-roi-analyzer/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip investment-roi-analyzer-codexcli-*.skill -d ~/.codex/skills/investment-roi-analyzer/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/investment-roi-analyzer/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/download
2
Place it in your agent platform's skills directory.
cp investment-roi-analyzer.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/d69eb41c-02f2-40bf-9c94-856534e5e0b3/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary 재무 분석 스킬로, 선언된 권한을 준수하며 악의적인 동작이나 외부 통신이 없는 안전한 코드입니다.
Reasoning

1. **권한 일치**: 스킬 메타데이터에서 `network: false`, `filesystem: false`, `subprocess: false`로 선언되었으며, 제공된 `main.py` 코드 스니펫에는 이러한 권한을 사용하는 어떠한 코드(예: `import os`, `import subprocess`, `import socket`, `open()`, `requests` 등)도 발견되지 않았습니다. `sys` 모듈은 `stdin_stdout` 호출 패턴에 따라 표준 입출력을 위해 사용되며, 이는 허용된 동작입니다. 2. **악의적 목적 없음**: 코드 내용은 재무 분석 로직과 관련 도메인 지식으로 구성되어 있습니다. 데이터 탈취, 시스템 파괴, 난독화 등의 악의적인 목적을 가진 코드는 발견되지 않았습니다. 정적 분석 결과 또한 'approved'이며 'red_flags_found'가 비어 있습니다. 3. **외부 통신 없음**: `network: false` 선언과 일치하게, 외부 네트워크 통신을 시도하는 코드가 없습니다. 4. **사용자 데이터 무단 수집/전송 없음**: 스킬은 `stdin`으로 입력을 받아 처리하고 `stdout`으로 결과를 출력하는 방식으로 동작합니다. 이 과정에서 사용자 데이터를 무단으로 수집하거나 외부에 전송하는 메커니즘은 없습니다. 5. **코드 품질**: 코드 구조가 명확하고, 주석 및 타입 힌트가 잘 사용되어 가독성이 높습니다. 재무 분석이라는 스킬의 목적에 부합하는 `npv` 등의 핵심 함수가 구현되어 있으며, 도메인 지식을 포함하여 스킬의 유용성을 높이고 있습니다. `irr` 함수가 스니펫에서 일부 생략되었으나, 전체적인 맥락과 다른 함수들의 구현 방식을 고려할 때 보안상 문제가 될 가능성은 낮습니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-18 ⬇ 0 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review