Meeting Assistant
v1.0.0AI meeting assistant for agenda generation, minute taking, and action item tracking using Manager-Worker pattern.
MIT-0
Security Scan
OpenClaw
Benign
medium confidencePurpose & Capability
Name, description, and SKILL.md are consistent: features and code examples match a meeting assistant. The skill does not request unrelated binaries, env vars, or config paths.
Instruction Scope
Runtime instructions are high-level and stay within the meeting-assistant scope (agenda, minutes, action items). They mention 'real-time transcription support' but do not specify how audio or transcripts are captured or where data is sent — this is vague but not directly contradictory. The SKILL.md references a 'clawhub install' command even though no install spec is provided in the package.
Install Mechanism
There is no install specification and no code files beyond package.json, so nothing will be written or executed by an automated installer. The documentation's install command is informational only and not backed by an install spec in the registry.
Credentials
The skill requests no environment variables, credentials, or config paths — proportional to an instruction-only assistant. No unexpected secrets are required.
Persistence & Privilege
always is false and model invocation is allowed (platform default). The skill does not request persistent system-level privileges or modifications to other skills.
Assessment
This skill appears coherent and low-privilege, but take these precautions before installing or using it with real data: 1) Ask the publisher for the source repository or homepage — the package has no upstream URL and the author field is generic. 2) Clarify how 'real-time transcription' works: which service captures audio, where transcripts are stored, and whether recordings leave your environment. 3) Don't provide secrets or sensitive transcripts until you confirm the storage/processing location and privacy policy. 4) Because there's no install spec, verify how 'clawhub install meeting-assistant' is expected to behave in your environment (it may be just a doc string). 5) Run initial tests in a sandbox or with non-sensitive meetings to observe behavior. If the publisher cannot answer integration/storage questions or provide source code, treat the skill as untrusted for private data.Like a lobster shell, security has layers — review code before you run it.
latest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Meeting Assistant
AI-powered meeting assistant that helps you organize, conduct, and follow up on meetings efficiently.
Features
📋 Agenda Generation
- Automatic agenda creation from meeting topic
- Time allocation for each item
- Participant preparation checklist
📝 Minute Taking
- Real-time transcription support
- Key point extraction
- Decision recording
✅ Action Item Tracking
- Extract action items from discussion
- Assign owners and deadlines
- Follow-up reminders
Usage
const assistant = new MeetingAssistant();
// 创建会议议程
const agenda = await assistant.createAgenda({
topic: '产品评审会议',
duration: 60,
participants: 5,
goals: ['评审新功能', '确定上线时间']
});
// 生成会议纪要
const minutes = await assistant.generateMinutes({
transcript: meetingTranscript,
keyDecisions: ['决定上线时间'],
actionItems: ['张三负责测试']
});
Installation
clawhub install meeting-assistant
License
MIT
Version
1.0.0
Created
2026-04-02
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
