Scan Report
20 /100
douyin-comment-auto-reply
Douyin comment operations workflow for your own account videos. Use when the user wants to collect, classify, draft, review, or semi-automate replies to comments under their own Douyin videos.
Legitimate Douyin comment management tool with minor documentation gaps regarding shell execution capability.
Safe to install
Add explicit shell:WRITE declaration to SKILL.md if browser_reply_runner.py subprocess usage is intentional. Otherwise, consider using a non-shell subprocess method for browser automation.
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Medium | Undeclared shell execution capability | scripts/browser_reply_runner.py:18 |
| Medium | Undeclared network access | scripts/browser_reply_runner.py:43 |
| Low | Documentation gap for capability mapping | SKILL.md:155 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ,WRITE | READ,WRITE | ✓ Aligned | SKILL.md: Declares Read/Write; batch_comment_drafts.py: CSV read, JSON write; br… |
| Shell | NONE | WRITE | ✗ Violation | browser_reply_runner.py:18 - subprocess.run(cmd, shell=True, check=True) |
| Network | NONE | READ | ✗ Violation | browser_reply_runner.py:43 - opens external URL via browser command |
| Environment | NONE | NONE | — | No os.environ access detected |
| Browser | NONE | WRITE | ✗ Violation | browser_reply_runner.py: Uses npx agent-browser for fill/click operations |
1 findings
Medium External URL 外部 URL
https://creator.douyin.com/creator-micro/content/manage SKILL.md:186 File Tree
11 files · 24.3 KB · 751 lines Markdown 5f · 498L
Python 2f · 171L
JSON 3f · 77L
CSV 1f · 5L
├─
▾
references
│ ├─
automation-roadmap.md
Markdown
│ ├─
douyin-lead-gen-template.md
Markdown
│ └─
playbook.md
Markdown
├─
▾
scripts
│ ├─
batch_comment_drafts.py
Python
│ ├─
browser_reply_runner.py
Python
│ ├─
comment_batch_template.csv
CSV
│ ├─
comment_batch_template.drafts.json
JSON
│ ├─
comment_batch_template.drafts.sent-log.json
JSON
│ ├─
reply_drafts_example.json
JSON
│ └─
reply_execution_plan.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ No credential harvesting or sensitive data access
✓ No data exfiltration to external servers
✓ No base64 encoding or obfuscation patterns
✓ No remote script execution (curl|bash)
✓ Uses only standard Python libraries (csv, json, re, sys, pathlib, subprocess, argparse, shlex, time)
✓ Legitimate business use case for managing own Douyin account comments
✓ Includes --dry-run safety flag for browser automation
✓ Browser targets legitimate Douyin creator platform URL
✓ Includes sent-log for audit trail
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)