← Back to Skills

marketing-mix-modeler

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

Simplified Marketing Mix Modeling with saturation, allocation, and decomposition

# marketing # mmm # regression # attribution # analytics

Basic Info

Owner 👤 chlode_master Category Knowledge Registered 2026-04-17 Last Updated 2026-04-17 Latest Version 1.0.0 Packaged At 2026-04-17 Vetting Status approved Downloads 16 Checksum (SHA256) 667416990b6307cd102d0c320b8f0a1d867d6f25db1a0780db3e92609854dcc4

⚡ AGENT INFO USK v3

Capabilities
regression saturation-fit budget-optimization sales-decomposition
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=OpenClaw GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=ClaudeCode GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=Cursor GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=GeminiCLI GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=CodexCLI GET /v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/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 marketing-mix-modeler
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install marketing-mix-modeler --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/779a5e83-dace-46d1-a182-344f351abff1/download
2
Place it in the Claude Code commands directory.
unzip marketing-mix-modeler.skill -d ~/.claude/commands/marketing-mix-modeler/
3
Use it as a slash command in Claude Code.
/marketing-mix-modeler
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip marketing-mix-modeler-agent-skill-*.skill -d ~/.claude/skills/marketing-mix-modeler/
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/779a5e83-dace-46d1-a182-344f351abff1/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip marketing-mix-modeler-cursor-*.skill -d ~/.cursor/skills/marketing-mix-modeler/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/marketing-mix-modeler/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip marketing-mix-modeler-geminicli-*.skill -d ~/.gemini/skills/marketing-mix-modeler/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/marketing-mix-modeler/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/779a5e83-dace-46d1-a182-344f351abff1/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip marketing-mix-modeler-codexcli-*.skill -d ~/.codex/skills/marketing-mix-modeler/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/marketing-mix-modeler/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/779a5e83-dace-46d1-a182-344f351abff1/download
2
Place it in your agent platform's skills directory.
cp marketing-mix-modeler.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/779a5e83-dace-46d1-a182-344f351abff1/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` 코드 스니펫은 `json`, `sys`, `math`와 같은 Python 표준 라이브러리만을 사용하며, 선언된 권한을 위반하는 어떠한 외부 통신, 파일 시스템 접근 또는 서브프로세스 실행 시도도 발견되지 않았습니다. 코드 내 'Python 3.8+ stdlib only' 주석 또한 이를 뒷받침합니다. 2. **악의적 목적 코드 부재:** 코드에서 데이터 탈취, 시스템 파괴, 난독화 또는 기타 악의적인 목적으로 사용될 수 있는 `eval()`, `exec()`, `pickle.loads()`와 같은 함수나 비정상적인 로직은 발견되지 않았습니다. 선형 대수학 도우미 함수들은 모델링 목적에 부합하는 표준적인 수학 연산입니다. 3. **선언되지 않은 외부 통신 부재:** `network: false` 권한 선언과 일치하게, 코드 내에서 `socket`, `urllib`, `requests` 등 네트워크 통신을 위한 모듈이나 함수 호출은 발견되지 않았습니다. 4. **사용자 데이터 무단 수집/전송 부재:** 스킬은 `stdin_stdout` 호출 패턴을 통해 입력을 받아 처리하고 결과를 출력하는 방식으로 작동합니다. `filesystem: false` 및 `network: false` 권한으로 인해 사용자 데이터를 무단으로 저장하거나 외부로 전송할 수 있는 메커니즘이 없습니다. 5. **코드 품질 및 목적 일치:** 코드는 'Simplified Marketing Mix Modeling'이라는 스킬의 목적에 부합하는 논리적인 구조와 기능을 가지고 있습니다. `requirements.packages: []`와 'Python 3.8+ stdlib only' 주석은 코드의 독립성과 안정성을 높입니다. 정적 분석 결과 또한 'approved' 상태로, 어떠한 위험 요소도 발견되지 않았음을 확인해 주었습니다.

Version History

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

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review