Install
openclaw skills install @huaweiclouddev/huawei-cloud-vod-collectorInvoke this skill to capture poor experiences and distill them into high-value requirements (Voice of Developer). Use when user encounters any Huawei Cloud related issues, like user expresses dissatisfaction, encounters errors, or wants to report issues/suggestions.Triggers include: "体验差","反馈问题","反馈建议","这个有bug","拒绝了请求","报告问题","反馈体验","report a problem","report a suggestion","bug report","poor experience","voice of developer"
openclaw skills install @huaweiclouddev/huawei-cloud-vod-collectorScript execution: All scripts are located in
<SKILL_DIR>/scripts/. You must useskill action=execto execute them. Do not run them directly in a shell.<SKILL_DIR>= directory containing this SKILL.md..vod/is relative to CWD (project working directory).
Install required Python packages before running any scripts:
pip install -r <SKILL_DIR>/requirements.txt
Triggered by hooks (tool errors, user rejection, proactive reports). Generates raw feedback.
python <SKILL_DIR>/scripts/md_io.py write-feedback --output .vod/feedbacks/ (see --help for all params)write-feedback. To manually sanitize an existing file: python <SKILL_DIR>/scripts/vod_sanitize.py file --path <file>session_id + command + error_type within capture.dedup_window_sec → increment recurrence_count instead of writing a new file.Enrich feedback with context using LLM, then write all fields directly into the feedback file.
Each field maps to a specific section in the markdown file:
error_stack — Extract traceback/exit code from error context → ## Error Information → error_stackuser_intent — What the user wanted to do (e.g. "create OBS bucket"), NOT how → ## Context → user_intentscenario — Reconstruct what the user was doing → ## User Report → scenarioexpected_behavior — What the user expected. From dialog if explicit, otherwise infer from error → ## User Report → expected_behaviorproduct_name — Priority: annotation > agent_action > error_message → Title prefix 【Product】environment — Platform, OS, session ID, Python version → ## Context → environmentdialog_context — 3-5 key turns around the problem point, preserve original language → ## Context → dialog_contextUse write-feedback again to update fields, or edit the markdown file directly.
⚠️
repo_urlcomes only fromassets/config.yaml.template→delivery.channels.gitcode.repo_url. Never usegit remote, never ask the user.
Single delivery — submit one feedback as a GitCode Issue:
python <SKILL_DIR>/scripts/vod_deliver.py deliver \
--feedback-id <id> \
--feedbacks-dir .vod/feedbacks
Batch notification — scan undelivered feedbacks and submit as a single merged issue:
python <SKILL_DIR>/scripts/vod_deliver.py notify \
--feedbacks-dir .vod/feedbacks
Update status — mark a feedback as delivered (or other status):
python <SKILL_DIR>/scripts/vod_deliver.py update-status \
--feedback-id <id> --status delivered --feedbacks-dir .vod/feedbacks
Auto-login — when deliver or notify returns "need_login": true, perform the following:
CRITICAL: Before installation, MUST tell the user:
Check & install: Execute bash <SKILL_DIR>/scripts/vod_install.sh (Linux/macOS) or powershell <SKILL_DIR>/scripts/vod_install.ps1 (Windows).
Start server: python <SKILL_DIR>/scripts/vod_deliver.py server-start → get pid from JSON output
Initiate QR login: curl -s -X POST http://localhost:8080/login/start → get login_url, qr_code, session_id from JSON
Show QR to user: Display the login_url and ASCII qr_code. Say: "🔐 First-time login requires AtomGit authorization. Scan the QR code or open the URL in your browser."
Wait for authorization: python <SKILL_DIR>/scripts/vod_deliver.py login-wait --session-id <session_id> — blocks until scanned (up to 60s). Do NOT ask the user whether they scanned; just wait.
On SCAN_SUCCESS, proceed to step 7.
CRITICAL: After successful authorization, MUST output the Security Notice:
~/.atomcode/auth.toml (owner-readable only, mode 0600). Anyone with file access can impersonate you — do not share this file.Stop server: python <SKILL_DIR>/scripts/vod_deliver.py server-stop --pid <pid>
Re-run the original deliver or notify command.
.vod/ or other records.storage.max_feedbacks_per_session (default 5). Exceeded → inform user.open → promoted → resolved or open → discarded..vod/ created on first use. Never overwritten.<CWD>/.vod/feedbacks/VOD-YYYYMMDD-NNNN.md| Parameter | Description |
|---|---|
--atomgit-home <path> | AtomGit-GO config dir (default: ~/.atomcode or $ATOMCODE_HOME) |
--feedback-id <id> | Feedback ID to deliver/update |
--feedbacks-dir <path> | Path to .vod/feedbacks/ |
~/.atomcode/auth.toml (mode 0600)--atomgit-home <path>"need_login": true → follow Phase 3.1 auto-login~/.atomcode/auth.toml