← Back to Skills

meeting-action-extractor

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

Extract action items from meeting notes, classify by priority and owner, generate follow-up templates, and track completion status. No external packages required.

# meeting # action-items # follow-up # productivity # project-management # minutes

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) cd1c3f8460bfbcbbc33f595044a6958b5651ff6d516558afdfaaa45e733c52cc

⚡ AGENT INFO USK v3

Capabilities
action_extraction meeting_structuring followup_generation meeting_templates
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=OpenClaw GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=ClaudeCode GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=Cursor GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=GeminiCLI GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=CodexCLI GET /v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/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 meeting-action-extractor
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install meeting-action-extractor --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download
2
Place it in the Claude Code commands directory.
unzip meeting-action-extractor.skill -d ~/.claude/commands/meeting-action-extractor/
3
Use it as a slash command in Claude Code.
/meeting-action-extractor
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip meeting-action-extractor-cursor-*.skill -d ~/.cursor/skills/meeting-action-extractor/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/meeting-action-extractor/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip meeting-action-extractor-geminicli-*.skill -d ~/.gemini/skills/meeting-action-extractor/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/meeting-action-extractor/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip meeting-action-extractor-codexcli-*.skill -d ~/.codex/skills/meeting-action-extractor/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/meeting-action-extractor/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/download
2
Place it in your agent platform's skills directory.
cp meeting-action-extractor.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/4c833f67-a7ac-4d99-928b-bf5182f302cb/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과 실제 코드 일치 여부:** * 메타데이터에서 `permissions`는 `network: false`, `filesystem: false`, `subprocess: false`로 선언되어 있습니다. * 코드(`main.py`)는 `sys`, `json`, `re`와 같은 표준 라이브러리 모듈만을 사용하며, 네트워크 통신, 파일 시스템 접근(stdin/stdout 제외), 외부 프로세스 실행을 시도하는 코드가 전혀 발견되지 않았습니다. 이는 선언된 권한과 완벽하게 일치합니다. 2. **악의적 목적의 코드 여부:** * 코드에서 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적으로 해석될 수 있는 패턴이나 기능은 발견되지 않았습니다. 코드는 회의록에서 액션 아이템을 추출하고, 구조화하며, 후속 조치 템플릿을 생성하는 등 스킬의 설명과 일치하는 순수한 텍스트 처리 로직으로 구성되어 있습니다. 3. **선언되지 않은 외부 통신 여부:** * 코드에 `requests`, `urllib`, `socket` 등 네트워크 통신을 위한 모듈 임포트나 관련 함수 호출이 전혀 없습니다. 외부 통신은 이루어지지 않습니다. 4. **사용자 데이터 무단 수집/전송 여부:** * 스킬은 `stdin_stdout` 패턴에 따라 표준 입력으로 데이터를 받아 처리하고 표준 출력으로 결과를 반환합니다. 처리된 사용자 데이터가 외부로 전송되거나 영구적으로 저장되는 메커니즘은 코드 내에 존재하지 않습니다. 5. **코드 품질 및 스킬 목적 일치 여부:** * 코드는 정규 표현식과 미리 정의된 데이터 구조를 활용하여 회의록 분석 및 템플릿 생성이라는 스킬의 목적에 부합하는 기능을 구현하고 있습니다. * `requirements.packages: []`로 외부 패키지가 없음을 명시했으며, 실제 코드도 표준 라이브러리만을 사용하여 의존성이 없고 자가 완결성이 높습니다. * 정적 분석 결과 또한 '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