技能详情(站内镜像,无评论)
作者:vx:17605205782 @52YuanChangXing
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 102 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:52yuanchangxing/meeting-to-kanban
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is internally consistent: it declares only python3, uses a small local script and a local YAML template, and its instructions match the files included.
目的
Name/description (convert meeting notes to a Kanban) align with the included artifacts: SKILL.md describes the workflow, a local script (scripts/tasks_to_kanban.py) formats JSON->CSV, and a board-columns.yaml resource provides column defaults. There are no unrelated binaries or credentials requested.
说明范围
SKILL.md stays on-task: it asks for meeting notes, columns, participants and describes extracting actions and producing CSV/markdown summaries. It explicitly references only the local script and resource file. It does not instruct reading system files, accessing environment variables, or contacting external endpoints.
安装机制
No install spec — instruction-only with a local, auditable Python script. Required runtime is python3 which is reasonable. No downloads, package installs, or extract/unpack steps are present.
证书
The skill requires no environment variables or credentials. The only runtime dependency is python3, which is proportionate to running the included script. There are no requests for unrelated secrets or config paths.
持久
always is false and the skill is user-invocable (normal). The skill does not request permanent presence or modify other skills or system-wide settings. The bundled script writes an output CSV to a user-specified path (default kanban.csv) — this is expected but will overwrite that file if the user chooses the same filename.
综合结论
This skill appears coherent and safe to inspect and run. Before using it: (1) review the included script (scripts/tasks_to_kanban.py) — it reads a user-supplied JSON file and writes a CSV, so ensure you pass the intended input path and an output path that won't overwrite important files; (2) provide only the meeting data you intend to share — the skill has no declared networking but your agent or session could still be configured to send data …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「meeting-to-kanban」。简介:Convert meeting notes or transcripts into a clean Kanban board with owners, due…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/52yuanchangxing/meeting-to-kanban/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: meeting-to-kanban
description: Convert meeting notes or transcripts into a clean Kanban board with owners,
due dates, blockers, and next actions.
version: 1.1.0
metadata:
openclaw:
requires:
bins:
- python3
emoji: 🧰
---
# Meeting to Kanban
## Purpose
Convert meeting notes or transcripts into a clean Kanban board with owners, due dates, blockers, and next actions.
## Trigger phrases
- 会议纪要转任务
- meeting notes to kanban
- 把会议变成看板
- action items from transcript
- 给我做项目任务板
## Ask for these inputs
- meeting notes/transcript
- board columns
- project context
- time horizon
- participants list if available
## Workflow
1. Extract decisions, action items, risks, and follow-ups.
2. Map actions into board columns such as Backlog, Next, Doing, Waiting, Done.
3. Assign owners and due dates when explicit; otherwise mark as unresolved.
4. Generate a CSV or Markdown board using the bundled columns schema.
5. Return a short manager summary and unresolved questions.
## Output contract
- kanban CSV
- manager summary
- owners and due dates table
- open questions list
## Files in this skill
- Script: `{baseDir}/scripts/tasks_to_kanban.py`
- Resource: `{baseDir}/resources/board-columns.yaml`
## Operating rules
- Be concrete and action-oriented.
- Prefer preview / draft / simulation mode before destructive changes.
- If information is missing, ask only for the minimum needed to proceed.
- Never fabricate metrics, legal certainty, receipts, credentials, or evidence.
- Keep assumptions explicit.
## Suggested prompts
- 会议纪要转任务
- meeting notes to kanban
- 把会议变成看板
## Use of script and resources
Use the bundled script when it helps the user produce a structured file, manifest, CSV, or first-pass draft.
Use the resource file as the default schema, checklist, or preset when the user does not provide one.
## Boundaries
- This skill supports planning, structuring, and first-pass artifacts.
- It should not claim that files were modified, messages were sent, or legal/financial decisions were finalized unless the user actually performed those actions.
## Compatibility notes
- Directory-based AgentSkills/OpenClaw skill.
- Runtime dependency declared through `metadata.openclaw.requires`.
- Helper script is local and auditable: `scripts/tasks_to_kanban.py`.
- Bundled resource is local and referenced by the instructions: `resources/board-columns.yaml`.