{"slug":"horacelubfa-en-zh-translation-polish","name":"en-zh-translation-polish","description":">-","long_description":"---\nname: en-zh-translation-polish\ndescription: >-\n  Translates English into idiomatic, translationese-free Chinese, optionally as\n  an English-Chinese bilingual version pairing each source paragraph with its\n  translation. Use when the user wants to 翻译成中文 / 英译汉, 去翻译腔/润色译文\n  (remove translationese, polish a draft), or produce a 中英对照/英中对照 bilingual\n  rendering. Not for Chinese-to-English, pure Chinese writing polish, or\n  single-word lookups.\nlicense: MIT\nversion: 1.0.0\ntags: [translation, chinese, english-to-chinese, 英译汉, 润色, 中英对照, localization]\nallowed-tools: Read Write Edit Bash\n---\n\n# 英译汉翻译润色 (English→Chinese Translate & Polish)\n\n把英文译成**地道中文**并产出**英中对照**译文。核心信条（叶子南）：英译汉最致命的错误是把英语的“形合”结构迁移进汉语造成翻译腔；好译文 = **以读者为中心、按文本类型调节归化尺度、发挥汉语意合优势、兼顾音韵节奏**。\n\n## 交付物\n\n默认产出**一个**英中对照 Markdown 文件；用户要“全中文版”时再脚本派生。\n\n1. **`<名称> 翻译(中英对照).md`** — 唯一真源。每段**英文原文作为 blockquote (`> `)**，紧跟其下是中文译文。\n2. （按需）**`<名称> 翻译(全中文).md`** — 脱离对照文件**用脚本机械派生**（删掉 `> ` 行），不要重打中文。\n   ```bash\n   python3 - \"<名称> 翻译(中英对照).md\" \"<名称> 翻译(全中文).md\" <<'PY'\n   import sys, re\n   src, dst = sys.argv[1], sys.argv[2]\n   lines = open(src, encoding='utf-8').read().split('\\n')\n   kept = [ln for ln in lines if not ln.lstrip().startswith('>')]\n   open(dst,'w',encoding='utf-8').write(re.sub(r'\\n{3,}','\\n\\n','\\n'.join(kept)).strip()+'\\n')\n   PY\n   ```\n   > 顺序要求：**先跑阶段 6 的标点归一，再派生全中文版**——派生脚本原样继承标点，不会再纠正。\n\n若输入只是聊天里的一小段（几句话），直接在回复里给对照即可，不必落盘；成篇文章或用户指明保存才写文件。命名沿用源文件名，无工具前缀（除非用户要）。目标文件已存在则更新而非新建。\n\n## 工作流（严格按序；每段译文都要走完润色，不是初译就交）\n\n### 阶段 0 — 文本分析：定归化档位 ★必做第一步\n先回答：**这是硬文本还是软文本？属纽马克哪一类？自由度大致几分(1–10)？** 详见 `reference/text-analysis-and-qa.md` 小节 A。\n\n- **偏硬（自由度 1–3）**：政治/法律/经贸/科技/合同/说明书。→ 贴原文逻辑，选词精准，**准确 > 流畅**，少介入，术语用固定译法。某些“西化”是为精确付的合理代价。\n- **偏中 (4–6)**：教科书/新闻/一般论述。→ 平衡，默认交际翻译。\n- **偏软 (7–9)**：文学/散文/评论/讲演/广告/宣传/营销。→ 大胆发挥意合与汉语之美，可调结构、可换形象，**流畅/效果优先**。\n- 别忘**文本外因素**：翻译目的、读者是谁。档位一句话写进给用户的说明里。\n\n### 阶段 1 — 理解 → 脱离语言外壳\n读懂原文后，**抛开英文词句**，在脑中形成意义/图像，再用中文重构（不要在词面上挪移）。遇到结构纠缠的短语用“解包袱法”理清隐含语义关系（见 `reference/techniques.md`）。\n\n### 阶段 2 — 按档位初译\n以**意合优先**起译：能不用连接词就不用，长句拆成流水短句，被动转主动，定语别堆在名词前。\n\n### 阶段 3 — 润色诊断（核心）逐段过三张表\n1. **翻译腔病症** — 对照 `reference/translationese-symptoms.md` 逐条排查并修：形合迁移/连接词冗余、长前置定语、“的的不休”、被动滥用、抽象名词作主语、习语硬译、语义关系隐含不清。\n2. **技巧库** — 用 `reference/techniques.md` 的手段修：词性转换、增/减词、分句/合句、语序移位、定语从句转状语/独立句、正反译、被动转化。\n3. **隐喻决策** — 基本/图像图式隐喻（旅程、大小、冷热…）可直译；文化专属隐喻糅合或舍弃；直译≠应直译，看档位（`reference/text-analysis-and-qa.md` 小节 B）。\n\n### 阶段 4 — 音韵节奏打磨\n读出声。利用双音节/四字结构、“偶字易适奇字难平”、对偶排比；并列词组尽量配偶字（“飞机小，便宜”→“体积不大，造价便宜”）。**但软文本才放开；硬文本点到为止。**\n\n### 阶段 5 — 准确性质检\n对照 `reference/text-analysis-and-qa.md` 小节 C 逐项核：擅自改结构/移焦点、漏译情态虚词、擅自添词、搭配、指代、逻辑关系、专名术语数字、语域对齐。\n> 红线：放松准确性 ≠ 理解错误。理解错误没有原谅的余地。\n\n### 阶段 6 — 中文标点规范化 ★（机械执行，落盘后必跑）\n中文译文里的标点必须是中文全角，不能残留英文半角（译者最易忽略，逐字凭眼力一定会漏）。规则：\n- `, : ; ? !` → `，：；？！`；句末用 `。`；并列用顿号 `、`；破折号 `——`；省略号 `……`。\n- 圆括号 `( )` → 全角 `（ ）`：**仅当紧邻中文字符时才转**（包裹中文内容、含人名/术语原文注，如 \"道德受体地位(moral patienthood)\"）；纯英文括注（如电影演职 `(Harold D. Schuster, 1937)`）保持半角。\n- 双引号统一为中文全角 `\" \"`（内层 `' '`）；直角引号 `「」`、`『』` 一并归一为 `\" \"` / `' '`。\n\n**以下一律保持半角，绝不转：** ① 英文原文 blockquote（`> ` 行）整段不动；② Markdown 链接 `[文字](url)` 的括号与 URL；③ 中文行内嵌入的整句/词组英文，其内部标点——如被引用的英文原句 `…one nation under God, indivisible, …`；④ 数字/缩写/版本号里的点：`4.3`、`Word 2010`、`A.I.`、`L. M.`；⑤ 代码/公式块。\n\n判定原理：**逗号类与圆括号都只在紧邻中文字符（前或后）时才转**；有方向的引号（“”「」‘’『』）按方向直接映射，只有歧义的直双引号 `\"` 才靠交替判定开闭。落盘后跑下面脚本机械归一并自检（`残留` 必须为 0）：\n\n```bash\npython3 - \"<名称> 翻译(中英对照).md\" <<'PY'\nimport re, sys\nsrc = sys.argv[1]\nlines = open(src, encoding='utf-8').read().split('\\n')\nCJK_EXTRA = set('“”‘’·—…《》〈〉「」『』【】、。，！？；：（）')\ndef is_cjk(c):\n    if not c: return False\n    o = ord(c)\n    return (0x3400<=o<=0x9fff) or (0x3000<=o<=0x303f) or (0xff00<=o<=0xffef) or (c in CJK_EXTRA)\nSMAP = {',':'，', ';':'；', ':':'：', '?':'？', '!':'！', '(':'（', ')':'）'}\nOPEN2 = '“「'; CLOSE2 = '”」'; OPEN1 = '‘『'; CLOSE1 = '’』'\nLINK = re.compile(r'\\[[^\\]]*\\]\\([^)]*\\)')\ndef fix(line):\n    store=[]\n    line = LINK.sub(lambda m: store.append(m.group(0)) or '\\x00%d\\x00'%(len(store)-1), line)\n    out=[]; sop=True                     # 有方向引号直接映射; 仅歧义直双引号 \" 靠交替定开闭\n    for c in line:\n        if c == '\"': out.append('“' if sop else '”'); sop = not sop\n        elif c in OPEN2: out.append('“')\n        elif c in CLOSE2: out.append('”')\n        elif c in OPEN1: out.append('‘')\n        elif c in CLOSE1: out.append('’')\n        else: out.append(c)\n    ch=out; n=len(ch)\n    for i,c in enumerate(ch):            # 逗号类 + 圆括号: 紧邻中文才转全角\n        if c in SMAP and (is_cjk(ch[i-1] if i else '') or is_cjk(ch[i+1] if i+1<n else '')):\n            ch[i]=SMAP[c]\n    line=''.join(ch)\n    return re.sub('\\x00(\\\\d+)\\x00', lambda m: store[int(m.group(1))], line)\ndef skip(ln):\n    s=ln.strip(); return s=='' or ln.lstrip().startswith('>') or s=='---'\nres=[ln if skip(ln) else fix(ln) for ln in lines]\nopen(src,'w',encoding='utf-8').write('\\n'.join(res))\ndef residual(ln):\n    t = LINK.sub('', ln)                # 排除 markdown 链接内的括号/标点, 免误报\n    return sum(1 for m in re.finditer(r'[,;:?!()]', t)\n               if is_cjk(t[m.start()-1] if m.start() else '') or is_cjk(t[m.start()+1] if m.start()+1<len(t) else ''))\nbad=sum(residual(ln) for ln in res if not skip(ln))\nprint('残留:', bad)\nPY\n```\n聊天里直接给的小段对照（未落盘）同样要手动套用上述规则。\n\n### 阶段 7 — 输出英中对照\n按下方格式逐段配对；成篇则写文件；给用户附一句“档位判定 + 主要润色取舍”。\n\n## 英中对照输出格式\n\n**按段落配对**：英文原段作为 blockquote，紧接中文译文。\n\n```markdown\n> It is a truth universally acknowledged that a single man in possession of a\n> good fortune must be in want of a wife.\n\n凡是有钱的单身汉，总想娶位太太，这是一条举世公认的真理。\n```\n\n规则：\n- 中文译文用中文全角标点；半角标点只留给英文原文、链接、行内英文词句、数字缩写、代码（详见阶段 6，落盘后用脚本自检）。\n- 只清理提取噪声（接回断行连字符、删页眉页脚页码），**不要**从中文反推英文。\n- 标题作中文 `##`/`###`，不加 blockquote；可选地把英文标题作为上一行 blockquote。\n- 不该被脚本删掉、需保留进全中文版的东西（图片、表格、标题块）**不要** blockquote。\n- 公式/代码用共享代码块，不按语言重复。\n\n## 润色边界 ★（防止方法论被用过头）\n\n叶子南本人警告的两个反模式，务必守住：\n- **不要过度归化**：别为了“地道”抹掉原文该保留的风格、术语精度、文化标记。西化是一个**连续体**，可接受度随文本价值变化——硬文本/永久价值文本能容纳更多异化（见 `reference/translationese-symptoms.md` 第七节）。\n- **不要堆砌四字成语**：音韵节奏是手段不是目的，为文字而文字会显得卖弄、失真。\n- 拿不准“该改到多狠”时，回到阶段 0 的档位：**自由度越低，越克制**。\n\n## 示例\n\n输入（英文）：\n\n```\nThe confidence that the West would remain a dominant force in the 21st century is giving way to a sense of foreboding.\n```\n\n输出（英中对照；阶段 0 判定：偏硬／政论，自由度≈3，准确优先、克制音韵）：\n\n> The confidence that the West would remain a dominant force in the 21st century is giving way to a sense of foreboding.\n\n西方曾笃信自己将在 21 世纪稳居主导地位，如今这份自信，正让位于一种隐隐的不祥之感。\n\n## 致谢与许可\n\n本 skill 的代码、提示词与组织方式以 **MIT 许可**发布，可自由使用、修改、再分发。\n\n方法论与判例蒸馏、转述自叶子南《高级英汉翻译理论与实践》（第4版，清华大学出版社，2020），在此谨致谢忱。`reference/` 三张表中的少量引文系评注与教学目的的简短摘引，著作权归原作者与出版社所有；本 skill 仅为方法工具，不能替代原著，建议系统学习者购买正版。\n","tagline":">-","category":"automation","tags":["translation","chinese","english-to-chinese","localization","agent-skill"],"author":"HoraceLuBFA","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"HoraceLuBFA/en-zh-translation-polish","creatorName":"HoraceLuBFA","creatorUrl":"https://github.com/HoraceLuBFA","sourceUrl":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish#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":106,"forks":5,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":41.76},"quality":{"score":71,"tier":"strong","label":"Strong","summary":"Solid option that is likely worth shortlisting for production workflows.","signals":[{"label":"GitHub stars","value":"106","tone":"neutral"},{"label":"Freshness","value":"6d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":[]},"trust":{"version":"trust-score-v5","score":68,"base_score":76,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","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":["68/100 Trust Score v5","76/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":"106 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":51,"weight":0.08,"status":"warn","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"6d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":68,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":72,"weight":0.12,"status":"info","detail":"command execution surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":76,"weight":0.07,"status":"info","detail":"shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"106 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"6d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"command execution surface"},{"status":"pass","label":"Install availability","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"info","label":"Permission surface","detail":"shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"status":"pass","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":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"106 GitHub stars","repoActivity":"106 stars, 5 forks","lastPushed":"6d since push","license":"MIT","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution","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 HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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","6d 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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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-v4","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","source_version"],"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":["automation","translation","chinese","english-to-chinese","localization","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","trust_score":68,"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":["automation","translation","chinese","english-to-chinese","localization","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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":76,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v5":{"version":"trust-score-v5","score":68,"base_score":76,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","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":["68/100 Trust Score v5","76/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":"106 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":51,"weight":0.08,"status":"warn","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"6d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":68,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":72,"weight":0.12,"status":"info","detail":"command execution surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":76,"weight":0.07,"status":"info","detail":"shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"106 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"6d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"command execution surface"},{"status":"pass","label":"Install availability","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"info","label":"Permission surface","detail":"shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"status":"pass","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":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"106 GitHub stars","repoActivity":"106 stars, 5 forks","lastPushed":"6d since push","license":"MIT","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution","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 HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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","6d 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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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-v4","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","source_version"],"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":["automation","translation","chinese","english-to-chinese","localization","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","trust_score":68,"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":["automation","translation","chinese","english-to-chinese","localization","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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":76,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v4":{"version":"trust-score-v4","score":76,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout.","recommendedAction":"Test in a sandbox workflow and compare its install path with close alternatives.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"106 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":51,"weight":0.08,"status":"warn","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"6d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":68,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":72,"weight":0.12,"status":"info","detail":"command execution surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":76,"weight":0.07,"status":"info","detail":"shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"106 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"106 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"6d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"command execution surface"},{"status":"pass","label":"Install availability","detail":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"info","label":"Permission surface","detail":"shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md"},{"status":"pass","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":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"],"evidence":{"stars":"106 GitHub stars","repoActivity":"106 stars, 5 forks","lastPushed":"6d since push","license":"MIT","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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","6d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":["automation","translation","chinese","english-to-chinese","localization","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":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":53,"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: Shell or command execution","53/100 agent safety score"]},"auto_install_allowed":false,"human_review_required":true,"blocked":false,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Shell or command execution","Quality score needs review"],"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: Shell or command execution","53/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"review","score":72,"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":["Trust score: Good trust signals with a few areas worth checking before rollout.","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: shell or command execution","High-risk permission hints: Shell or command execution","Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"],"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":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate en-zh-translation-polish before installing it in an agent workflow","automation","Local desktop 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 HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish"]},{"id":"trust_score","label":"Trust score","status":"warn","score":76,"required_for_auto_install":true,"detail":"Good trust signals with a few areas worth checking before rollout.","evidence":["Strong shortlist","106 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":81,"required_for_auto_install":true,"detail":"Needs review","evidence":["Quality score needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":53,"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: Shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"warn","score":68,"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":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"6d since push","evidence":["6d since push"]},{"id":"permission_surface","label":"Permission surface","status":"warn","score":76,"required_for_auto_install":true,"detail":"shell or command execution","evidence":["Shell or command execution: high","Network access: medium","Filesystem access: medium"]},{"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/horacelubfa-en-zh-translation-polish/evals","api":"/api/agent/evals?slug=horacelubfa-en-zh-translation-polish","text":"/api/agent/evals?slug=horacelubfa-en-zh-translation-polish&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"horacelubfa-en-zh-translation-polish","name":"en-zh-translation-polish","description":">-","category":"automation","url":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","github_repo":"HoraceLuBFA/en-zh-translation-polish"},"suited_tasks":["Local desktop workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate local resources","Run repeatable desktop actions","Verify file outputs","Chunk documents","Create embeddings"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add horacelubfa-en-zh-translation-polish"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"en-zh-translation-polish\" agent skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" as a Claude Code skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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/horacelubfa-en-zh-translation-polish/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/horacelubfa-en-zh-translation-polish"},"trust":{"score":76,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"106 GitHub stars","repoActivity":"106 stars, 5 forks","lastPushed":"6d since push","license":"MIT","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution","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":["automation","translation","chinese","english-to-chinese","localization","agent-skill"],"known_risks":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":81,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":71,"label":"Strong"},"supply":{"track":"Research and knowledge work","scenario":"RAG and knowledge","maintenance":"6d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","high-compliance environments without internal security review","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution","Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface"],"agent_contract":{"task_input":"Use en-zh-translation-polish 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: 76/100 Strong shortlist","Audit: 81/100 Needs review","Safety: 53/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"horacelubfa-en-zh-translation-polish (en-zh-translation-polish)","install_command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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":"horacelubfa-en-zh-translation-polish","task":"Use en-zh-translation-polish 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/horacelubfa-en-zh-translation-polish","api":"https://www.openagentskill.com/api/agent/skills/horacelubfa-en-zh-translation-polish","audit":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=horacelubfa-en-zh-translation-polish&task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/horacelubfa-en-zh-translation-polish/install","manifest":"https://www.openagentskill.com/api/registry/manifest/horacelubfa-en-zh-translation-polish"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"horacelubfa-en-zh-translation-polish","name":"en-zh-translation-polish","description":">-","category":"automation","url":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","github_repo":"HoraceLuBFA/en-zh-translation-polish"},"suited_tasks":["Local desktop workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate local resources","Run repeatable desktop actions","Verify file outputs","Chunk documents","Create embeddings"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add horacelubfa-en-zh-translation-polish"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"en-zh-translation-polish\" agent skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" as a Claude Code skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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/horacelubfa-en-zh-translation-polish/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/horacelubfa-en-zh-translation-polish"},"trust":{"score":76,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"106 GitHub stars","repoActivity":"106 stars, 5 forks","lastPushed":"6d since push","license":"MIT","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution","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":["automation","translation","chinese","english-to-chinese","localization","agent-skill"],"known_risks":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":81,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"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":71,"label":"Strong"},"supply":{"track":"Research and knowledge work","scenario":"RAG and knowledge","maintenance":"6d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","high-compliance environments without internal security review","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution","Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface"],"agent_contract":{"task_input":"Use en-zh-translation-polish 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: 76/100 Strong shortlist","Audit: 81/100 Needs review","Safety: 53/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"horacelubfa-en-zh-translation-polish (en-zh-translation-polish)","install_command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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":"horacelubfa-en-zh-translation-polish","task":"Use en-zh-translation-polish 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/horacelubfa-en-zh-translation-polish","api":"https://www.openagentskill.com/api/agent/skills/horacelubfa-en-zh-translation-polish","audit":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=horacelubfa-en-zh-translation-polish&task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20en-zh-translation-polish%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/horacelubfa-en-zh-translation-polish/install","manifest":"https://www.openagentskill.com/api/registry/manifest/horacelubfa-en-zh-translation-polish"}},"supply_profile":{"track":{"slug":"research","label":"Research and knowledge work","shortLabel":"Research","description":"Deep research, source comparison, literature review, RAG, knowledge search, and reports."},"scenario":{"label":"RAG and knowledge","description":"I need my agent to build a RAG workflow over documents and retrieve reliable context.","useCases":[{"slug":"local-desktop","title":"Local desktop"},{"slug":"rag-knowledge","title":"RAG and knowledge"},{"slug":"research-agents","title":"Research agents"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":106,"starsLabel":"106","forks":5,"license":"MIT","qualityScore":71,"trustScore":76,"auditScore":81},"maintenance":{"status":"fresh","label":"6d since push","daysSincePush":6,"lastPushedAt":"2026-09-02T07:56:14+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata","Needs review"]},"coverageTags":["Research","RAG and knowledge","automation","translation","chinese","english-to-chinese","localization","agent-skill"]},"audit":{"audit_score":81,"risk_level":"needs_review","risk_label":"Needs review","quality_score":71,"trust_score":76,"maintenance_score":100,"security_score":84,"install_score":92,"warnings":["Quality score needs review","Stars/forks activity: 106 stars, 5 forks; issue activity unavailable in current metadata"]},"quality_signals":{"model":"v2","star_score":14.21,"usage_score":0,"review_score":5.55,"metadata_score":7,"freshness_score":15},"platforms":["Claude Code"],"use_cases":[{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"rag-knowledge","title":"RAG and knowledge","url":"https://www.openagentskill.com/use-cases/rag-knowledge"},{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"content-automation","title":"Content automation","url":"https://www.openagentskill.com/use-cases/content-automation"}],"stacks":[{"slug":"rag-knowledge-base","title":"RAG knowledge base","url":"https://www.openagentskill.com/collections/rag-knowledge-base"},{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"}],"install":"npx skills add HoraceLuBFA/en-zh-translation-polish --skill en-zh-translation-polish","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.3.0/openagentskill-0.3.0.tgz add horacelubfa-en-zh-translation-polish","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 \"en-zh-translation-polish\" agent skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" as a Claude Code skill from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md. 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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 \"en-zh-translation-polish\" from https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md 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: >- 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\":\"horacelubfa-en-zh-translation-polish\",\"task\":\"Install en-zh-translation-polish\",\"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/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","github_repo":"HoraceLuBFA/en-zh-translation-polish","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/horacelubfa-en-zh-translation-polish","repository":"https://github.com/HoraceLuBFA/en-zh-translation-polish/blob/main/SKILL.md","api":"/api/agent/skills/horacelubfa-en-zh-translation-polish","install_api":"/api/skills/horacelubfa-en-zh-translation-polish/install"},"meta":{"created_at":"2026-09-07T01:01:50.616739+00:00","updated_at":"2026-09-07T01:01:50.796266+00:00","agent_friendly":true}}