[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"extension-skill-hkuds-cli-anything-videocaptioner-en":3,"guides-for-hkuds-cli-anything-videocaptioner":820,"similar-k170dqz8g6nn0gs4rf7azc324x86nj9d-en":821},{"_creationTime":4,"_id":5,"children":6,"community":7,"display":9,"evaluation":15,"identity":244,"isFallback":235,"parentExtension":249,"providers":250,"relations":255,"repo":257,"tags":817,"workflow":818},1778688417731.9595,"k170dqz8g6nn0gs4rf7azc324x86nj9d",[],{"reviewCount":8},0,{"description":10,"installMethods":11,"name":13,"sourceUrl":14},"AI-powered video captioning — transcribe speech, optimize/translate subtitles, and burn them into video via the stable VideoCaptioner backend. Free ASR and translation included.",{"claudeCode":12},"hkuds/cli-anything","cli-anything-videocaptioner","https://github.com/hkuds/cli-anything",{"_creationTime":16,"_id":17,"extensionId":5,"locale":18,"result":19,"trustSignals":225,"workflow":242},1778689899246.377,"kn7b0zkpe3dhfx316zvh8dzb0n86mtds","en",{"checks":20,"evaluatedAt":192,"extensionSummary":193,"features":194,"nonGoals":200,"promptVersionExtension":204,"promptVersionScoring":205,"purpose":206,"rationale":207,"score":208,"summary":209,"tags":210,"targetMarket":218,"tier":219,"useCases":220},[21,26,29,32,36,39,43,47,50,53,57,61,64,68,71,74,77,80,83,86,90,94,98,102,106,109,113,117,121,124,127,130,133,136,139,143,147,150,153,157,160,163,166,169,173,176,179,182,185,189],{"category":22,"check":23,"severity":24,"summary":25},"Practical Utility","Problem relevance","pass","The description clearly states the problem of AI-powered video captioning and the pain point of manual subtitle creation, mentioning transcription, optimization, translation, and burning into video.",{"category":22,"check":27,"severity":24,"summary":28},"Unique selling proposition","The extension offers a complete, automated pipeline for video captioning, including free ASR and translation, which goes beyond a simple API wrapper and solves a concrete problem.",{"category":22,"check":30,"severity":24,"summary":31},"Production readiness","The CLI provides a full lifecycle for video captioning, from transcription to burning subtitles, and its installation and usage are well-documented, indicating readiness for workflow integration.",{"category":33,"check":34,"severity":24,"summary":35},"Scope","Single responsibility principle","The extension focuses solely on video captioning tasks, including transcription, subtitle manipulation, and video synthesis, adhering to a single domain.",{"category":33,"check":37,"severity":24,"summary":38},"Description quality","The description accurately and concisely reflects the extension's functionality: AI-powered video captioning, transcription, subtitle optimization/translation, and burning into video.",{"category":40,"check":41,"severity":24,"summary":42},"Invocation","Scoped tools","The CLI exposes well-scoped verb-noun tools for specific video captioning tasks like transcribe, subtitle, synthesize, process, and review.",{"category":44,"check":45,"severity":24,"summary":46},"Documentation","Configuration & parameter reference","All command-line options, including ASR engines, translators, language codes, subtitle modes, and output paths, are documented with their respective parameters and supported values.",{"category":33,"check":48,"severity":24,"summary":49},"Tool naming","Tool names like 'transcribe', 'subtitle', 'synthesize', 'process', and 'review' are descriptive and adhere to the kebab-case convention.",{"category":33,"check":51,"severity":24,"summary":52},"Minimal I/O surface","Input parameters are specific to the task (e.g., video file path, subtitle input, target language) and output is either a file path or JSON, with no extraneous data.",{"category":54,"check":55,"severity":24,"summary":56},"License","License usability","The project uses the Apache-2.0 license, which is a permissive open-source license, and it is clearly indicated in the LICENSE file and README.",{"category":58,"check":59,"severity":24,"summary":60},"Maintenance","Commit recency","The repository has recent commits, with the latest push on 2026-05-13, indicating active maintenance.",{"category":58,"check":62,"severity":24,"summary":63},"Dependency Management","The `requirements.txt` file specifies Python dependencies with versions, and the `Pipfile` or `Pipfile.lock` would provide stricter pinning. The use of `pip install` implies standard package management.",{"category":65,"check":66,"severity":24,"summary":67},"Security","Secret Management","Secrets like API keys are handled via command-line arguments (e.g., `--whisper-api-key`) or environment variables, not hardcoded, and the documentation implies they are not echoed to stdout.",{"category":65,"check":69,"severity":24,"summary":70},"Injection","The tool appears to treat file paths and command arguments as data and does not exhibit patterns of executing arbitrary code from external sources.",{"category":65,"check":72,"severity":24,"summary":73},"Transitive Supply-Chain Grenades","The extension appears to bundle its dependencies and does not perform runtime downloads or execute remote code pipes.",{"category":65,"check":75,"severity":24,"summary":76},"Sandbox Isolation","The CLI operates on specified input files and writes to output paths, without evidence of attempting to modify files outside its designated scope.",{"category":65,"check":78,"severity":24,"summary":79},"Sandbox escape primitives","No detached process spawns or retry loops around denied tool calls were observed in the provided scripts.",{"category":65,"check":81,"severity":24,"summary":82},"Data Exfiltration","The tool's documented outbound calls are for ASR and translation services, which are expected for its function. No evidence of undocumented or suspicious outbound calls was found.",{"category":65,"check":84,"severity":24,"summary":85},"Hidden Text Tricks","The bundled content and documentation do not contain hidden text, invisible characters, or other steering tricks.",{"category":87,"check":88,"severity":24,"summary":89},"Hooks","Opaque code execution","The scripts appear to be standard Python code and do not use obfuscation techniques like base64 decoding or runtime fetches for execution.",{"category":91,"check":92,"severity":24,"summary":93},"Portability","Structural Assumption","The script handles file paths as inputs and outputs, and does not appear to make rigid assumptions about project directory structures beyond the input/output files themselves.",{"category":95,"check":96,"severity":24,"summary":97},"Trust","Issues Attention","With 35 open and 48 closed issues in the last 90 days, the closure rate is approximately 58%, indicating good maintainer engagement.",{"category":99,"check":100,"severity":24,"summary":101},"Versioning","Release Management","The `SKILL.md` frontmatter declares a version (though not semantic versioning) and the README indicates recent updates, suggesting versioning is managed.",{"category":103,"check":104,"severity":24,"summary":105},"Execution","Validation","Input arguments like file paths, language codes, and formats are used by the underlying `videocaptioner` library, which likely includes validation. Command-line parsing with `click` also provides basic validation.",{"category":65,"check":107,"severity":24,"summary":108},"Unguarded Destructive Operations","The primary operations involve processing files and creating new ones, not destructive actions like deletion or overwriting without explicit user interaction via commands.",{"category":110,"check":111,"severity":24,"summary":112},"Code Execution","Error Handling","The CLI uses the `click` library for argument parsing and error handling, and the underlying `videocaptioner` library likely handles its own errors, with JSON output providing structured error information when applicable.",{"category":110,"check":114,"severity":115,"summary":116},"Logging","not_applicable","The extension is primarily a CLI tool that operates on files and outputs results, rather than performing destructive actions or making external calls that necessitate local audit logging for user review.",{"category":118,"check":119,"severity":24,"summary":120},"Compliance","GDPR","The tool processes video files and potentially audio data for transcription. It relies on external ASR and translation services which may have their own data handling policies, but the tool itself does not appear to store or submit personal data beyond what's necessary for the captioning task.",{"category":118,"check":122,"severity":24,"summary":123},"Target market","The tool supports a wide range of BCP 47 language codes and utilizes free translation services, indicating a global target market without regional restrictions.",{"category":91,"check":125,"severity":24,"summary":126},"Runtime stability","The tool has clear Python version prerequisites and requires FFmpeg, which are standard dependencies. It does not appear to make assumptions about specific OS features beyond Python and FFmpeg availability.",{"category":44,"check":128,"severity":24,"summary":129},"README","The README file is comprehensive, detailing installation, usage, commands, and backend notes, clearly stating the extension's purpose.",{"category":33,"check":131,"severity":24,"summary":132},"Tool surface size","The CLI exposes a focused set of 6 main commands (transcribe, subtitle, synthesize, process, review, styles, config, download), which is within the target range.",{"category":40,"check":134,"severity":24,"summary":135},"Overlapping near-synonym tools","The tools (transcribe, subtitle, synthesize, process, review) cover distinct, non-overlapping stages of the video captioning pipeline.",{"category":44,"check":137,"severity":24,"summary":138},"Phantom features","All advertised features, such as free ASR, translation, and various output formats, have corresponding commands and documented options.",{"category":140,"check":141,"severity":24,"summary":142},"Install","Installation instruction","The README provides clear installation instructions using pip and includes multiple copy-pasteable usage examples for basic and advanced scenarios.",{"category":144,"check":145,"severity":24,"summary":146},"Errors","Actionable error messages","Command-line arguments and options are well-defined, and errors from the underlying libraries or Click would provide specific feedback, with JSON output aiding agent interpretation.",{"category":103,"check":148,"severity":24,"summary":149},"Pinned dependencies","The `requirements.txt` file specifies pinned dependencies for the `videocaptioner` library and its Python version, ensuring reproducible builds.",{"category":33,"check":151,"severity":115,"summary":152},"Dry-run preview","The primary operations involve processing video and subtitle files to generate output files. There isn't a clear 'state-changing' operation that would benefit from a dry-run preview in the traditional sense.",{"category":154,"check":155,"severity":115,"summary":156},"Protocol","Idempotent retry & timeouts","The tool operates on local files and its core functions are likely idempotent (rerunning on the same input produces the same output). It does not involve remote calls that would require explicit timeouts or retry logic beyond what the underlying libraries provide.",{"category":65,"check":158,"severity":24,"summary":159},"Telemetry opt-in","There is no mention of telemetry collection in the documentation. Given it's a CLI tool, telemetry would likely be opt-in via environment variables or flags if implemented, and is not apparent here.",{"category":40,"check":161,"severity":24,"summary":162},"Precise Purpose","The description clearly defines the purpose of AI-powered video captioning and lists specific commands for transcription, translation, and burning subtitles, along with their triggers.",{"category":40,"check":164,"severity":24,"summary":165},"Concise Frontmatter","The frontmatter in `SKILL.md` is concise, providing a clear summary of the tool's core capabilities and its purpose.",{"category":44,"check":167,"severity":24,"summary":168},"Concise Body","The `SKILL.md` body is well-structured and focuses on essential information, delegating deeper details to command documentation within the file.",{"category":170,"check":171,"severity":24,"summary":172},"Context","Progressive Disclosure","The `SKILL.md` provides a clear overview and command documentation without embedding excessive bulk material, adhering to progressive disclosure principles.",{"category":170,"check":174,"severity":115,"summary":175},"Forked exploration","This skill is a CLI tool for processing video files, not an exploration or audit-style skill that would require forked context.",{"category":22,"check":177,"severity":24,"summary":178},"Usage examples","The README provides multiple end-to-end, ready-to-use examples demonstrating basic and advanced usage scenarios, including JSON output.",{"category":22,"check":180,"severity":24,"summary":181},"Edge cases","The tool handles various ASR engines, translators, language codes, and subtitle modes, implicitly covering edge cases through parameter options. The documentation also lists target languages, suggesting breadth of handling.",{"category":110,"check":183,"severity":115,"summary":184},"Tool Fallback","This skill is a standalone CLI and does not rely on external MCP servers or other skills that would require fallback mechanisms.",{"category":186,"check":187,"severity":24,"summary":188},"Safety","Halt on unexpected state","The CLI uses argument parsing and expects specific file inputs. Errors in input or unexpected states would likely result in non-zero exit codes and informative messages from `click` or underlying libraries, halting the process.",{"category":91,"check":190,"severity":24,"summary":191},"Cross-skill coupling","The skill is self-contained and focuses solely on video captioning tasks, with no implicit reliance on other skills.",1778689899080,"This CLI tool automates video captioning by transcribing speech, optimizing and translating subtitles, and burning them into video files. It supports multiple ASR engines and translation services, offering both human-readable and JSON output.",[195,196,197,198,199],"AI-powered video captioning pipeline","Free Automatic Speech Recognition (ASR) and translation","Optimize, translate, and burn subtitles into video","Support for various ASR engines and translators","JSON output for machine-readable results",[201,202,203],"Real-time video streaming analysis.","Audio editing beyond subtitle generation.","Video editing features beyond subtitle burning.","3.0.0","4.4.0","To automate the entire video captioning workflow, making it easy for users and AI agents to generate accurate, translated, and embedded subtitles for videos.","The extension exhibits high quality across all checks, with no significant issues found. The primary drivers for the score are its strong documentation, clear utility, and robust implementation.",99,"Excellent AI-powered video captioning tool with comprehensive features and clear documentation.",[211,212,213,214,215,216,217],"video","captioning","subtitles","transcription","translation","cli","ffmpeg","global","verified",[221,222,223,224],"Automatically generate subtitles for video content.","Translate video subtitles into multiple languages.","Burn subtitles directly into video frames for permanent display.","Integrate video captioning into automated AI agent workflows.",{"codeQuality":226,"collectedAt":228,"documentation":229,"maintenance":232,"security":239,"testCoverage":241},{"hasLockfile":227},true,1778689869864,{"descriptionLength":230,"readmeSize":231},177,65157,{"closedIssues90d":233,"forks":234,"hasChangelog":235,"openIssues90d":236,"pushedAt":237,"stars":238},48,3364,false,35,1778662207000,34376,{"hasNpmPackage":235,"license":240,"smitheryVerified":235},"Apache-2.0",{"hasCi":227,"hasTests":227},{"updatedAt":243},1778689899246,{"basePath":245,"githubOwner":246,"githubRepo":247,"locale":18,"slug":13,"type":248},"skills/cli-anything-videocaptioner","hkuds","cli-anything","skill",null,{"evaluate":251,"extract":253},{"promptVersionExtension":204,"promptVersionScoring":205,"score":208,"tags":252,"targetMarket":218,"tier":219},[211,212,213,214,215,216,217],{"commitSha":254},"HEAD",{"repoId":256},"kd7e2bra4ymb6r521a25r6yges86n35p",{"_creationTime":258,"_id":256,"identity":259,"providers":260,"workflow":813},1778688407288.288,{"githubOwner":246,"githubRepo":247,"sourceUrl":14},{"classify":261,"discover":806,"github":809},{"commitSha":254,"extensions":262},[263,279,299,308,316,324,332,340,348,356,363,371,379,386,394,402,410,418,426,434,442,450,458,466,474,482,490,498,506,514,522,530,538,546,554,562,570,578,586,594,602,610,618,626,634,642,650,658,666,674,682,690,697,704,711,718,726,734,742,747,755,763,771,778,791,798],{"basePath":264,"description":265,"displayName":247,"installMethods":266,"rationale":267,"selectedPaths":268,"source":277,"sourceLanguage":18,"type":278},"","Build powerful, stateful CLI interfaces for any GUI application using the cli-anything harness methodology.",{"claudeCode":12},"marketplace.json at .claude-plugin/marketplace.json",[269,272,274],{"path":270,"priority":271},".claude-plugin/marketplace.json","mandatory",{"path":273,"priority":271},"README.md",{"path":275,"priority":276},"LICENSE","high","rule","marketplace",{"basePath":280,"description":265,"displayName":247,"installMethods":281,"rationale":282,"selectedPaths":283,"source":277,"sourceLanguage":18,"type":298},"cli-anything-plugin",{"claudeCode":247},"plugin manifest at cli-anything-plugin/.claude-plugin/plugin.json",[284,286,287,288,290,292,294,296],{"path":285,"priority":271},".claude-plugin/plugin.json",{"path":273,"priority":271},{"path":275,"priority":276},{"path":289,"priority":276},"commands/cli-anything.md",{"path":291,"priority":276},"commands/list.md",{"path":293,"priority":276},"commands/refine.md",{"path":295,"priority":276},"commands/test.md",{"path":297,"priority":276},"commands/validate.md","plugin",{"basePath":300,"description":301,"displayName":302,"installMethods":303,"rationale":304,"selectedPaths":305,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-qgis","Stateful QGIS CLI for projects, writable layers, features, layouts, exports, and qgis_process operations using the real QGIS runtime.","cli-anything-qgis",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-qgis/SKILL.md (coalesced with duplicate skill at QGIS/agent-harness/cli_anything/qgis/skills)",[306],{"path":307,"priority":271},"SKILL.md",{"basePath":309,"description":310,"displayName":311,"installMethods":312,"rationale":313,"selectedPaths":314,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-adguardhome","Command-line interface for AdGuard Home - Network-wide ad blocking and DNS management via AdGuard Home REST API. Designed for AI agents and power users who need to manage filtering, DNS rewrites, clients, DHCP, and query logs without a GUI.","cli-anything-adguardhome",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-adguardhome/SKILL.md (coalesced with duplicate skill at adguardhome/agent-harness/cli_anything/adguardhome/skills)",[315],{"path":307,"priority":271},{"basePath":317,"description":318,"displayName":319,"installMethods":320,"rationale":321,"selectedPaths":322,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-anygen","Command-line interface for Anygen - A stateful command-line interface for AnyGen OpenAPI — generate professional slides, documents, webs...","cli-anything-anygen",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-anygen/SKILL.md (coalesced with duplicate skill at anygen/agent-harness/cli_anything/anygen/skills)",[323],{"path":307,"priority":271},{"basePath":325,"description":326,"displayName":327,"installMethods":328,"rationale":329,"selectedPaths":330,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-audacity","Command-line interface for Audacity - A stateful command-line interface for audio editing, following the same patterns as the GIMP and Ble...","cli-anything-audacity",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-audacity/SKILL.md (coalesced with duplicate skill at audacity/agent-harness/cli_anything/audacity/skills)",[331],{"path":307,"priority":271},{"basePath":333,"description":334,"displayName":335,"installMethods":336,"rationale":337,"selectedPaths":338,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-blender","Command-line interface for Blender - A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI ...","cli-anything-blender",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-blender/SKILL.md (coalesced with duplicate skill at blender/agent-harness/cli_anything/blender/skills)",[339],{"path":307,"priority":271},{"basePath":341,"description":342,"displayName":343,"installMethods":344,"rationale":345,"selectedPaths":346,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-browser","Browser automation CLI using DOMShell MCP server. Maps Chrome's Accessibility Tree to a virtual filesystem for agent-native navigation.","cli-anything-browser",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-browser/SKILL.md (coalesced with duplicate skill at browser/agent-harness/cli_anything/browser/skills)",[347],{"path":307,"priority":271},{"basePath":349,"description":350,"displayName":351,"installMethods":352,"rationale":353,"selectedPaths":354,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-chromadb","Command-line interface for ChromaDB - A stateless CLI for managing vector database collections, documents, and semantic search. Designed for AI agents and automation via the ChromaDB HTTP API v2.","cli-anything-chromadb",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-chromadb/SKILL.md (coalesced with duplicate skill at chromadb/agent-harness/cli_anything/chromadb/skills)",[355],{"path":307,"priority":271},{"basePath":357,"description":358,"displayName":357,"installMethods":359,"rationale":360,"selectedPaths":361,"source":277,"sourceLanguage":18,"type":248},"cli-hub-meta-skill","Discover agent-native CLIs for professional software. Access the live catalog to find tools for creative workflows, productivity, AI, and more.",{"claudeCode":12},"SKILL.md frontmatter at cli-hub-meta-skill/SKILL.md (coalesced with duplicate skill at skills/cli-hub-meta-skill)",[362],{"path":307,"priority":271},{"basePath":364,"description":365,"displayName":366,"installMethods":367,"rationale":368,"selectedPaths":369,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-cloudanalyzer","Command-line interface for CloudAnalyzer — Agent-friendly harness for CloudAnalyzer, a QA platform for mapping, localization, and perception outputs. Supports 27 commands across 8 groups: point cloud evaluation, trajectory evaluation, ground segmentation QA, config-driven quality gates, baseline evolution, processing, visualization, and interactive REPL.","cli-anything-cloudanalyzer",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-cloudanalyzer/SKILL.md (coalesced with duplicate skill at cloudanalyzer/agent-harness/cli_anything/cloudanalyzer/skills)",[370],{"path":307,"priority":271},{"basePath":372,"description":373,"displayName":374,"installMethods":375,"rationale":376,"selectedPaths":377,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-cloudcompare","Command-line interface for CloudCompare — Agent-friendly harness for CloudCompare, the open-source 3D point cloud and mesh processing software. Supports 41 commands across 9 groups: project management, session control, point cloud operations (subsample, filter, segment, analyze), mesh operations, distance computation (C2C, C2M), transformations (ICP, matrix), export (LAS/LAZ/PLY/PCD/OBJ/STL/E57), and interactive REPL.","cli-anything-cloudcompare",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-cloudcompare/SKILL.md (coalesced with duplicate skill at cloudcompare/agent-harness/cli_anything/cloudcompare/skills)",[378],{"path":307,"priority":271},{"basePath":380,"description":381,"displayName":247,"installMethods":382,"rationale":383,"selectedPaths":384,"source":277,"sourceLanguage":18,"type":248},"macrocli","Use when the user wants OpenClaw to build, refine, test, or validate a CLI-Anything harness for a GUI application or source repository. Adapts the CLI-Anything methodology to OpenClaw without changing the generated Python harness format.",{"claudeCode":12},"SKILL.md frontmatter at macrocli/SKILL.md (coalesced with duplicate skill at codex-skill)",[385],{"path":307,"priority":271},{"basePath":387,"description":388,"displayName":389,"installMethods":390,"rationale":391,"selectedPaths":392,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-comfyui","Command-line interface for ComfyUI - AI image generation workflow management via ComfyUI REST API. Designed for AI agents and power users who need to queue workflows, manage models, download generated images, and monitor the generation queue without a GUI.","cli-anything-comfyui",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-comfyui/SKILL.md (coalesced with duplicate skill at comfyui/agent-harness/cli_anything/comfyui/skills)",[393],{"path":307,"priority":271},{"basePath":395,"description":396,"displayName":397,"installMethods":398,"rationale":399,"selectedPaths":400,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-dify-workflow","Wrapper for the Dify workflow DSL CLI. Create, inspect, validate, edit, and export Dify workflow files through a CLI-Anything harness.","cli-anything-dify-workflow",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-dify-workflow/SKILL.md (coalesced with duplicate skill at dify-workflow/agent-harness/cli_anything/dify_workflow/skills)",[401],{"path":307,"priority":271},{"basePath":403,"description":404,"displayName":405,"installMethods":406,"rationale":407,"selectedPaths":408,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-drawio","Command-line interface for Drawio - A CLI harness for **Draw.io** — create, edit, and export diagrams from the command line....","cli-anything-drawio",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-drawio/SKILL.md (coalesced with duplicate skill at drawio/agent-harness/cli_anything/drawio/skills)",[409],{"path":307,"priority":271},{"basePath":411,"description":412,"displayName":413,"installMethods":414,"rationale":415,"selectedPaths":416,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-eth2-quickstart","Use eth2-quickstart to autonomously deploy a hardened Ethereum node, install execution and consensus clients, configure validator metadata, expose RPC safely, and inspect node health with structured JSON output.","cli-anything-eth2-quickstart",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-eth2-quickstart/SKILL.md (coalesced with duplicate skill at eth2-quickstart/agent-harness/cli_anything/eth2_quickstart/skills)",[417],{"path":307,"priority":271},{"basePath":419,"description":420,"displayName":421,"installMethods":422,"rationale":423,"selectedPaths":424,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-exa","Agent-native CLI for Exa web search and content retrieval workflows.","cli-anything-exa",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-exa/SKILL.md (coalesced with duplicate skill at exa/agent-harness/cli_anything/exa/skills)",[425],{"path":307,"priority":271},{"basePath":427,"description":428,"displayName":429,"installMethods":430,"rationale":431,"selectedPaths":432,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-firefly-iii","Firefly III CLI - Personal finance management via CLI-Anything","cli-anything-firefly-iii",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-firefly-iii/SKILL.md (coalesced with duplicate skill at firefly-iii/agent-harness/cli_anything/firefly_iii/skills, firefly-iii/agent-harness/skills/cli-anything-firefly-iii)",[433],{"path":307,"priority":271},{"basePath":435,"description":436,"displayName":437,"installMethods":438,"rationale":439,"selectedPaths":440,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-freecad","Complete CLI harness for FreeCAD parametric 3D CAD modeler (258 commands). Covers ALL workbenches: Part (29 primitives + boolean + mirror + loft + sweep), Sketcher (26 cmds: geometry + constraints + editing), PartDesign (38 cmds: pad/pocket/groove/fillet/chamfer/patterns/hole/datum), Assembly (11 cmds), Mesh (16 cmds), TechDraw (15 cmds: views + dimensions + PDF/SVG), Draft (33 cmds: 2D shapes + arrays + transforms), FEM (12 cmds), CAM/CNC (10 cmds), Surface (6 cmds), Spreadsheet (7 cmds), Import (13 formats), Export (17 formats), Measure (12 cmds), Materials (21 presets). Headless FreeCAD export to STEP/IGES/STL/OBJ/DXF/PDF/glTF/3MF.","cli-anything-freecad",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-freecad/SKILL.md (coalesced with duplicate skill at freecad/agent-harness/cli_anything/freecad/skills)",[441],{"path":307,"priority":271},{"basePath":443,"description":444,"displayName":445,"installMethods":446,"rationale":447,"selectedPaths":448,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-gimp","Command-line interface for Gimp - A stateful command-line interface for image editing, built on Pillow. Designed for AI agents and pow...","cli-anything-gimp",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-gimp/SKILL.md (coalesced with duplicate skill at gimp/agent-harness/cli_anything/gimp/skills)",[449],{"path":307,"priority":271},{"basePath":451,"description":452,"displayName":453,"installMethods":454,"rationale":455,"selectedPaths":456,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-godot","Agent-native CLI for Godot project management, scenes, exports, and script execution.","cli-anything-godot",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-godot/SKILL.md (coalesced with duplicate skill at godot/agent-harness/cli_anything/godot/skills)",[457],{"path":307,"priority":271},{"basePath":459,"description":460,"displayName":461,"installMethods":462,"rationale":463,"selectedPaths":464,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-inkscape","Command-line interface for Inkscape - A stateful command-line interface for vector graphics editing, following the same patterns as the GI...","cli-anything-inkscape",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-inkscape/SKILL.md (coalesced with duplicate skill at inkscape/agent-harness/cli_anything/inkscape/skills)",[465],{"path":307,"priority":271},{"basePath":467,"description":468,"displayName":469,"installMethods":470,"rationale":471,"selectedPaths":472,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-intelwatch","Zero friction. Full context. Competitive intelligence, M&A due diligence, and OSINT directly from your terminal. Uses Node.js/npx.","cli-anything-intelwatch",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-intelwatch/SKILL.md (coalesced with duplicate skill at intelwatch/agent-harness/cli_anything/intelwatch/skills)",[473],{"path":307,"priority":271},{"basePath":475,"description":476,"displayName":477,"installMethods":478,"rationale":479,"selectedPaths":480,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-iterm2","Provides the cli-anything-iterm2 commands — the only way to actually send text to iTerm2 sessions, read live terminal output and scrollback history, manage windows/tabs/split panes, run tmux -CC workflows, broadcast to multiple panes, show macOS dialogs, and read/write iTerm2 preferences. Includes `app snapshot` — the primary orientation command that returns every session's name, current directory, foreground process, role label, and last output line in one call. Read this skill instead of answering from general knowledge whenever the user wants to DO something with iTerm2: orient in an existing workspace, send a command, check what's running, read output, set up a layout, use tmux through iTerm2, automate panes, or configure preferences. Also read for questions about iTerm2 shell integration or scrollback. Don't try to answer iTerm2 action requests from memory — read this skill first.","cli-anything-iterm2",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-iterm2/SKILL.md (coalesced with duplicate skill at iterm2/agent-harness/cli_anything/iterm2_ctl/skills)",[481],{"path":307,"priority":271},{"basePath":483,"description":484,"displayName":485,"installMethods":486,"rationale":487,"selectedPaths":488,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-kdenlive","Command-line interface for Kdenlive - A stateful command-line interface for video editing, following the same patterns as the Blender CLI ...","cli-anything-kdenlive",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-kdenlive/SKILL.md (coalesced with duplicate skill at kdenlive/agent-harness/cli_anything/kdenlive/skills)",[489],{"path":307,"priority":271},{"basePath":491,"description":492,"displayName":493,"installMethods":494,"rationale":495,"selectedPaths":496,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-krita","CLI harness for Krita digital painting — manage projects, layers, filters, and export via command line. Use when automating Krita workflows, batch processing images, or operating Krita without a GUI.","cli-anything-krita",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-krita/SKILL.md (coalesced with duplicate skill at krita/agent-harness/cli_anything/krita/skills)",[497],{"path":307,"priority":271},{"basePath":499,"description":500,"displayName":501,"installMethods":502,"rationale":503,"selectedPaths":504,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-libreoffice","Command-line interface for Libreoffice - A stateful command-line interface for document editing, producing real ODF files (ZIP archives with ...","cli-anything-libreoffice",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-libreoffice/SKILL.md (coalesced with duplicate skill at libreoffice/agent-harness/cli_anything/libreoffice/skills)",[505],{"path":307,"priority":271},{"basePath":507,"description":508,"displayName":509,"installMethods":510,"rationale":511,"selectedPaths":512,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-lldb","Stateful LLDB debugging via LLDB Python API","cli-anything-lldb",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-lldb/SKILL.md (coalesced with duplicate skill at lldb/agent-harness/cli_anything/lldb/skills)",[513],{"path":307,"priority":271},{"basePath":515,"description":516,"displayName":517,"installMethods":518,"rationale":519,"selectedPaths":520,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-macrocli","Use when the agent wants to define, list, inspect, or execute GUI macros via the MacroCLI CLI. Macros are parameterized, CLI-callable workflows — the agent invokes `macro run \u003Cname>` and the system handles backend routing (plugin, file transform, accessibility, compiled GUI replay).\n","cli-anything-macrocli",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-macrocli/SKILL.md (coalesced with duplicate skill at macrocli/agent-harness/cli_anything/macrocli/skills)",[521],{"path":307,"priority":271},{"basePath":523,"description":524,"displayName":525,"installMethods":526,"rationale":527,"selectedPaths":528,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-mailchimp","CLI harness for the Mailchimp Marketing API v3.0 — 303 commands across 30 resource groups (lists, campaigns, reports, automations, ecommerce, templates, and more). Supports JSON output and interactive REPL mode.","cli-anything-mailchimp",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-mailchimp/SKILL.md (coalesced with duplicate skill at mailchimp/agent-harness/cli_anything/mailchimp/skills)",[529],{"path":307,"priority":271},{"basePath":531,"description":532,"displayName":533,"installMethods":534,"rationale":535,"selectedPaths":536,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-mermaid","Command-line interface for Mermaid Live Editor - Create, edit, and render Mermaid diagrams via stateful project files and mermaid.ink renderer URLs. Designed for AI agents and power users who need to generate flowcharts, sequence diagrams, and other visualizations without a GUI.","cli-anything-mermaid",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-mermaid/SKILL.md (coalesced with duplicate skill at mermaid/agent-harness/cli_anything/mermaid/skills)",[537],{"path":307,"priority":271},{"basePath":539,"description":540,"displayName":541,"installMethods":542,"rationale":543,"selectedPaths":544,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-mubu","Command-line interface for Mubu - Canonical packaged entrypoint for the Mubu live bridge....","cli-anything-mubu",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-mubu/SKILL.md (coalesced with duplicate skill at mubu/agent-harness/cli_anything/mubu/skills)",[545],{"path":307,"priority":271},{"basePath":547,"description":548,"displayName":549,"installMethods":550,"rationale":551,"selectedPaths":552,"source":277,"sourceLanguage":18,"type":248},"musescore/agent-harness/cli_anything/musescore/skills","CLI for music notation — transpose, export PDF/audio/MIDI, extract parts, manage instruments","musescore",{"claudeCode":12},"SKILL.md frontmatter at musescore/agent-harness/cli_anything/musescore/skills/SKILL.md",[553],{"path":307,"priority":271},{"basePath":555,"description":556,"displayName":557,"installMethods":558,"rationale":559,"selectedPaths":560,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-n8n","Command-line interface for n8n workflow automation platform. Manages workflows, executions, credentials, variables, and tags. Based on n8n Public API v1.1.1 (n8n >= 1.0.0).","cli-anything-n8n",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-n8n/SKILL.md (coalesced with duplicate skill at n8n/agent-harness/cli_anything/n8n/skills)",[561],{"path":307,"priority":271},{"basePath":563,"description":564,"displayName":565,"installMethods":566,"rationale":567,"selectedPaths":568,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-notebooklm","Experimental NotebookLM harness for listing notebooks, managing sources, asking questions, generating artifacts, and downloading outputs through an installed notebooklm CLI.","cli-anything-notebooklm",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-notebooklm/SKILL.md (coalesced with duplicate skill at notebooklm/agent-harness/cli_anything/notebooklm/skills)",[569],{"path":307,"priority":271},{"basePath":571,"description":572,"displayName":573,"installMethods":574,"rationale":575,"selectedPaths":576,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-novita","Command-line interface for Novita AI - An OpenAI-compatible AI API client for DeepSeek, GLM, and other models.","cli-anything-novita",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-novita/SKILL.md (coalesced with duplicate skill at novita/agent-harness/cli_anything/novita/skills)",[577],{"path":307,"priority":271},{"basePath":579,"description":580,"displayName":581,"installMethods":582,"rationale":583,"selectedPaths":584,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-nsight-graphics","Windows-first CLI harness for Nsight Graphics capture, GPU Trace summary, and ngfx-replay analysis","cli-anything-nsight-graphics",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-nsight-graphics/SKILL.md (coalesced with duplicate skill at nsight-graphics/agent-harness/cli_anything/nsight_graphics/skills)",[585],{"path":307,"priority":271},{"basePath":587,"description":588,"displayName":589,"installMethods":590,"rationale":591,"selectedPaths":592,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-nslogger","CLI harness for NSLogger — parse, filter, export, and monitor NSLogger log files (.rawnsloggerdata / .nsloggerdata)","cli-anything-nslogger",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-nslogger/SKILL.md (coalesced with duplicate skill at nslogger/agent-harness/cli_anything/nslogger/skills)",[593],{"path":307,"priority":271},{"basePath":595,"description":596,"displayName":597,"installMethods":598,"rationale":599,"selectedPaths":600,"source":277,"sourceLanguage":18,"type":248},"obs-studio/agent-harness/cli_anything/obs_studio/skills","Command-line interface for Obs Studio - A stateful command-line interface for OBS Studio scene collection editing, following the same patter...","skills",{"claudeCode":12},"SKILL.md frontmatter at obs-studio/agent-harness/cli_anything/obs_studio/skills/SKILL.md",[601],{"path":307,"priority":271},{"basePath":603,"description":604,"displayName":605,"installMethods":606,"rationale":607,"selectedPaths":608,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-obsidian","Command-line interface for Obsidian — Knowledge management and note-taking via Obsidian Local REST API. Designed for AI agents and power users who need to manage notes, search the vault, and execute commands without the GUI.","cli-anything-obsidian",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-obsidian/SKILL.md (coalesced with duplicate skill at obsidian/agent-harness/cli_anything/obsidian/skills)",[609],{"path":307,"priority":271},{"basePath":611,"description":612,"displayName":613,"installMethods":614,"rationale":615,"selectedPaths":616,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-ollama","Command-line interface for Ollama - Local LLM inference and model management via Ollama REST API. Designed for AI agents and power users who need to manage models, generate text, chat, and create embeddings without a GUI.","cli-anything-ollama",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-ollama/SKILL.md (coalesced with duplicate skill at ollama/agent-harness/cli_anything/ollama/skills)",[617],{"path":307,"priority":271},{"basePath":619,"description":620,"displayName":621,"installMethods":622,"rationale":623,"selectedPaths":624,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-openscreen","Command-line interface for Openscreen — a screen recording editor. A stateful CLI for editing screen recordings with zoom, speed ramps, trim, crop, annotations, and polished exports. Built on the Openscreen JSON project format with ffmpeg as the rendering backend. Designed for AI agents and power users who need programmatic video editing.","cli-anything-openscreen",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-openscreen/SKILL.md (coalesced with duplicate skill at openscreen/agent-harness/cli_anything/openscreen/skills)",[625],{"path":307,"priority":271},{"basePath":627,"description":628,"displayName":629,"installMethods":630,"rationale":631,"selectedPaths":632,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-pm2","Command-line interface for PM2 - A stateless CLI for Node.js process management via the PM2 CLI. List, start, stop, restart processes, view logs, and manage system configuration.","cli-anything-pm2",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-pm2/SKILL.md (coalesced with duplicate skill at pm2/agent-harness/cli_anything/pm2/skills)",[633],{"path":307,"priority":271},{"basePath":635,"description":636,"displayName":637,"installMethods":638,"rationale":639,"selectedPaths":640,"source":277,"sourceLanguage":18,"type":248},"quietshrink/agent-harness/cli_anything/quietshrink/skills","Compress macOS screen recordings with zero CPU stress using Apple Silicon's hardware HEVC encoder. Typically reduces file size 70-90% while staying visually lossless. Computer stays silent during encoding.","quietshrink",{"claudeCode":12},"SKILL.md frontmatter at quietshrink/agent-harness/cli_anything/quietshrink/skills/SKILL.md",[641],{"path":307,"priority":271},{"basePath":643,"description":644,"displayName":645,"installMethods":646,"rationale":647,"selectedPaths":648,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-renderdoc","CLI harness for RenderDoc graphics debugger capture analysis","cli-anything-renderdoc",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-renderdoc/SKILL.md (coalesced with duplicate skill at renderdoc/agent-harness/cli_anything/renderdoc/skills)",[649],{"path":307,"priority":271},{"basePath":651,"description":652,"displayName":653,"installMethods":654,"rationale":655,"selectedPaths":656,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-rms","Teltonika RMS device management and monitoring CLI","cli-anything-rms",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-rms/SKILL.md (coalesced with duplicate skill at rms/agent-harness/cli_anything/rms/skills)",[657],{"path":307,"priority":271},{"basePath":659,"description":660,"displayName":661,"installMethods":662,"rationale":663,"selectedPaths":664,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-safari","Safari browser automation CLI on macOS via safari-mcp. Controls real Safari (native, keeps logins) by wrapping the safari-mcp MCP server. Every one of the 84 MCP tools is exposed 1:1 with schema-accurate arguments — guaranteed parity, no manual drift.","cli-anything-safari",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-safari/SKILL.md (coalesced with duplicate skill at safari/agent-harness/cli_anything/safari/skills)",[665],{"path":307,"priority":271},{"basePath":667,"description":668,"displayName":669,"installMethods":670,"rationale":671,"selectedPaths":672,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-sbox","Agent-native CLI for the s&box game engine (Facepunch Studios, Source 2): project management, scene/prefab editing, material/sound/localization configs, C# code generation, asset graph queries, project validation, and editor launch.","cli-anything-sbox",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-sbox/SKILL.md (coalesced with duplicate skill at sbox/agent-harness/cli_anything/sbox/skills)",[673],{"path":307,"priority":271},{"basePath":675,"description":676,"displayName":677,"installMethods":678,"rationale":679,"selectedPaths":680,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-seaclip","Command-line interface for SeaClip-Lite - A stateless CLI for managing issues, pipelines, agents, schedules, and activity on the SeaClip-Lite project management board.","cli-anything-seaclip",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-seaclip/SKILL.md (coalesced with duplicate skill at seaclip/agent-harness/cli_anything/seaclip/skills)",[681],{"path":307,"priority":271},{"basePath":683,"description":684,"displayName":685,"installMethods":686,"rationale":687,"selectedPaths":688,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-shotcut","Command-line interface for Shotcut - A stateful command-line interface for video editing, built on the MLT XML format. Designed for AI ag...","cli-anything-shotcut",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-shotcut/SKILL.md (coalesced with duplicate skill at shotcut/agent-harness/cli_anything/shotcut/skills)",[689],{"path":307,"priority":271},{"basePath":691,"description":476,"displayName":692,"installMethods":693,"rationale":694,"selectedPaths":695,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-iterm2-ctl","cli-anything-iterm2-ctl",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-iterm2-ctl/SKILL.md",[696],{"path":307,"priority":271},{"basePath":698,"description":548,"displayName":699,"installMethods":700,"rationale":701,"selectedPaths":702,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-musescore","cli-anything-musescore",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-musescore/SKILL.md",[703],{"path":307,"priority":271},{"basePath":705,"description":596,"displayName":706,"installMethods":707,"rationale":708,"selectedPaths":709,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-obs-studio","cli-anything-obs-studio",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-obs-studio/SKILL.md",[710],{"path":307,"priority":271},{"basePath":712,"description":636,"displayName":713,"installMethods":714,"rationale":715,"selectedPaths":716,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-quietshrink","cli-anything-quietshrink",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-quietshrink/SKILL.md",[717],{"path":307,"priority":271},{"basePath":719,"description":720,"displayName":721,"installMethods":722,"rationale":723,"selectedPaths":724,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-slay-the-spire-ii","Command-line interface for Slay the Spire 2 - Control the real game through a local bridge mod HTTP API. Reads normalized game state and sends action commands for combat, navigation, rewards, and menu management.","cli-anything-slay-the-spire-ii",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-slay-the-spire-ii/SKILL.md",[725],{"path":307,"priority":271},{"basePath":727,"description":728,"displayName":729,"installMethods":730,"rationale":731,"selectedPaths":732,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-unimol-tools","Interactive CLI for Uni-Mol molecular property prediction training and inference workflows.","cli-anything-unimol-tools",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-unimol-tools/SKILL.md (coalesced with duplicate skill at unimol_tools/agent-harness/cli_anything/unimol_tools)",[733],{"path":307,"priority":271},{"basePath":735,"description":736,"displayName":737,"installMethods":738,"rationale":739,"selectedPaths":740,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-unrealinsights","Capture Unreal Engine traces to .utrace files and export Unreal Insights timing/counter data in headless mode.","cli-anything-unrealinsights",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-unrealinsights/SKILL.md (coalesced with duplicate skill at unrealinsights/agent-harness/cli_anything/unrealinsights/skills)",[741],{"path":307,"priority":271},{"basePath":245,"description":10,"displayName":13,"installMethods":743,"rationale":744,"selectedPaths":745,"source":277,"sourceLanguage":18,"type":248},{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-videocaptioner/SKILL.md (coalesced with duplicate skill at videocaptioner/agent-harness/cli_anything/videocaptioner/skills)",[746],{"path":307,"priority":271},{"basePath":748,"description":749,"displayName":750,"installMethods":751,"rationale":752,"selectedPaths":753,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-wiremock","Python CLI harness for WireMock HTTP mock server administration","cli-anything-wiremock",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-wiremock/SKILL.md (coalesced with duplicate skill at wiremock/agent-harness/cli_anything/wiremock/skills)",[754],{"path":307,"priority":271},{"basePath":756,"description":757,"displayName":758,"installMethods":759,"rationale":760,"selectedPaths":761,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-zoom","Command-line interface for Zoom - CLI harness for **Zoom** — manage meetings, participants, and recordings from the command line via t...","cli-anything-zoom",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-zoom/SKILL.md (coalesced with duplicate skill at zoom/agent-harness/cli_anything/zoom/skills)",[762],{"path":307,"priority":271},{"basePath":764,"description":765,"displayName":766,"installMethods":767,"rationale":768,"selectedPaths":769,"source":277,"sourceLanguage":18,"type":248},"skills/cli-anything-zotero","CLI harness for Zotero.","cli-anything-zotero",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-zotero/SKILL.md (coalesced with duplicate skill at zotero/agent-harness/cli_anything/zotero/skills)",[770],{"path":307,"priority":271},{"basePath":772,"description":720,"displayName":773,"installMethods":774,"rationale":775,"selectedPaths":776,"source":277,"sourceLanguage":18,"type":248},"slay_the_spire_ii/agent-harness/cli_anything/slay_the_spire_ii/skills","cli-anything-sts2",{"claudeCode":12},"SKILL.md frontmatter at slay_the_spire_ii/agent-harness/cli_anything/slay_the_spire_ii/skills/SKILL.md",[777],{"path":307,"priority":271},{"basePath":779,"description":780,"displayName":781,"installMethods":782,"rationale":783,"selectedPaths":784,"source":277,"sourceLanguage":18,"type":216},"sketch/agent-harness","CLI tool to generate Sketch files from JSON design specs — CLI-Anything harness for Sketch","sketch-harness",{"npm":781},"cli ecosystem detected at sketch/agent-harness",[785,787,788],{"path":786,"priority":271},"package.json",{"path":273,"priority":271},{"path":789,"priority":790},"src/cli.js","medium",{"basePath":792,"installMethods":793,"rationale":794,"selectedPaths":795,"source":277,"sourceLanguage":18,"type":216},"exa/agent-harness",{"pypi":421},"cli ecosystem detected at exa/agent-harness (coalesced with duplicate cli at n8n/agent-harness, pm2/agent-harness, rms/agent-harness, gimp/agent-harness, lldb/agent-harness, QGIS/agent-harness, sbox/agent-harness, zoom/agent-harness, godot/agent-harness, krita/agent-harness, anygen/agent-harness, drawio/agent-harness, iterm2/agent-harness, novita/agent-harness, ollama/agent-harness, safari/agent-harness, blender/agent-harness, browser/agent-harness, comfyui/agent-harness, freecad/agent-harness, mermaid/agent-harness, seaclip/agent-harness, shotcut/agent-harness, audacity/agent-harness, chromadb/agent-harness, inkscape/agent-harness, kdenlive/agent-harness, macrocli/agent-harness, nslogger/agent-harness, obsidian/agent-harness, wiremock/agent-harness, mailchimp/agent-harness, musescore/agent-harness, renderdoc/agent-harness, intelwatch/agent-harness, notebooklm/agent-harness, obs-studio/agent-harness, openscreen/agent-harness, adguardhome/agent-harness, firefly-iii/agent-harness, libreoffice/agent-harness, quietshrink/agent-harness, cloudcompare/agent-harness, unimol_tools/agent-harness, cloudanalyzer/agent-harness, dify-workflow/agent-harness, unrealinsights/agent-harness, videocaptioner/agent-harness, eth2-quickstart/agent-harness, nsight-graphics/agent-harness, slay_the_spire_ii/agent-harness)",[796],{"path":797,"priority":271},"setup.py",{"basePath":799,"installMethods":800,"rationale":802,"selectedPaths":803,"source":277,"sourceLanguage":18,"type":216},"cli-hub",{"pypi":801},"cli-anything-hub","cli ecosystem detected at cli-hub",[804,805],{"path":797,"priority":271},{"path":273,"priority":271},{"sources":807},[808],"manual",{"closedIssues90d":233,"description":810,"forks":234,"homepage":811,"license":240,"openIssues90d":236,"pushedAt":237,"readmeSize":231,"stars":238,"topics":812},"\"CLI-Anything: Making ALL Software Agent-Native\" -- CLI-Hub: https://clianything.cc/","https://clianything.cc/",[],{"classifiedAt":814,"discoverAt":815,"extractAt":816,"githubAt":816,"updatedAt":814},1778688417516,1778688407288,1778688414240,[212,216,217,213,214,215,211],{"evaluatedAt":243,"extractAt":819,"updatedAt":243},1778688417732,[],[822,850,881,909,937,964],{"_creationTime":823,"_id":824,"community":825,"display":826,"identity":832,"providers":836,"relations":844,"tags":846,"workflow":847},1778697652123.9006,"k173ykh2hb7ftk68yprzkgmy1n86nh4d",{"reviewCount":8},{"description":827,"installMethods":828,"name":830,"sourceUrl":831},"Extract frames or short clips from videos using ffmpeg.",{"claudeCode":829},"steipete/clawdis","video-frames","https://github.com/steipete/clawdis",{"basePath":833,"githubOwner":834,"githubRepo":835,"locale":18,"slug":830,"type":248},"skills/video-frames","steipete","clawdis",{"evaluate":837,"extract":843},{"promptVersionExtension":204,"promptVersionScoring":205,"score":838,"tags":839,"targetMarket":218,"tier":219},100,[211,217,840,841,842],"frames","clips","media",{"commitSha":254},{"repoId":845},"kd738npxg9yh3xf3vddzy9fyfh86nhng",[841,217,840,842,211],{"evaluatedAt":848,"extractAt":849,"updatedAt":848},1778699110713,1778697652123,{"_creationTime":851,"_id":852,"community":853,"display":854,"identity":860,"providers":865,"relations":875,"tags":877,"workflow":878},1778688112811.7349,"k170vdg81q6yx4j2kv8seggh9186na7e",{"reviewCount":8},{"description":855,"installMethods":856,"name":858,"sourceUrl":859},"Download and process YouTube content for research. Use when: downloading competitor videos for analysis; extracting audio for podcasts; getting transcripts for content repurposing; archiving webinars; research content curation",{"claudeCode":857},"guia-matthieu/clawfu-skills","YouTube Downloader","https://github.com/guia-matthieu/clawfu-skills",{"basePath":861,"githubOwner":862,"githubRepo":863,"locale":18,"slug":864,"type":248},"skills/automation/youtube-downloader","guia-matthieu","clawfu-skills","youtube-downloader",{"evaluate":866,"extract":873},{"promptVersionExtension":204,"promptVersionScoring":205,"score":838,"tags":867,"targetMarket":218,"tier":219},[868,869,211,870,214,871,872],"youtube","download","audio","research","content-processing",{"commitSha":254,"license":874},"MIT",{"repoId":876},"kd72qvzyvm658ya7pbyh5ey47h86md53",[870,872,869,871,214,211,868],{"evaluatedAt":879,"extractAt":880,"updatedAt":879},1778688933132,1778688112811,{"_creationTime":882,"_id":883,"community":884,"display":885,"identity":890,"providers":894,"relations":902,"tags":904,"workflow":905},1778686219732.8708,"k172sbg4kfrq84d08e4rk1ghp586nk45",{"reviewCount":8},{"description":886,"installMethods":887,"name":217,"sourceUrl":889},"Video and audio processing with FFmpeg. Use for format conversion, resizing, compression, audio extraction, and preparing assets for Remotion. Triggers include converting GIF to MP4, resizing video, extracting audio, compressing files, or any media transformation task.",{"claudeCode":888},"digitalsamba/claude-code-video-toolkit","https://github.com/digitalsamba/claude-code-video-toolkit",{"basePath":891,"githubOwner":892,"githubRepo":893,"locale":18,"slug":217,"type":248},".claude/skills/ffmpeg","digitalsamba","claude-code-video-toolkit",{"evaluate":895,"extract":901},{"promptVersionExtension":204,"promptVersionScoring":205,"score":208,"tags":896,"targetMarket":218,"tier":219},[211,870,217,897,898,899,900],"remotion","media-processing","compression","conversion",{"commitSha":254},{"repoId":903},"kd70r97eght58pp9f1x8scdagd86n32q",[870,899,900,217,898,897,211],{"evaluatedAt":906,"extractAt":907,"updatedAt":908},1778686320284,1778686219732,1778686648652,{"_creationTime":910,"_id":911,"community":912,"display":913,"identity":919,"providers":923,"relations":931,"tags":933,"workflow":934},1778683190010.2788,"k170adpz0ev1b1fhac7tp4ga5x86mnq7",{"reviewCount":8},{"description":914,"installMethods":915,"name":917,"sourceUrl":918},"FFmpeg-based media transcoding workflows with preset-driven conversions, batch processing, and safe backups for web/mobile/archive outputs.",{"claudeCode":916},"bobmatnyc/claude-mpm-skills","media-transcoding","https://github.com/bobmatnyc/claude-mpm-skills",{"basePath":920,"githubOwner":921,"githubRepo":922,"locale":18,"slug":917,"type":248},"toolchains/universal/infrastructure/media-transcoding","bobmatnyc","claude-mpm-skills",{"evaluate":924,"extract":930},{"promptVersionExtension":204,"promptVersionScoring":205,"score":208,"tags":925,"targetMarket":218,"tier":219},[217,842,211,926,927,928,929],"transcoding","encoding","bash","python",{"commitSha":254},{"repoId":932},"kd72g55e5qeqs90bk1bvkt8wbx86nkn3",[928,927,217,842,929,926,211],{"evaluatedAt":935,"extractAt":936,"updatedAt":935},1778685746213,1778683190010,{"_creationTime":938,"_id":939,"community":940,"display":941,"identity":947,"providers":951,"relations":957,"tags":960,"workflow":961},1778691497595.971,"k17d4j045r8r2rmskvshf0dycx86nhsb",{"reviewCount":8},{"description":942,"installMethods":943,"name":945,"sourceUrl":946},"Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to \"get YouTube transcript\", \"download subtitles\", \"get captions\", \"YouTube字幕\", \"YouTube封面\", \"视频封面\", \"video thumbnail\", \"video cover image\", or provides a YouTube URL and wants the transcript/subtitle text or cover image extracted.",{"claudeCode":944},"jimliu/baoyu-skills","baoyu-youtube-transcript","https://github.com/jimliu/baoyu-skills",{"basePath":948,"githubOwner":949,"githubRepo":950,"locale":18,"slug":945,"type":248},"skills/baoyu-youtube-transcript","jimliu","baoyu-skills",{"evaluate":952,"extract":956},{"promptVersionExtension":204,"promptVersionScoring":205,"score":208,"tags":953,"targetMarket":218,"tier":219},[868,954,213,211,869,955],"transcript","metadata",{"commitSha":254,"license":874},{"parentExtensionId":958,"repoId":959},"k172q4hxm2acmg5ree5aeemx1x86m6hx","kd718jn448p61w289hzf15tecd86n3a4",[869,955,213,954,211,868],{"evaluatedAt":962,"extractAt":963,"updatedAt":962},1778692048529,1778691497596,{"_creationTime":965,"_id":966,"community":967,"display":968,"identity":972,"providers":975,"relations":982,"tags":983,"workflow":984},1778697652123.8992,"k171037zd1adhny20kdfd5nbyx86nx4z",{"reviewCount":8},{"description":969,"installMethods":970,"name":971,"sourceUrl":831},"Summarize or transcribe URLs, YouTube/videos, podcasts, articles, transcripts, PDFs, and local files.",{"claudeCode":829},"Summarize",{"basePath":973,"githubOwner":834,"githubRepo":835,"locale":18,"slug":974,"type":248},"skills/summarize","summarize",{"evaluate":976,"extract":981},{"promptVersionExtension":204,"promptVersionScoring":205,"score":208,"tags":977,"targetMarket":218,"tier":219},[978,214,216,979,980,211],"summarization","urls","documents",{"commitSha":254,"license":874},{"repoId":845},[216,980,978,214,979,211],{"evaluatedAt":985,"extractAt":849,"updatedAt":985},1778699016526]