{"slug":"jimliu-baocut","name":"Baocut","description":"Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language.","long_description":"---\nname: baocut\ndescription: >-\n  BaoCut-only operator for the installed `bcut` CLI and `.bcut` projects.\n  Implicitly trigger only when the request explicitly names BaoCut or `bcut`,\n  targets a `.bcut` project or BaoCut Subtitle Studio, or continues a BaoCut\n  workflow already established in the conversation. Do not trigger solely for\n  generic audio or video, transcription, subtitles, translation, editing,\n  animation, review, rendering or export, FFmpeg, or another NLE. Once\n  triggered, execute and verify the requested BaoCut transcription, subtitle or\n  timeline, overlay, review, render, or export workflow. Being inside the\n  BaoCut source repository is not itself a trigger; ordinary code and\n  documentation tasks follow repository instructions unless they also operate\n  the product or a `.bcut` project.\nmetadata:\n  version: \"1.1.4\"\n  minAppVersion: \"1.1.4\"\n---\n\n# BaoCut\n\nUse the bundled resolver for every command. On macOS/Linux:\n\n```bash\nBAOCUT_SKILL_ROOT=\"<this-skill-directory>\"\n\"$BAOCUT_SKILL_ROOT/bin/baocut\" --json version\n```\n\nOn Windows, run the native PowerShell resolver (WSL is not required):\n\n```powershell\n$env:BAOCUT_SKILL_ROOT = \"<this-skill-directory>\"\n& \"$env:BAOCUT_SKILL_ROOT\\bin\\baocut.ps1\" --json version\n```\n\n## Mandatory startup version gate\n\nRun this gate once at the start of every BaoCut task, before `spec`, `doctor`,\nany project command, or reuse of an existing `bcut serve`:\n\n1. Explicitly run the platform resolver's `--json version` command above and\n   retain its `appVersion` and `commit`. A successful resolver handshake, a\n   compatible `spec`, `doctor`, or `serve --status` is not an update check.\n2. Immediately read and execute [references/updates.md](references/updates.md):\n   fetch the published appcast and compare its version numerically with the\n   local `appVersion`. Only an unavailable appcast may be reported as skipped.\n3. When the appcast is newer, update the standalone skill and let its refreshed\n   resolver download, verify, and cache the pinned CLI before continuing. Do\n   not merely report the update or keep using the compatible old CLI. Never\n   overwrite a development checkout or an App-bundled skill; use the supported\n   source/App update path documented in the reference instead.\n4. After any CLI update, run the refreshed resolver with `serve --background`,\n   then `serve --status`. This idempotent start replaces an older same-root\n   service, restores its mounts, and must report the refreshed CLI's\n   `appVersion` and `commit`; also require HTTP 200 from its health endpoint.\n   Discard any URL discovered before the restart.\n\nOnly after this gate may capability preflight and the requested work begin.\n\nThe resolver locates the right CLI on its own — never call `bcut` directly:\n\n- An explicit `BAOCUT_CLI` (or `BCUT_EXECUTABLE` / `BAOCUT_BIN`) override wins.\n  Point it only at a CLI built for this machine's architecture — see the\n  architecture guard below.\n- In a BaoCut development checkout (this skill directory inside the source\n  tree) it uses the workspace build — newest of release/debug, under\n  `core/target/{release,debug}/bcut` or `core/target/<host-triple>/…` — or\n  runs the sources via `cargo run` when nothing is built yet (it looks for\n  `cargo` in `~/.cargo/bin`, Homebrew's rustup, and `~/.rustup/toolchains`\n  when PATH lacks it). It prints a `development checkout detected` note to\n  stderr in that case, and a separate note when it must compile from source\n  or when it falls back to the installed App CLI because nothing is built and\n  `cargo` is unavailable — read those notes instead of guessing why a version\n  gate failed. A foreign-architecture build in the tree (for example\n  `core/target/x86_64-apple-darwin/…` on Apple Silicon) is never selected.\n- In a released install it uses the CLI embedded in BaoCut.app, in either\n  `/Applications` or `~/Applications`; every App release ships with its\n  matching `baocut-cli`, so App and CLI versions always move together.\n- Then a `bcut` on PATH.\n- Then the cached CLI this skill pinned earlier, under\n  `${XDG_CACHE_HOME:-~/.cache}/baocut/cli/<version>-build.<build>/bcut`.\n\nOn Windows, `bin/baocut.ps1` uses the same explicit overrides,\ndevelopment-checkout build, and PATH lookup first. It then checks cached\n`<version>-build.<build>` CLIs newest-first — by version *and* build, because\nthe handshake only reports the marketing version and cannot tell two builds\napart — and compatibility-checks them locally. Only when no compatible cache\nexists does it find the newest stable `baocut-v<version>-build.<build>` GitHub\nRelease that includes `windows-cli-release.json`, downloads its x64 Windows\narchive, verifies the manifest-pinned SHA-256, and caches `bcut.exe` under\n`%LOCALAPPDATA%\\BaoCut\\cli\\<version>-build.<build>\\bcut.exe`. \"Newest\" is the\nhighest `<version>`/`<build>` parsed from the release tags, not the first entry\nthe API returns: Windows assets are appended to an already-published macOS\nrelease, so creation order does not track build order. The Windows\narchive is currently an unsigned preview, so SmartScreen, Smart App Control,\nor enterprise policy may warn about or block it; SHA-256 proves download\nintegrity, not publisher identity.\n\nA compatible cache normally ends the search, so a rebuild published under the\nsame marketing version is not picked up on its own — nothing local announces\nit, since the Windows skill ships no CLI pin and `--json version` carries no\nbuild number. Set `BAOCUT_SKILL_CLI_UPDATE_CHECK=1` to let the cache path\ncompare against the newest release and adopt a higher build; unset, that path\nstays entirely offline, and any failed check silently keeps the cached CLI.\n`BAOCUT_SKILL_NO_DOWNLOAD=1` still wins over this opt-in.\n\nBefore choosing a Windows cache or release, the resolver runs\n`bin/detect-windows-cli-variant.ps1`. The detector uses `nvidia-smi` and selects\n`cuda13` only when at least one NVIDIA GPU has compute capability 8.0+ (Ampere /\nRTX 30 series or newer) and the installed driver is >= 580; a missing or failed\nprobe and an incompatible GPU select `cpu`. The CUDA choice additionally\nrequires backend `candle-cuda`, gives the cache directory a `-cuda13` suffix,\nand downloads the release's `windows-cli-cuda-release.json` and\n`…-x86_64-pc-windows-msvc-cuda13.zip` asset, extracting the bundled CUDA runtime\nDLLs next to `bcut.exe`. No CUDA Toolkit install is needed. If no release ships\nthe selected CUDA asset yet, the resolver fails clearly instead of silently\nusing a different build. `BAOCUT_VARIANT=cpu|cuda13` remains an explicit force\noverride for troubleshooting and controlled environments; normal installs do\nnot need it.\n\nThe resolver then checks the CLI contract and minimum BaoCut App version\nbefore it runs the requested command, and finally checks the CLI's\narchitecture against the host: `--json version` reports `target` (and, on\ncurrent CLIs, `rosetta`), and a CLI built for another architecture — typically an\nx86_64 `bcut` on Apple Silicon, which macOS silently runs under Rosetta 2 with\n`backend: candle-cpu` — is refused for `auto` / `transcribe` (exit 3) and only\nwarned about for other commands. Do not work around that refusal by setting\n`BAOCUT_ALLOW_FOREIGN_ARCH=1` (or the CLI's own `BCUT_ALLOW_ROSETTA=1`); a\n100-second clip once sat 40+ minutes in VAD on such a binary while the native\nbuild finished the whole pipeline in about three. Resolve it by choosing a\nnative CLI: BaoCut.app's bundled CLI, a native workspace build, or the pinned\nrelease CLI.\n\nIf nothing above resolves, or the resolved CLI is older than\n`metadata.minAppVersion`, the resolver downloads the CLI pinned by this\nskill's `cli-release.json` — the standalone release archive built from the\nsame commit as the matching App. It verifies the archive's SHA-256 against\nthe pin before extracting anything, unpacks `bcut` and its co-located\n`mlx.metallib` into the cache, and reruns the full contract and version\nhandshake against the downloaded binary. Any failure exits 3 with the manual\ndownload URL. The download carries no `com.apple.quarantine` attribute and the\nDeveloper ID signature lives in the binary itself, so the cached CLI runs\nwithout a Gatekeeper prompt. The resolver exports the packaged Metal library\npath before executing the cached CLI, so local MLX transcription never depends\non a metallib left behind on the release build machine.\n\nTwo deliberate exceptions never trigger the download: an explicit\n`BAOCUT_CLI`-style override and a development checkout. Both are chosen on\npurpose, so a failing handshake there must be fixed at the source — update the\noverride or rebuild the workspace — rather than silently shadowed by a release\nbinary. Set `BAOCUT_SKILL_NO_DOWNLOAD=1` to disable the download entirely;\n`BAOCUT_SKILL_NO_DEV=1` disables development-checkout detection.\n\nThe skill copy bundled inside BaoCut.app has no `cli-release.json`, because an\nApp install always ships its own matching CLI beside it.\n\nIf the resolver exits 3, follow its guidance instead of bypassing the check.\n\n## Choose the workflow\n\n- For transcription, polish, and translation, create the project in the shared\n  projects library first, start the preview server, then run the pipeline;\n  read [references/workflows.md](references/workflows.md).\n- For a complete local pipeline, use `auto`; read\n  [references/workflows.md](references/workflows.md). It defaults to the fast\n  path without closing refinement; only pass `--refine` after the user chooses\n  quality-first execution.\n- To run transcription on another machine on the same local network instead of\n  this one, read the remote-node note in\n  [references/workflows.md](references/workflows.md).\n- For an Agent-backed AI stage with pending calls, immediately read and follow\n  [references/agent-tasks.md](references/agent-tasks.md). For a short clip\n  its \"short-job fast path\" is the whole procedure (see \"Right-size the run\"\n  below). For long media its on-demand worker\n  rules — pool sized from the actual page plan (translate uses\n  `ceil(source words / 880)` by default (`--align-fusion rows`), or `/2200`\n  under `--align-fusion on|off`; align\n  also enforces at most 40 items and a\n  complexity budget, all capped by real slots), per-stage worker tiers (mid-tier for\n  translate/polish, high-reasoning tier for align and repair), hand-written\n  align answers with no scripted cutting and no unchanged resubmits — and its\n  consolidated-repair rules (including what `refine-align --only-hard` really\n  dispatches) are execution requirements, not optional tuning.\n- For the Subtitle Studio browser preview — serving and mounting projects,\n  applying page edits, page requests, history recovery, punctuation display,\n  or preview troubleshooting — read\n  [references/studio.md](references/studio.md). The page code itself is this\n  skill's `templates/` directory, served live by `serve`.\n- For source cuts, OUTPUT clip arrangement, appended media, or rough cutting,\n  read [references/editing.md](references/editing.md).\n- For overlays, B-roll, watermarks, text styles, or debug frames, read\n  [references/elements.md](references/elements.md).\n- For overlay motion, read [references/animation.md](references/animation.md).\n- For reusable foreground templates — caption slot, segment rail, progress bar,\n  station logo — and the `data.json` data layer that binds them, read\n  [references/templates.md](references/templates.md).\n- For text baked into video frames, read\n  [references/screentext.md](references/screentext.md).\n- For delivery, run `check --strict` and then use the export recipes in\n  [references/exports.md](references/exports.md).\n- For granular project edits, discover the installed surface with `spec` and\n  command `--help`; do not infer commands from older BaoCut releases.\n- For deterministic Transcript lookup, replacement, or lexical name fixes,\n  use the CLI before opening Subtitle Studio: run `transcript find`, then\n  `transcript replace --expect <count>`. Use `--scope all`","tagline":"Open-source Agent Skill that drives the BaoCut macOS app CLI (transcribe · subtitle · translate · cut) from Claude Code, Codex, and other agents","category":"design-creative","tags":["video-editing","subtitles","translation","claude-code","codex"],"author":"JimLiu","verified":true,"attribution":{"status":"community_indexed","statusLabel":"Community indexed","shortLabel":"COMMUNITY INDEXED","sourceLabel":"OpenAgentSkill auto-indexer","sourceDetail":"JimLiu/baocut","creatorName":"JimLiu","creatorUrl":"https://github.com/JimLiu","sourceUrl":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/jimliu-baocut#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":481,"forks":28,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":61.53},"quality":{"score":99,"tier":"excellent","label":"Excellent","summary":"High-confidence pick with strong adoption and healthy maintenance signals.","signals":[{"label":"GitHub stars","value":"481","tone":"neutral"},{"label":"Freshness","value":"8d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":[]},"trust":{"version":"trust-score-v5","score":72,"base_score":80,"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":["72/100 Trust Score v5","80/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":"481 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"8d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":100,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add JimLiu/baocut"},{"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":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"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":"481 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"8d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add JimLiu/baocut"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"status":"pass","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"pass","label":"Ownership","detail":"Listing manually verified"},{"status":"pass","label":"OpenAgentSkill usage","detail":"10 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["Manually verified listing","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":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"481 GitHub stars","repoActivity":"481 stars, 28 forks","lastPushed":"8d since push","license":"MIT","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","install":"npx skills add JimLiu/baocut","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add JimLiu/baocut","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","8d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"suited_agents":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add JimLiu/baocut","trust_score":72,"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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"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":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":80,"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":72,"base_score":80,"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":["72/100 Trust Score v5","80/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":"481 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"8d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":100,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add JimLiu/baocut"},{"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":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"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":"481 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"8d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add JimLiu/baocut"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"status":"pass","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"pass","label":"Ownership","detail":"Listing manually verified"},{"status":"pass","label":"OpenAgentSkill usage","detail":"10 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["Manually verified listing","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":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"481 GitHub stars","repoActivity":"481 stars, 28 forks","lastPushed":"8d since push","license":"MIT","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","install":"npx skills add JimLiu/baocut","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add JimLiu/baocut","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","8d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"suited_agents":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add JimLiu/baocut","trust_score":72,"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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"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":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":80,"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":80,"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":"481 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"8d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":100,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add JimLiu/baocut"},{"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":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"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":"481 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"481 stars, 28 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"8d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add JimLiu/baocut"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/JimLiu/baocut/tree/main/skills/baocut"},{"status":"pass","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"pass","label":"Ownership","detail":"Listing manually verified"},{"status":"pass","label":"OpenAgentSkill usage","detail":"10 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["Manually verified listing","AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"481 GitHub stars","repoActivity":"481 stars, 28 forks","lastPushed":"8d since push","license":"MIT","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","install":"npx skills add JimLiu/baocut","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add JimLiu/baocut","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","8d since push"]},"agentCompatibility":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"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":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":45,"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":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access","45/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":"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":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","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: Shell or command execution, Secrets or environment access","Dependency or permission surface 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":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access","45/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":80,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Permission surface: secrets or environment access, shell or command execution","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Permission surface: secrets or environment access, shell or command execution"],"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.","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"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 Baocut before installing it in an agent workflow","design-creative","Coding agents 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 JimLiu/baocut"]},{"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 JimLiu/baocut"]},{"id":"trust_score","label":"Trust score","status":"warn","score":80,"required_for_auto_install":true,"detail":"Good trust signals with a few areas worth checking before rollout.","evidence":["Strong shortlist","481 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":89,"required_for_auto_install":true,"detail":"Needs review","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":45,"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.","Metadata combines secrets access with shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":100,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"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":"8d since push","evidence":["8d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":22,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Browser automation: medium","Network 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/jimliu-baocut/evals","api":"/api/agent/evals?slug=jimliu-baocut","text":"/api/agent/evals?slug=jimliu-baocut&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"jimliu-baocut","name":"Baocut","description":"Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language.","category":"design-creative","url":"https://www.openagentskill.com/skills/jimliu-baocut","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","github_repo":"JimLiu/baocut"},"suited_tasks":["Coding agents workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect source files","Explain architecture","Patch bugs and verify changes","Inspect repository metadata","Compare code changes"],"suited_agents":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","Browser agents","CLI"],"install":{"command":"npx skills add JimLiu/baocut","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 jimliu-baocut"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"Baocut\" agent skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" as a Claude Code skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" from https://github.com/JimLiu/baocut/tree/main/skills/baocut 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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/jimliu-baocut/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/jimliu-baocut"},"trust":{"score":80,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"481 GitHub stars","repoActivity":"481 stars, 28 forks","lastPushed":"8d since push","license":"MIT","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","install":"npx skills add JimLiu/baocut","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"known_risks":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":89,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":99,"label":"Excellent"},"supply":{"track":"Coding and developer agents","scenario":"Coding agents","maintenance":"8d 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 major risk signals from current metadata","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata"],"agent_contract":{"task_input":"Use Baocut 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: 80/100 Strong shortlist","Audit: 89/100 Needs review","Safety: 45/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"jimliu-baocut (Baocut)","install_command":"npx skills add JimLiu/baocut","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":"jimliu-baocut","task":"Use Baocut 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/jimliu-baocut","api":"https://www.openagentskill.com/api/agent/skills/jimliu-baocut","audit":"https://www.openagentskill.com/skills/jimliu-baocut/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=jimliu-baocut&task=Use%20Baocut%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20Baocut%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20Baocut%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/jimliu-baocut/install","manifest":"https://www.openagentskill.com/api/registry/manifest/jimliu-baocut"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"jimliu-baocut","name":"Baocut","description":"Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language.","category":"design-creative","url":"https://www.openagentskill.com/skills/jimliu-baocut","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","github_repo":"JimLiu/baocut"},"suited_tasks":["Coding agents workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect source files","Explain architecture","Patch bugs and verify changes","Inspect repository metadata","Compare code changes"],"suited_agents":["Shell","Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","Browser agents","CLI"],"install":{"command":"npx skills add JimLiu/baocut","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 jimliu-baocut"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"Baocut\" agent skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" as a Claude Code skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" from https://github.com/JimLiu/baocut/tree/main/skills/baocut 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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/jimliu-baocut/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/jimliu-baocut"},"trust":{"score":80,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"481 GitHub stars","repoActivity":"481 stars, 28 forks","lastPushed":"8d since push","license":"MIT","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","install":"npx skills add JimLiu/baocut","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","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":["design-creative","video-editing","subtitles","translation","claude-code","codex"],"known_risks":["Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":89,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"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":99,"label":"Excellent"},"supply":{"track":"Coding and developer agents","scenario":"Coding agents","maintenance":"8d 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 major risk signals from current metadata","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata"],"agent_contract":{"task_input":"Use Baocut 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: 80/100 Strong shortlist","Audit: 89/100 Needs review","Safety: 45/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"jimliu-baocut (Baocut)","install_command":"npx skills add JimLiu/baocut","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":"jimliu-baocut","task":"Use Baocut 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/jimliu-baocut","api":"https://www.openagentskill.com/api/agent/skills/jimliu-baocut","audit":"https://www.openagentskill.com/skills/jimliu-baocut/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=jimliu-baocut&task=Use%20Baocut%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20Baocut%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20Baocut%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/jimliu-baocut/install","manifest":"https://www.openagentskill.com/api/registry/manifest/jimliu-baocut"}},"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":"Coding agents","description":"I need a coding agent that can understand a repository, edit code, and review pull requests.","useCases":[{"slug":"coding-agents","title":"Coding agents"},{"slug":"github-automation","title":"GitHub automation"},{"slug":"research-agents","title":"Research agents"}]},"applicableAgents":["Claude Code","OpenAI Agents","Browser agents","CLI","Codex"],"install":{"ready":true,"command":"npx skills add JimLiu/baocut","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":481,"starsLabel":"481","forks":28,"license":"MIT","qualityScore":99,"trustScore":80,"auditScore":89},"maintenance":{"status":"fresh","label":"8d since push","daysSincePush":8,"lastPushedAt":"2026-08-30T15:35:18+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"coverageTags":["Coding","Coding agents","design-creative","video-editing","subtitles","translation","claude-code","codex"]},"audit":{"audit_score":89,"risk_level":"needs_review","risk_label":"Needs review","quality_score":99,"trust_score":80,"maintenance_score":100,"security_score":77,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 481 stars, 28 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":18.78,"usage_score":0,"review_score":12.75,"metadata_score":15,"freshness_score":15},"platforms":["Shell","Claude Code","OpenAI Agents","Browser agents"],"use_cases":[{"slug":"coding-agents","title":"Coding agents","url":"https://www.openagentskill.com/use-cases/coding-agents"},{"slug":"github-automation","title":"GitHub automation","url":"https://www.openagentskill.com/use-cases/github-automation"},{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"multimodal-media","title":"Multimodal media","url":"https://www.openagentskill.com/use-cases/multimodal-media"}],"stacks":[{"slug":"coding-review-agent","title":"Coding review agent","url":"https://www.openagentskill.com/collections/coding-review-agent"},{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"frontend-product-ui","title":"Frontend and UI","url":"https://www.openagentskill.com/collections/frontend-product-ui"}],"install":"npx skills add JimLiu/baocut","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 jimliu-baocut","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 \"Baocut\" agent skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" as a Claude Code skill from https://github.com/JimLiu/baocut/tree/main/skills/baocut. 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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 \"Baocut\" from https://github.com/JimLiu/baocut/tree/main/skills/baocut 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: Agent skill to drive BaoCut macOS app for video transcription, subtitling, translation, and cutting via natural language. 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\":\"jimliu-baocut\",\"task\":\"Install Baocut\",\"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/JimLiu/baocut/tree/main/skills/baocut","github_repo":"JimLiu/baocut","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/jimliu-baocut","repository":"https://github.com/JimLiu/baocut/tree/main/skills/baocut","api":"/api/agent/skills/jimliu-baocut","install_api":"/api/skills/jimliu-baocut/install"},"meta":{"created_at":"2026-07-24T20:35:30.252212+00:00","updated_at":"2026-09-05T15:11:37.322832+00:00","agent_friendly":true}}