dingtalk-minutes
Pass
Audited by Gen Agent Trust Hub on Sep 10, 2026
Risk Level: SAFECOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill processes external, potentially untrusted content from meeting transcripts and AI summaries which could contain malicious instructions.
- Ingestion points: Meeting transcripts, summaries, and action items are retrieved via the
dws minutescommand suite, specifically+transcriptand+detailinSKILL.mdandreferences/minutes.md. - Boundary markers: The instructions mandate structured data retrieval using the
--format jsonflag and require explicit user confirmation for all write operations, as detailed in the '最小 DWS 执行契约' section ofSKILL.md. - Capability inventory: The skill has the ability to write to DingTalk (updating titles, sharing permissions), execute the
dwscommand-line tool, and perform local file writes (via+export-packand theminutes_recent_summary.pyscript). - Sanitization: The skill relies on the structured nature of the CLI output (JSON) and the agent's safety guardrails, as no explicit text sanitization is performed within the provided Python scripts.
- [COMMAND_EXECUTION]: The script
scripts/minutes_recent_summary.pyexecutes thedwsutility usingsubprocess.run. The implementation is safe as it avoidsshell=Trueand strictly defines the command list, starting with the trusteddwsbinary and appending internally generated subcommands.
Audit Metadata