← Back to Skills

priority-matrix

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

Prioritize features and tasks using RICE, ICE, and Impact-Effort frameworks. Generate 2x2 matrix classifications, compare scoring models, and get actionable priority rankings. No external packages required.

# prioritization # rice # ice # impact-effort # product-management # decision-making # framework

Basic Info

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

⚡ AGENT INFO USK v3

Capabilities
rice_scoring ice_scoring impact_effort_matrix framework_comparison
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=OpenClaw GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=ClaudeCode GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=Cursor GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=GeminiCLI GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=CodexCLI GET /v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/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 priority-matrix
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install priority-matrix --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download
2
Place it in the Claude Code commands directory.
unzip priority-matrix.skill -d ~/.claude/commands/priority-matrix/
3
Use it as a slash command in Claude Code.
/priority-matrix
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip priority-matrix-cursor-*.skill -d ~/.cursor/skills/priority-matrix/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/priority-matrix/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip priority-matrix-geminicli-*.skill -d ~/.gemini/skills/priority-matrix/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/priority-matrix/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip priority-matrix-codexcli-*.skill -d ~/.codex/skills/priority-matrix/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/priority-matrix/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/download
2
Place it in your agent platform's skills directory.
cp priority-matrix.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/950ddd1d-f1de-4d29-b272-3e8cfa1a5606/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. **선언된 permissions(network/filesystem/subprocess)과 실제 코드가 일치하는가?** * 메타데이터에서 `network: false`, `filesystem: false`, `subprocess: false`로 명확히 선언되어 있습니다. 코드(`main.py`)는 `sys`와 `json` 모듈만을 사용하며, 이는 표준 입출력 및 데이터 처리를 위한 것으로, 네트워크 통신, 파일 시스템 접근, 서브프로세스 실행과 관련된 어떠한 기능도 포함하고 있지 않습니다. 선언된 권한과 실제 코드가 완벽하게 일치합니다. 2. **악의적 목적의 코드가 있는가? (데이터 탈취, 시스템 파괴, 난독화 등)** * 제공된 코드 스니펫은 RICE, ICE, Impact-Effort 프레임워크에 따른 우선순위 계산 및 분류 로직만을 포함하고 있습니다. 데이터 탈취, 시스템 파괴, 또는 기타 악의적인 목적을 가진 코드는 발견되지 않았습니다. 코드 가독성이 높고 난독화된 부분도 없습니다. 3. **선언되지 않은 외부 통신이 있는가?** * 코드는 `sys`와 `json` 외에 외부 통신을 가능하게 하는 어떠한 라이브러리(예: `requests`, `urllib`, `socket` 등)도 임포트하거나 사용하지 않습니다. 선언되지 않은 외부 통신은 없습니다. 4. **사용자 데이터를 무단으로 수집하거나 전송하는가?** * 스킬은 `stdin`을 통해 입력을 받아 내부적으로 처리한 후, 결과를 `stdout`으로 출력하는 방식으로 동작합니다. 사용자 데이터를 외부로 저장하거나 전송하는 로직은 전혀 포함되어 있지 않습니다. 5. **코드 품질이 스킬의 목적과 일치하는가?** * 코드는 스킬의 설명(RICE, ICE, Impact-Effort 프레임워크를 사용한 우선순위 지정)과 일치하는 기능을 명확하게 구현하고 있습니다. 입력 유효성 검사(예: `items` 배열 필수 여부) 및 값 범위 제한(`max`, `min`) 로직이 포함되어 있어 안정적인 동작을 기대할 수 있습니다. 코드의 일부(`op_matrix` 함수)가 생략되었으나, 현재까지 제공된 부분에서는 스킬의 목적에 부합하는 높은 품질을 보여줍니다. 정적 분석 결과 또한 'approved' 상태이며, 어떠한 위험 요소나 난독화 경고도 발견되지 않았습니다. 전반적으로 이 스킬은 안전하며, 선언된 기능만을 수행하는 것으로 판단됩니다.

Version History

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

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review