{"slug":"hyqibot-dingtalk-channel-connect","name":"dingtalk_channel_connect","description":"使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。","long_description":"---\nname: dingtalk_channel_connect\ndescription: \"使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。\"\nmetadata:\n  builtin_skill_version: \"1.1\"\n  copaw:\n    emoji: \"🤖\"\n    requires: {}\n---\n\n# 钉钉 Channel 自动连接（可视浏览器）\n\n此 skill 用于通过可视浏览器自动化完成钉钉应用创建与 CoPaw channel 绑定。\n\n## 强制规则\n\n1. 必须使用可视浏览器模式启动：\n\n```json\n{\"action\": \"start\", \"headed\": true}\n```\n\n2. 遇到登录关卡必须暂停：\n   - 若页面出现登录界面（如 `登录`、扫码登录、手机号/密码登录），立即停止自动操作。\n   - 明确提示用户先手动登录，再等待用户回复“登录好了/继续”。\n   - 未收到用户确认前，不得继续执行后续步骤。\n\n3. 任何应用配置变更都必须新建版本并发布后才生效：\n   - 配置完机器人相关信息后**一定要发布机器人**\n   - 不论是新建应用还是修改应用信息（名称、描述、图标、机器人配置等），最终都**必须执行“创建新版本 + 发布”**。\n   - 若未完成发布，不得宣称配置已生效。\n\n## 执行前显著确认（必须先做）\n\n在开始自动化点击前，先向用户发起一次“配置确认”，明确告知可自定义项、图片规范、默认值。建议使用如下结构化确认：\n\n1. 让用户可自定义以下字段：\n   - 应用名称\n   - 应用描述\n   - 机器人图标图片链接或本地路径\n   - 机器人消息预览图链接或本地路径\n\n2. 明确告知图片规范（显著提示）：\n   - 机器人图标：仅支持 JPG/PNG，`240*240px` 以上，`1:1`，`2MB` 以内，无圆角。\n   - 机器人消息预览图：格式 `png/jpeg/jpg`，不超过 `2MB`。\n\n3. 明确告知默认值（用户不指定时自动采用）：\n   - 应用名称：`CoPaw`\n   - 应用描述：`Your personal assistant`\n   - 机器人图标：`https://img.alicdn.com/imgextra/i4/O1CN01M0iyHF1FVNzM9qjC0_!!6000000000492-2-tps-254-254.png`\n   - 机器人消息预览图：`https://img.alicdn.com/imgextra/i4/O1CN01M0iyHF1FVNzM9qjC0_!!6000000000492-2-tps-254-254.png`\n\n4. 若用户未给任何自定义值，必须先明确回复：\n   - “将全部采用默认设置（CoPaw / Your personal assistant / 默认图片）后继续执行。”\n\n## 图片上传策略（link/path 都支持）\n\n1. 若用户提供本地路径，直接用于上传。\n2. 若用户提供图片 link，先下载到本地临时文件，再执行上传。\n3. 上传动作顺序必须是：\n   - 先点击页面上传入口（触发 chooser）\n   - 再调用 `file_upload` 传入本地路径数组（`paths_json`）\n4. 若上传报错且判断为图片规格不符合（尺寸、比例、大小、格式）：\n   - 立即暂停自动化\n   - 明确让用户手动上传符合规范的图片\n   - 用户确认“已上传/继续”后，从当前步骤继续后续流程\n\n### 上传动作实战经验\n\n1. `file_upload` 的 `paths_json` 必须是“JSON 字符串数组”，注意转义：\n\n```json\n{\n  \"action\": \"file_upload\",\n  \"paths_json\": \"[\\\"xxx.png\\\"]\",\n  \"frame_selector\": \"iframe[src*=\\\"/fe/app?isHideOuterFrame=true\\\"]\"\n}\n```\n\n2. 若页面在 iframe 内，建议优先带上 `frame_selector`，否则可能出现找不到上传控件或 chooser 未触发。\n\n3. 上传前必须先点击上传入口；若直接 `file_upload` 会报：\n   - `No chooser. Click upload then file_upload.`\n\n4. 机器人图标区域的常见结构特征可用于定位（示例）：\n   - `text: \"* 机器人图标\"`\n   - `button: \"使用应用图标\"`\n   - `button: \"avatar\"`（通常内部有 `img \"avatar\"`）\n\n5. 当 snapshot 中同时出现“使用应用图标”和“avatar”时，优先点击 `avatar` 按钮触发上传，再执行 `file_upload`。\n\n## 自动化流程\n\n### 步骤 1：打开钉钉开发者后台\n\n1. 可视模式启动浏览器（`headed: true`）\n2. 打开 `https://open-dev.dingtalk.com/`\n3. 调用 `snapshot` 判断是否需要登录\n\n若需要登录，使用如下话术暂停：\n\n> 检测到需要登录钉钉开发者后台。我已暂停自动操作，请先在弹出的浏览器中完成登录。完成后回复“继续”，我再从当前页面接着执行。\n\n### 步骤 2：创建企业内部应用\n\n用户确认登录后继续：\n\n1. 进入创建路径：\n   - 应用开发 -> 企业内部应用 -> 钉钉应用 -> 创建应用\n2. 填写应用信息（优先使用用户自定义，否则使用默认值）：\n   - 应用名称：默认 `CoPaw`\n   - 应用描述：默认 `Your personal assistant`\n3. 保存并创建应用\n\n若页面文案或结构与预期不一致，重新 `snapshot`，按可见文本语义重新定位元素。\n\n### 步骤 3：添加机器人能力并发布\n\n1. 点击**应用能力**中的**添加应用能力**，找到**机器人**并添加\n2. 将**机器人配置**右侧的switch按钮切换为打开\n3. 填写**机器人名称**，**机器人简介**和**机器人描述**\n4. 上传**机器人图标**（用户自定义或默认图）：\n   - 点击机器人图标下面的图片\n   - 默认图链接：`https://img.alicdn.com/imgextra/i4/O1CN01M0iyHF1FVNzM9qjC0_!!6000000000492-2-tps-254-254.png`\n   - 若为 link，先下载到本地再上传\n   - 若提示图片不合规，暂停并让用户手动上传合规图片后继续\n5. 上传**机器人消息预览图**（用户自定义或默认图）：\n   - 点击机器人消息预览图下面的图片\n   - 默认图链接：`https://img.alicdn.com/imgextra/i4/O1CN01M0iyHF1FVNzM9qjC0_!!6000000000492-2-tps-254-254.png`\n   - 若为 link，先下载到本地再上传\n   - 若提示图片不合规，暂停并让用户手动上传合规图片后继续\n6. 确认消息接收模式设置为 `Stream 模式`\n7. 选择**发布**，此时会有进一步弹出的确认页面，选择发布。注意：**一定要发布机器人**之后再进行下一步\n\n### 步骤 4：创建版本并发布\n\n1. 打开 `应用发布 -> 版本管理与发布`\n2. 创建新版本（每次配置变更后都要创建）\n3. 填写版本描述，应用可见范围选择全部员工\n4. 按页面提示完成发布，此时会有新的弹窗出现，选择确认发布\n5. 只有看到发布成功状态，才可继续执行后续步骤/给用户“已生效”结论\n\n### 步骤 5：获取凭证\n\n1. 打开 `基础信息 -> 凭证与基础信息`\n2. 告知用户`Client ID`（AppKey）和`Client Secret`（AppSecret）在该页面上。不主动进行修改，引导用户自行绑定\n\n## CoPaw 绑定方式\n\n拿到凭证后，引导用户选择以下任一方式：\n\n1. 控制台前端配置：\n   - CoPaw console 中进入 `控制 -> 频道 -> DingTalk`\n   - 填入 `Client ID` 与 `Client Secret`\n\n2. 配置文件方式：\n\n```json\n\"dingtalk\": {\n  \"enabled\": true,\n  \"bot_prefix\": \"[BOT]\",\n  \"client_id\": \"你的 Client ID\",\n  \"client_secret\": \"你的 Client Secret\"\n}\n```\n\n路径：`~/.copaw/config.json`，位于 `channels.dingtalk` 下。\n\n### 凭证交付要求（强制）\n\n1. agent 只负责引导用户进入凭证页、获取并展示 `Client ID` 与真实 `Client Secret`。\n2. agent 不主动改 `console` 配置、不主动改 `~/.copaw/config.json`。\n3. 必须提示用户按以下两种方式之一手动填写：\n   - 控制台前端：`控制 -> 频道 -> DingTalk`\n   - 配置文件：编辑 `~/.copaw/config.json` 的 `channels.dingtalk` 字段\n\n## Browser 工具调用模式\n\n默认按以下顺序执行：\n\n1. `start` with `headed: true`\n2. `open`\n3. `snapshot`\n4. `click` / `type` / `select_option` / `press_key` as needed\n5. frequent `snapshot` after page transitions\n6. `stop` when done\n\n## 稳定性与恢复策略\n\n- 优先使用最新 `snapshot` 的 `ref`；仅在必要时使用 `selector`。\n- 每次关键点击或跳转后，使用短等待（`wait_for`）并立即重新 `snapshot`。\n- 若中途会话失效或要求重新登录，必须再次暂停，待用户登录后从当前步骤继续。\n- 若因租户权限、管理员审批等阻塞自动化，明确说明卡点，并请用户手动完成该步骤后再续跑。","tagline":"使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。","category":"security","tags":["agent-skill"],"author":"hyqibot","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"recursive skill source sync","sourceDetail":"hyqibot/token-free-openclaw","creatorName":"hyqibot","creatorUrl":"https://github.com/hyqibot","sourceUrl":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":116,"forks":32,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":37.58},"quality":{"score":67,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"116","tone":"neutral"},{"label":"Freshness","value":"1d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"Apache-2.0","tone":"neutral"}],"warnings":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。"]},"trust":{"version":"trust-score-v5","score":59,"base_score":67,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["59/100 Trust Score v5","67/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"116 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":76,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"id":"install_safety","label":"Install command safety","score":68,"weight":0.1,"status":"info","detail":"credential-bearing install command, standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"secrets or environment access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"116 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"status":"info","label":"Install command safety","detail":"credential-bearing install command, standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"secrets or environment access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"116 GitHub stars","repoActivity":"116 stars, 32 forks","lastPushed":"1d since push","license":"Apache-2.0","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","installSafety":"credential-bearing install command, standard package or runtime install path","permissionSurface":"secrets or environment access, network or browser access","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v3","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["security","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","trust_score":59,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["security","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":59,"base_score":67,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["59/100 Trust Score v5","67/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"116 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":76,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"id":"install_safety","label":"Install command safety","score":68,"weight":0.1,"status":"info","detail":"credential-bearing install command, standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"secrets or environment access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"116 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"status":"info","label":"Install command safety","detail":"credential-bearing install command, standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"secrets or environment access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"116 GitHub stars","repoActivity":"116 stars, 32 forks","lastPushed":"1d since push","license":"Apache-2.0","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","installSafety":"credential-bearing install command, standard package or runtime install path","permissionSurface":"secrets or environment access, network or browser access","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v3","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["security","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","trust_score":59,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["security","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"116 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":76,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"id":"install_safety","label":"Install command safety","score":68,"weight":0.1,"status":"info","detail":"credential-bearing install command, standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"secrets or environment access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"116 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"116 stars, 32 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"},{"status":"info","label":"Install command safety","detail":"credential-bearing install command, standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"secrets or environment access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"],"evidence":{"stars":"116 GitHub stars","repoActivity":"116 stars, 32 forks","lastPushed":"1d since push","license":"Apache-2.0","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","installSafety":"credential-bearing install command, standard package or runtime install path","permissionSurface":"secrets or environment access, network or browser access","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["security","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":47,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","summary":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_policy":"review","reasons":["High-risk permission hints: Secrets or environment access","47/100 agent safety score"]},"auto_install_allowed":false,"human_review_required":true,"blocked":false,"audit_risk":"needs_review","permission_hints":[{"id":"browser","label":"Browser automation","reason":"Skill may drive a browser or interact with web pages.","severity":"medium"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"}],"policy_warnings":["High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","auto_install_policy":"review","auto_install_allowed":false,"blocked":false,"human_review_required":true,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","reasons":["High-risk permission hints: Secrets or environment access","47/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"review","score":68,"risk_level":"medium","decision":{"recommendation":"manual_review","reason":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_allowed":false,"policy":"review","human_review_required":true},"blockers":[],"warnings":["Install command safety: credential-bearing install command, standard package or runtime install path","Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","Agent safety gate: Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","README/SKILL.md completeness: Public metadata needs stronger README/SKILL.md context","Permission surface: secrets or environment access, network or browser access","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate dingtalk_channel_connect before installing it in an agent workflow","security","Browser automation workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"]},{"id":"install_safety","label":"Install command safety","status":"warn","score":68,"required_for_auto_install":true,"detail":"credential-bearing install command, standard package or runtime install path","evidence":["npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect"]},{"id":"trust_score","label":"Trust score","status":"warn","score":67,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","116 GitHub stars","Apache-2.0"]},{"id":"audit_score","label":"Audit score","status":"warn","score":75,"required_for_auto_install":true,"detail":"Needs review","evidence":["Permission surface may require sandboxing"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":47,"required_for_auto_install":true,"detail":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","evidence":["Test manually in an isolated workspace and compare against safer alternatives.","High-risk permission hints: Secrets or environment access"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"warn","score":76,"required_for_auto_install":false,"detail":"Public metadata needs stronger README/SKILL.md context","evidence":["Usable metadata, review docs"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"Apache-2.0","evidence":["Apache-2.0"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"1d since push","evidence":["1d since push"]},{"id":"permission_surface","label":"Permission surface","status":"warn","score":60,"required_for_auto_install":true,"detail":"secrets or environment access, network or browser access","evidence":["Browser automation: medium","Network access: medium","Secrets or environment access: high"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect/evals","api":"/api/agent/evals?slug=hyqibot-dingtalk-channel-connect","text":"/api/agent/evals?slug=hyqibot-dingtalk-channel-connect&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"hyqibot-dingtalk-channel-connect","name":"dingtalk_channel_connect","description":"使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。","category":"security","url":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","github_repo":"hyqibot/token-free-openclaw"},"suited_tasks":["Browser automation workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate pages","Click and type safely","Check visual and DOM state","Inspect risky files","Prioritize findings"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","Browser agents","CLI"],"install":{"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install hyqibot-dingtalk-channel-connect"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"dingtalk_channel_connect\" agent skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"dingtalk_channel_connect\" as a Claude Code skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"dingtalk_channel_connect\" from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/hyqibot-dingtalk-channel-connect/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/hyqibot-dingtalk-channel-connect"},"trust":{"score":67,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"116 GitHub stars","repoActivity":"116 stars, 32 forks","lastPushed":"1d since push","license":"Apache-2.0","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","installSafety":"credential-bearing install command, standard package or runtime install path","permissionSurface":"secrets or environment access, network or browser access","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["security","agent-skill"],"known_risks":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":75,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":67,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"Testing and QA","maintenance":"1d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access"],"agent_contract":{"task_input":"Use dingtalk_channel_connect in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 67/100 Manual review","Audit: 75/100 Needs review","Safety: 47/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"hyqibot-dingtalk-channel-connect (dingtalk_channel_connect)","install_command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"hyqibot-dingtalk-channel-connect","task":"Use dingtalk_channel_connect in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect","api":"https://www.openagentskill.com/api/agent/skills/hyqibot-dingtalk-channel-connect","audit":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=hyqibot-dingtalk-channel-connect&task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/hyqibot-dingtalk-channel-connect/install","manifest":"https://www.openagentskill.com/api/registry/manifest/hyqibot-dingtalk-channel-connect"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"hyqibot-dingtalk-channel-connect","name":"dingtalk_channel_connect","description":"使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。","category":"security","url":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","github_repo":"hyqibot/token-free-openclaw"},"suited_tasks":["Browser automation workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate pages","Click and type safely","Check visual and DOM state","Inspect risky files","Prioritize findings"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","Browser agents","CLI"],"install":{"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install hyqibot-dingtalk-channel-connect"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"dingtalk_channel_connect\" agent skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"dingtalk_channel_connect\" as a Claude Code skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"dingtalk_channel_connect\" from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/hyqibot-dingtalk-channel-connect/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/hyqibot-dingtalk-channel-connect"},"trust":{"score":67,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"116 GitHub stars","repoActivity":"116 stars, 32 forks","lastPushed":"1d since push","license":"Apache-2.0","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","installSafety":"credential-bearing install command, standard package or runtime install path","permissionSurface":"secrets or environment access, network or browser access","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["security","agent-skill"],"known_risks":["SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":75,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":67,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"Testing and QA","maintenance":"1d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access"],"agent_contract":{"task_input":"Use dingtalk_channel_connect in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 67/100 Manual review","Audit: 75/100 Needs review","Safety: 47/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"hyqibot-dingtalk-channel-connect (dingtalk_channel_connect)","install_command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"hyqibot-dingtalk-channel-connect","task":"Use dingtalk_channel_connect in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect","api":"https://www.openagentskill.com/api/agent/skills/hyqibot-dingtalk-channel-connect","audit":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=hyqibot-dingtalk-channel-connect&task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20dingtalk_channel_connect%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/hyqibot-dingtalk-channel-connect/install","manifest":"https://www.openagentskill.com/api/registry/manifest/hyqibot-dingtalk-channel-connect"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"Testing and QA","description":"I need my agent to test a web app, reproduce bugs, and verify fixes.","useCases":[{"slug":"browser-automation","title":"Browser automation"},{"slug":"security-compliance","title":"Security and compliance"},{"slug":"local-desktop","title":"Local desktop"}]},"applicableAgents":["Claude Code","Browser agents","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":116,"starsLabel":"116","forks":32,"license":"Apache-2.0","qualityScore":67,"trustScore":67,"auditScore":75},"maintenance":{"status":"fresh","label":"1d since push","daysSincePush":1,"lastPushedAt":"2026-08-21T12:40:24+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Permission surface may require sandboxing","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access"]},"coverageTags":["Coding","Testing and QA","security","agent-skill"]},"audit":{"audit_score":75,"risk_level":"needs_review","risk_label":"Needs review","quality_score":67,"trust_score":67,"maintenance_score":100,"security_score":73,"install_score":92,"warnings":["Permission surface may require sandboxing","SKILL.md 未明确提及许可证信息，但仓库根目录已声明 Apache-2.0，建议在文档中补充以增强合规透明度。","图片上传策略中依赖 iframe 选择器，若页面结构变化可能导致失败，但已提供降级方案（暂停并让用户手动上传）。","Quality score needs review","Permission surface needs review: secrets or environment access, network or browser access","Stars/forks activity: 116 stars, 32 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, network or browser access"]},"quality_signals":{"model":"v2","star_score":14.48,"usage_score":0,"review_score":5.1,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code","Browser agents"],"use_cases":[{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"},{"slug":"security-compliance","title":"Security and compliance","url":"https://www.openagentskill.com/use-cases/security-compliance"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"web-scraping","title":"Web scraping","url":"https://www.openagentskill.com/use-cases/web-scraping"}],"stacks":[{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"},{"slug":"web-data-pipeline","title":"Web data pipeline","url":"https://www.openagentskill.com/collections/web-data-pipeline"},{"slug":"frontend-product-ui","title":"Frontend and UI","url":"https://www.openagentskill.com/collections/frontend-product-ui"}],"install":"npx skills add hyqibot/token-free-openclaw --skill dingtalk_channel_connect","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install hyqibot-dingtalk-channel-connect","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"dingtalk_channel_connect\" agent skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"dingtalk_channel_connect\" as a Claude Code skill from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"dingtalk_channel_connect\" from https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: 使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景；支持遇到登录页时暂停，等待用户登录后继续。 After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"hyqibot-dingtalk-channel-connect\",\"task\":\"Install dingtalk_channel_connect\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","github_repo":"hyqibot/token-free-openclaw","version":"1.0.0","license":"Apache-2.0","urls":{"web":"https://www.openagentskill.com/skills/hyqibot-dingtalk-channel-connect","repository":"https://github.com/hyqibot/token-free-openclaw/tree/main/copaw/agents/skills/dingtalk_channel","api":"/api/agent/skills/hyqibot-dingtalk-channel-connect","install_api":"/api/skills/hyqibot-dingtalk-channel-connect/install"},"meta":{"created_at":"2026-08-21T13:37:10.422803+00:00","updated_at":"2026-08-21T13:37:10.422803+00:00","agent_friendly":true}}