← Back to Skills

funding-comparator

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

Compare funding options and recommend optimal capital mix by company stage

# funding # capital # vc # debt # equity # finance # startup

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 2 Checksum (SHA256) 90a9c389f1ac709d88a44bc83e07d465013ea6a45871ff4d50cd0a77108b82bc

⚡ AGENT INFO USK v3

Capabilities
funding-comparison cost-of-capital funding-mix stage-matching
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=OpenClaw GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=ClaudeCode GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=Cursor GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=GeminiCLI GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=CodexCLI GET /v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/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 funding-comparator
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install funding-comparator --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download
2
Place it in the Claude Code commands directory.
unzip funding-comparator.skill -d ~/.claude/commands/funding-comparator/
3
Use it as a slash command in Claude Code.
/funding-comparator
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip funding-comparator-agent-skill-*.skill -d ~/.claude/skills/funding-comparator/
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/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip funding-comparator-cursor-*.skill -d ~/.cursor/skills/funding-comparator/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/funding-comparator/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip funding-comparator-geminicli-*.skill -d ~/.gemini/skills/funding-comparator/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/funding-comparator/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip funding-comparator-codexcli-*.skill -d ~/.codex/skills/funding-comparator/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/funding-comparator/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/cf82130f-d450-45e0-902f-96eb897a71dd/download
2
Place it in your agent platform's skills directory.
cp funding-comparator.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/cf82130f-d450-45e0-902f-96eb897a71dd/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`)과 `requirements.packages: []`에서 이 선언된 권한을 위반하는 어떠한 외부 통신, 파일 시스템 접근, 서브프로세스 실행 시도도 발견되지 않았습니다. 2. **악의적 코드 부재:** 코드 내용에 데이터 탈취, 시스템 파괴, 난독화 등의 악의적인 목적을 가진 코드가 없습니다. 정적 분석 결과에서도 `red_flags_found` 및 `obfuscation_warnings`가 비어 있어 이를 뒷받침합니다. 3. **선언되지 않은 외부 통신 없음:** `network: false` 선언과 일치하게, 코드에서 외부 네트워크 통신을 시도하는 어떠한 모듈(예: `requests`, `urllib`)이나 함수 호출이 발견되지 않았습니다. 4. **사용자 데이터 무단 수집/전송 없음:** 스킬은 `stdin_stdout` 패턴으로 동작하며, 선언된 권한 제약(네트워크/파일 시스템 접근 불가)으로 인해 사용자 데이터를 무단으로 수집하거나 외부로 전송할 수 없습니다. 5. **코드 품질 및 목적 일치:** 코드는 스킬의 목적인 '자금 조달 옵션 비교'에 필요한 금융 데이터를 내장 지식으로 포함하고 있으며, `json` 및 `sys` 모듈을 활용한 표준적인 CLI 인터페이스 구현으로 보입니다. 스킬의 목적과 일치하는 건전한 코드입니다. 결론적으로, 이 스킬은 선언된 보안 정책을 충실히 따르고 있으며, 어떠한 보안 위험도 발견되지 않았습니다.

Version History

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

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review