[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"extension-skill-hkuds-cli-anything-obsidian-zh-CN":3,"guides-for-hkuds-cli-anything-obsidian":822,"similar-k17519qw60syescz558gc23s8h86m99f-zh-CN":823},{"_creationTime":4,"_id":5,"children":6,"community":7,"display":9,"evaluation":15,"identity":246,"isFallback":229,"parentExtension":251,"providers":252,"relations":257,"repo":259,"tags":819,"workflow":820},1778688417731.955,"k17519qw60syescz558gc23s8h86m99f",[],{"reviewCount":8},0,{"description":10,"installMethods":11,"name":13,"sourceUrl":14},"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.",{"claudeCode":12},"hkuds/cli-anything","cli-anything-obsidian","https://github.com/hkuds/cli-anything",{"_creationTime":16,"_id":17,"extensionId":5,"locale":18,"result":19,"trustSignals":227,"workflow":244},1778689420999.594,"kn71v0hn9z4rzsyx6n4phpg0nd86mktf","en",{"checks":20,"evaluatedAt":193,"extensionSummary":194,"features":195,"nonGoals":204,"promptVersionExtension":208,"promptVersionScoring":209,"purpose":210,"rationale":211,"score":212,"summary":213,"tags":214,"targetMarket":220,"tier":221,"useCases":222},[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,151,154,158,161,164,167,170,174,177,180,183,186,190],{"category":22,"check":23,"severity":24,"summary":25},"Practical Utility","Problem relevance","pass","The description clearly states the problem of managing knowledge and notes via Obsidian's Local REST API, specifically targeting AI agents and power users who need GUI-less access.",{"category":22,"check":27,"severity":24,"summary":28},"Unique selling proposition","This CLI offers significant value over simple prompt interactions by providing a structured, native interface to Obsidian's Local REST API, enabling complex note management and command execution for AI agents.",{"category":22,"check":30,"severity":24,"summary":31},"Production readiness","The extension provides a complete set of commands for vault management, search, and command execution, addressing the full lifecycle of interacting with Obsidian notes via its API.",{"category":33,"check":34,"severity":24,"summary":35},"Scope","Single responsibility principle","The extension focuses solely on providing a command-line interface for Obsidian's Local REST API, covering knowledge management and note-taking tasks without extending into unrelated domains.",{"category":33,"check":37,"severity":24,"summary":38},"Description quality","The description accurately and concisely reflects the extension's functionality, clearly stating it's a CLI for Obsidian's Local REST API for AI agents and power users.",{"category":40,"check":41,"severity":24,"summary":42},"Invocation","Scoped tools","All exposed tools are narrow verb-noun specialists, such as `vault list`, `vault read`, `search query`, and `command execute`, which are easy for agents to select and reduce attack surface.",{"category":44,"check":45,"severity":24,"summary":46},"Documentation","Configuration & parameter reference","The SKILL.md and README documentation clearly outline all commands, parameters, and their expected behavior, including API key and host URL configuration via flags or environment variables.",{"category":33,"check":48,"severity":24,"summary":49},"Tool naming","Tool names are descriptive and follow a clear verb-noun structure within their respective command groups (e.g., `vault list`, `search query`).",{"category":33,"check":51,"severity":24,"summary":52},"Minimal I/O surface","Tool inputs are well-defined flags or structured JSON, and outputs are either human-readable or machine-parseable JSON, containing only the promised payload without extraneous data.",{"category":54,"check":55,"severity":24,"summary":56},"License","License usability","The extension is licensed under the Apache-2.0 license, as indicated by the LICENSE file and explicitly stated in the README, which is a permissive OSS license.",{"category":58,"check":59,"severity":24,"summary":60},"Maintenance","Commit recency","The repository shows recent commits within the last 12 months, indicating active maintenance.",{"category":58,"check":62,"severity":24,"summary":63},"Dependency Management","The extension uses standard Python dependencies managed via pip, and the presence of a lockfile (implied by `pip install` with standard tooling) suggests good dependency management.",{"category":65,"check":66,"severity":24,"summary":67},"Security","Secret Management","API keys can be provided via environment variables or flags, and the documentation emphasizes secure handling, with no hardcoded secrets or echoing of resolved keys.",{"category":65,"check":69,"severity":24,"summary":70},"Injection","The CLI operates on Obsidian notes and commands via a structured API, with no indication of loading or executing untrusted third-party data as instructions.",{"category":65,"check":72,"severity":24,"summary":73},"Transitive Supply-Chain Grenades","The extension relies on installed Python packages and interacts with a local API; there are no runtime downloads or execution of external scripts or code.",{"category":65,"check":75,"severity":24,"summary":76},"Sandbox Isolation","The CLI operates on files within the Obsidian vault and interacts with a local API. All paths are relative to the vault or configured host, and no operations outside of Obsidian are performed.",{"category":65,"check":78,"severity":24,"summary":79},"Sandbox escape primitives","No detached process spawns or retry loops around denied tool calls were detected in the provided source code snippets.",{"category":65,"check":81,"severity":24,"summary":82},"Data Exfiltration","The extension interacts with a local Obsidian API and does not submit any confidential data to third parties. Outbound calls are limited to the configured Obsidian API endpoint.",{"category":65,"check":84,"severity":24,"summary":85},"Hidden Text Tricks","Bundled content and descriptions appear free of hidden steering tricks, invisible characters, or malformed markup.",{"category":87,"check":88,"severity":24,"summary":89},"Hooks","Opaque code execution","The provided source code is plain Python using the Click library, with no obfuscation, base64 payloads, or runtime code fetching.",{"category":91,"check":92,"severity":24,"summary":93},"Portability","Structural Assumption","The CLI operates within the Obsidian vault structure and relies on the Obsidian Local REST API, making no assumptions about user-specific project layouts outside of Obsidian.",{"category":95,"check":96,"severity":24,"summary":97},"Trust","Issues Attention","With 35 issues opened and 48 closed in the last 90 days, the closure rate is sufficient, indicating good maintainer engagement.",{"category":99,"check":100,"severity":24,"summary":101},"Versioning","Release Management","The extension declares version '1.0.0' in its SKILL.md frontmatter, providing a clear version signal.",{"category":103,"check":104,"severity":24,"summary":105},"Execution","Validation","Input arguments such as file paths and API keys are handled through Click's argument parsing, implying basic validation. JSON output is also specified.",{"category":65,"check":107,"severity":24,"summary":108},"Unguarded Destructive Operations","Destructive operations like delete and update are guarded by explicit commands and require user invocation, with no silent or automatic execution.",{"category":110,"check":111,"severity":24,"summary":112},"Code Execution","Error Handling","The CLI uses Click for argument parsing and provides clear error messages for invalid commands or API interactions, and Python's exception handling is present.",{"category":110,"check":114,"severity":115,"summary":116},"Logging","not_applicable","The skill is not primarily destructive or outbound-calling in a way that necessitates a local audit file beyond standard command execution logging.",{"category":118,"check":119,"severity":115,"summary":120},"Compliance","GDPR","The extension operates on local Obsidian notes and does not handle or transmit personal data to third parties.",{"category":118,"check":122,"severity":24,"summary":123},"Target market","The extension operates on local files and APIs, making it globally applicable with no regional restrictions.",{"category":91,"check":125,"severity":24,"summary":126},"Runtime stability","The CLI is written in Python and uses standard libraries, ensuring broad compatibility across POSIX-compliant systems and with Python 3.10+.",{"category":44,"check":128,"severity":24,"summary":129},"README","A comprehensive README file is present, clearly detailing the extension's purpose, installation, usage, and examples.",{"category":33,"check":131,"severity":24,"summary":132},"Tool surface size","The extension exposes a reasonable number of tools (around 30 commands across several groups), fitting within the target range.",{"category":40,"check":134,"severity":24,"summary":135},"Overlapping near-synonym tools","Tool names are distinct and cover specific actions, avoiding near-synonyms like 'search' and 'query' for overlapping purposes.",{"category":44,"check":137,"severity":24,"summary":138},"Phantom features","All advertised features, such as vault management, search, and command execution, have corresponding implementations in the CLI.",{"category":140,"check":141,"severity":24,"summary":142},"Install","Installation instruction","Clear installation instructions using `pip` are provided in the SKILL.md and README, along with copy-pasteable usage examples.",{"category":144,"check":145,"severity":24,"summary":146},"Errors","Actionable error messages","Errors related to invalid commands, API issues, or file operations provide clear messages indicating the failure and often suggesting remediation steps.",{"category":103,"check":148,"severity":149,"summary":150},"Pinned dependencies","info","While Python dependencies are used, explicit lockfile pinning details are not immediately visible in the provided source, though standard `pip install` implies a level of dependency resolution.",{"category":33,"check":152,"severity":115,"summary":153},"Dry-run preview","The extension primarily interacts with a local API and file system. Operations like 'delete' or 'update' are user-initiated commands, and a dedicated dry-run mode is not explicitly documented but implied by explicit user command.",{"category":155,"check":156,"severity":115,"summary":157},"Protocol","Idempotent retry & timeouts","The extension interacts with a local API and file system. Idempotency and timeouts are likely handled by the underlying Obsidian API or standard Python libraries, not explicitly detailed here.",{"category":118,"check":159,"severity":24,"summary":160},"Telemetry opt-in","No telemetry collection is mentioned or apparent in the provided source code or documentation.",{"category":40,"check":162,"severity":24,"summary":163},"Precise Purpose","The description clearly states the extension's purpose: a CLI for Obsidian's Local REST API for knowledge management, specifically for AI agents and power users, with clear triggers like managing notes and searching vaults.",{"category":40,"check":165,"severity":24,"summary":166},"Concise Frontmatter","The frontmatter is concise, clearly defining the CLI's purpose and target audience without excessive keywords or verbosity.",{"category":44,"check":168,"severity":24,"summary":169},"Concise Body","The SKILL.md and README are well-structured, under reasonable length, and delegate detailed information appropriately.",{"category":171,"check":172,"severity":24,"summary":173},"Context","Progressive Disclosure","The SKILL.md effectively outlines commands and links to the README for more detailed explanations, adhering to progressive disclosure principles.",{"category":171,"check":175,"severity":115,"summary":176},"Forked exploration","This skill is a command-line tool and does not involve deep exploration that would require 'context: fork'.",{"category":22,"check":178,"severity":24,"summary":179},"Usage examples","Multiple clear, end-to-end examples are provided for various commands, demonstrating input, invocation, and expected output.",{"category":22,"check":181,"severity":24,"summary":182},"Edge cases","The documentation implicitly handles edge cases by defining clear command structures and parameter expectations. Error handling suggests recovery paths for API or file-related issues.",{"category":110,"check":184,"severity":115,"summary":185},"Tool Fallback","The skill does not rely on external MCP servers or tools that would require a fallback path. It interacts directly with the Obsidian Local REST API.",{"category":187,"check":188,"severity":24,"summary":189},"Safety","Halt on unexpected state","The CLI is designed to report errors clearly, and commands like 'delete' require explicit invocation, implying a halt on unexpected states without proceeding destructively.",{"category":91,"check":191,"severity":24,"summary":192},"Cross-skill coupling","The skill is self-contained and focuses exclusively on Obsidian interactions, with no implicit reliance on other skills.",1778689420685,"This is a Python-based command-line interface (CLI) for interacting with Obsidian via its Local REST API. It allows users to manage notes, search the vault, execute Obsidian commands, and check server status without using the Obsidian GUI. It supports JSON output for agent consumption and configurable API keys/host URLs.",[196,197,198,199,200,201,202,203],"Vault file management (list, read, create, update, delete, append)","Obsidian query syntax and plain text search","Active note status and opening notes","Listing and executing Obsidian commands","Checking Obsidian Local REST API server status","Interactive REPL mode with tab completion","JSON output for agent consumption","API key and host URL configuration",[205,206,207],"Directly managing Obsidian application settings beyond API key/host configuration.","Providing a graphical user interface; it is strictly a command-line tool.","Interacting with Obsidian vaults on non-local systems without proper network configuration.","3.0.0","4.4.0","To provide AI agents and power users with a command-line interface for managing Obsidian notes and knowledge graphs without needing to open the GUI.","The extension is well-documented, secure, and provides a clear, focused utility for Obsidian users and AI agents. A minor info finding on dependency pinning was noted, but overall quality is very high.",95,"A high-quality CLI for Obsidian, offering robust knowledge management and note-taking capabilities for AI agents and power users.",[215,216,217,218,219],"obsidian","knowledge-management","rest-api","cli","notes","global","verified",[223,224,225,226],"Automating note creation and organization in Obsidian via AI agents.","Searching and retrieving information from an Obsidian vault programmatically.","Executing Obsidian editor commands or application functions via script.","Integrating Obsidian note-taking into AI-driven workflows without GUI interaction.",{"codeQuality":228,"collectedAt":230,"documentation":231,"maintenance":234,"security":241,"testCoverage":243},{"hasLockfile":229},true,1778689401162,{"descriptionLength":232,"readmeSize":233},224,65157,{"closedIssues90d":235,"forks":236,"hasChangelog":237,"openIssues90d":238,"pushedAt":239,"stars":240},48,3364,false,35,1778662207000,34376,{"hasNpmPackage":237,"license":242,"smitheryVerified":237},"Apache-2.0",{"hasCi":229,"hasTests":229},{"updatedAt":245},1778689420999,{"basePath":247,"githubOwner":248,"githubRepo":249,"locale":18,"slug":13,"type":250},"skills/cli-anything-obsidian","hkuds","cli-anything","skill",null,{"evaluate":253,"extract":255},{"promptVersionExtension":208,"promptVersionScoring":209,"score":212,"tags":254,"targetMarket":220,"tier":221},[215,216,217,218,219],{"commitSha":256},"HEAD",{"repoId":258},"kd7e2bra4ymb6r521a25r6yges86n35p",{"_creationTime":260,"_id":258,"identity":261,"providers":262,"workflow":815},1778688407288.288,{"githubOwner":248,"githubRepo":249,"sourceUrl":14},{"classify":263,"discover":808,"github":811},{"commitSha":256,"extensions":264},[265,281,301,310,318,326,334,342,350,358,365,373,381,388,396,404,412,420,428,436,444,452,460,468,476,484,492,500,508,516,524,532,540,548,556,564,572,580,588,596,604,609,617,625,633,641,649,657,665,673,681,689,696,703,710,717,725,733,741,749,757,765,773,780,793,800],{"basePath":266,"description":267,"displayName":249,"installMethods":268,"rationale":269,"selectedPaths":270,"source":279,"sourceLanguage":18,"type":280},"","Build powerful, stateful CLI interfaces for any GUI application using the cli-anything harness methodology.",{"claudeCode":12},"marketplace.json at .claude-plugin/marketplace.json",[271,274,276],{"path":272,"priority":273},".claude-plugin/marketplace.json","mandatory",{"path":275,"priority":273},"README.md",{"path":277,"priority":278},"LICENSE","high","rule","marketplace",{"basePath":282,"description":267,"displayName":249,"installMethods":283,"rationale":284,"selectedPaths":285,"source":279,"sourceLanguage":18,"type":300},"cli-anything-plugin",{"claudeCode":249},"plugin manifest at cli-anything-plugin/.claude-plugin/plugin.json",[286,288,289,290,292,294,296,298],{"path":287,"priority":273},".claude-plugin/plugin.json",{"path":275,"priority":273},{"path":277,"priority":278},{"path":291,"priority":278},"commands/cli-anything.md",{"path":293,"priority":278},"commands/list.md",{"path":295,"priority":278},"commands/refine.md",{"path":297,"priority":278},"commands/test.md",{"path":299,"priority":278},"commands/validate.md","plugin",{"basePath":302,"description":303,"displayName":304,"installMethods":305,"rationale":306,"selectedPaths":307,"source":279,"sourceLanguage":18,"type":250},"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)",[308],{"path":309,"priority":273},"SKILL.md",{"basePath":311,"description":312,"displayName":313,"installMethods":314,"rationale":315,"selectedPaths":316,"source":279,"sourceLanguage":18,"type":250},"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)",[317],{"path":309,"priority":273},{"basePath":319,"description":320,"displayName":321,"installMethods":322,"rationale":323,"selectedPaths":324,"source":279,"sourceLanguage":18,"type":250},"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)",[325],{"path":309,"priority":273},{"basePath":327,"description":328,"displayName":329,"installMethods":330,"rationale":331,"selectedPaths":332,"source":279,"sourceLanguage":18,"type":250},"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)",[333],{"path":309,"priority":273},{"basePath":335,"description":336,"displayName":337,"installMethods":338,"rationale":339,"selectedPaths":340,"source":279,"sourceLanguage":18,"type":250},"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)",[341],{"path":309,"priority":273},{"basePath":343,"description":344,"displayName":345,"installMethods":346,"rationale":347,"selectedPaths":348,"source":279,"sourceLanguage":18,"type":250},"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)",[349],{"path":309,"priority":273},{"basePath":351,"description":352,"displayName":353,"installMethods":354,"rationale":355,"selectedPaths":356,"source":279,"sourceLanguage":18,"type":250},"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)",[357],{"path":309,"priority":273},{"basePath":359,"description":360,"displayName":359,"installMethods":361,"rationale":362,"selectedPaths":363,"source":279,"sourceLanguage":18,"type":250},"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)",[364],{"path":309,"priority":273},{"basePath":366,"description":367,"displayName":368,"installMethods":369,"rationale":370,"selectedPaths":371,"source":279,"sourceLanguage":18,"type":250},"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)",[372],{"path":309,"priority":273},{"basePath":374,"description":375,"displayName":376,"installMethods":377,"rationale":378,"selectedPaths":379,"source":279,"sourceLanguage":18,"type":250},"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)",[380],{"path":309,"priority":273},{"basePath":382,"description":383,"displayName":249,"installMethods":384,"rationale":385,"selectedPaths":386,"source":279,"sourceLanguage":18,"type":250},"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)",[387],{"path":309,"priority":273},{"basePath":389,"description":390,"displayName":391,"installMethods":392,"rationale":393,"selectedPaths":394,"source":279,"sourceLanguage":18,"type":250},"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)",[395],{"path":309,"priority":273},{"basePath":397,"description":398,"displayName":399,"installMethods":400,"rationale":401,"selectedPaths":402,"source":279,"sourceLanguage":18,"type":250},"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)",[403],{"path":309,"priority":273},{"basePath":405,"description":406,"displayName":407,"installMethods":408,"rationale":409,"selectedPaths":410,"source":279,"sourceLanguage":18,"type":250},"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)",[411],{"path":309,"priority":273},{"basePath":413,"description":414,"displayName":415,"installMethods":416,"rationale":417,"selectedPaths":418,"source":279,"sourceLanguage":18,"type":250},"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)",[419],{"path":309,"priority":273},{"basePath":421,"description":422,"displayName":423,"installMethods":424,"rationale":425,"selectedPaths":426,"source":279,"sourceLanguage":18,"type":250},"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)",[427],{"path":309,"priority":273},{"basePath":429,"description":430,"displayName":431,"installMethods":432,"rationale":433,"selectedPaths":434,"source":279,"sourceLanguage":18,"type":250},"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)",[435],{"path":309,"priority":273},{"basePath":437,"description":438,"displayName":439,"installMethods":440,"rationale":441,"selectedPaths":442,"source":279,"sourceLanguage":18,"type":250},"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)",[443],{"path":309,"priority":273},{"basePath":445,"description":446,"displayName":447,"installMethods":448,"rationale":449,"selectedPaths":450,"source":279,"sourceLanguage":18,"type":250},"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)",[451],{"path":309,"priority":273},{"basePath":453,"description":454,"displayName":455,"installMethods":456,"rationale":457,"selectedPaths":458,"source":279,"sourceLanguage":18,"type":250},"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)",[459],{"path":309,"priority":273},{"basePath":461,"description":462,"displayName":463,"installMethods":464,"rationale":465,"selectedPaths":466,"source":279,"sourceLanguage":18,"type":250},"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)",[467],{"path":309,"priority":273},{"basePath":469,"description":470,"displayName":471,"installMethods":472,"rationale":473,"selectedPaths":474,"source":279,"sourceLanguage":18,"type":250},"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)",[475],{"path":309,"priority":273},{"basePath":477,"description":478,"displayName":479,"installMethods":480,"rationale":481,"selectedPaths":482,"source":279,"sourceLanguage":18,"type":250},"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)",[483],{"path":309,"priority":273},{"basePath":485,"description":486,"displayName":487,"installMethods":488,"rationale":489,"selectedPaths":490,"source":279,"sourceLanguage":18,"type":250},"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)",[491],{"path":309,"priority":273},{"basePath":493,"description":494,"displayName":495,"installMethods":496,"rationale":497,"selectedPaths":498,"source":279,"sourceLanguage":18,"type":250},"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)",[499],{"path":309,"priority":273},{"basePath":501,"description":502,"displayName":503,"installMethods":504,"rationale":505,"selectedPaths":506,"source":279,"sourceLanguage":18,"type":250},"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)",[507],{"path":309,"priority":273},{"basePath":509,"description":510,"displayName":511,"installMethods":512,"rationale":513,"selectedPaths":514,"source":279,"sourceLanguage":18,"type":250},"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)",[515],{"path":309,"priority":273},{"basePath":517,"description":518,"displayName":519,"installMethods":520,"rationale":521,"selectedPaths":522,"source":279,"sourceLanguage":18,"type":250},"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)",[523],{"path":309,"priority":273},{"basePath":525,"description":526,"displayName":527,"installMethods":528,"rationale":529,"selectedPaths":530,"source":279,"sourceLanguage":18,"type":250},"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)",[531],{"path":309,"priority":273},{"basePath":533,"description":534,"displayName":535,"installMethods":536,"rationale":537,"selectedPaths":538,"source":279,"sourceLanguage":18,"type":250},"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)",[539],{"path":309,"priority":273},{"basePath":541,"description":542,"displayName":543,"installMethods":544,"rationale":545,"selectedPaths":546,"source":279,"sourceLanguage":18,"type":250},"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)",[547],{"path":309,"priority":273},{"basePath":549,"description":550,"displayName":551,"installMethods":552,"rationale":553,"selectedPaths":554,"source":279,"sourceLanguage":18,"type":250},"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",[555],{"path":309,"priority":273},{"basePath":557,"description":558,"displayName":559,"installMethods":560,"rationale":561,"selectedPaths":562,"source":279,"sourceLanguage":18,"type":250},"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)",[563],{"path":309,"priority":273},{"basePath":565,"description":566,"displayName":567,"installMethods":568,"rationale":569,"selectedPaths":570,"source":279,"sourceLanguage":18,"type":250},"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)",[571],{"path":309,"priority":273},{"basePath":573,"description":574,"displayName":575,"installMethods":576,"rationale":577,"selectedPaths":578,"source":279,"sourceLanguage":18,"type":250},"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)",[579],{"path":309,"priority":273},{"basePath":581,"description":582,"displayName":583,"installMethods":584,"rationale":585,"selectedPaths":586,"source":279,"sourceLanguage":18,"type":250},"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)",[587],{"path":309,"priority":273},{"basePath":589,"description":590,"displayName":591,"installMethods":592,"rationale":593,"selectedPaths":594,"source":279,"sourceLanguage":18,"type":250},"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)",[595],{"path":309,"priority":273},{"basePath":597,"description":598,"displayName":599,"installMethods":600,"rationale":601,"selectedPaths":602,"source":279,"sourceLanguage":18,"type":250},"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",[603],{"path":309,"priority":273},{"basePath":247,"description":10,"displayName":13,"installMethods":605,"rationale":606,"selectedPaths":607,"source":279,"sourceLanguage":18,"type":250},{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-obsidian/SKILL.md (coalesced with duplicate skill at obsidian/agent-harness/cli_anything/obsidian/skills)",[608],{"path":309,"priority":273},{"basePath":610,"description":611,"displayName":612,"installMethods":613,"rationale":614,"selectedPaths":615,"source":279,"sourceLanguage":18,"type":250},"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)",[616],{"path":309,"priority":273},{"basePath":618,"description":619,"displayName":620,"installMethods":621,"rationale":622,"selectedPaths":623,"source":279,"sourceLanguage":18,"type":250},"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)",[624],{"path":309,"priority":273},{"basePath":626,"description":627,"displayName":628,"installMethods":629,"rationale":630,"selectedPaths":631,"source":279,"sourceLanguage":18,"type":250},"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)",[632],{"path":309,"priority":273},{"basePath":634,"description":635,"displayName":636,"installMethods":637,"rationale":638,"selectedPaths":639,"source":279,"sourceLanguage":18,"type":250},"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",[640],{"path":309,"priority":273},{"basePath":642,"description":643,"displayName":644,"installMethods":645,"rationale":646,"selectedPaths":647,"source":279,"sourceLanguage":18,"type":250},"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)",[648],{"path":309,"priority":273},{"basePath":650,"description":651,"displayName":652,"installMethods":653,"rationale":654,"selectedPaths":655,"source":279,"sourceLanguage":18,"type":250},"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)",[656],{"path":309,"priority":273},{"basePath":658,"description":659,"displayName":660,"installMethods":661,"rationale":662,"selectedPaths":663,"source":279,"sourceLanguage":18,"type":250},"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)",[664],{"path":309,"priority":273},{"basePath":666,"description":667,"displayName":668,"installMethods":669,"rationale":670,"selectedPaths":671,"source":279,"sourceLanguage":18,"type":250},"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)",[672],{"path":309,"priority":273},{"basePath":674,"description":675,"displayName":676,"installMethods":677,"rationale":678,"selectedPaths":679,"source":279,"sourceLanguage":18,"type":250},"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)",[680],{"path":309,"priority":273},{"basePath":682,"description":683,"displayName":684,"installMethods":685,"rationale":686,"selectedPaths":687,"source":279,"sourceLanguage":18,"type":250},"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)",[688],{"path":309,"priority":273},{"basePath":690,"description":478,"displayName":691,"installMethods":692,"rationale":693,"selectedPaths":694,"source":279,"sourceLanguage":18,"type":250},"skills/cli-anything-iterm2-ctl","cli-anything-iterm2-ctl",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-iterm2-ctl/SKILL.md",[695],{"path":309,"priority":273},{"basePath":697,"description":550,"displayName":698,"installMethods":699,"rationale":700,"selectedPaths":701,"source":279,"sourceLanguage":18,"type":250},"skills/cli-anything-musescore","cli-anything-musescore",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-musescore/SKILL.md",[702],{"path":309,"priority":273},{"basePath":704,"description":598,"displayName":705,"installMethods":706,"rationale":707,"selectedPaths":708,"source":279,"sourceLanguage":18,"type":250},"skills/cli-anything-obs-studio","cli-anything-obs-studio",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-obs-studio/SKILL.md",[709],{"path":309,"priority":273},{"basePath":711,"description":635,"displayName":712,"installMethods":713,"rationale":714,"selectedPaths":715,"source":279,"sourceLanguage":18,"type":250},"skills/cli-anything-quietshrink","cli-anything-quietshrink",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-quietshrink/SKILL.md",[716],{"path":309,"priority":273},{"basePath":718,"description":719,"displayName":720,"installMethods":721,"rationale":722,"selectedPaths":723,"source":279,"sourceLanguage":18,"type":250},"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",[724],{"path":309,"priority":273},{"basePath":726,"description":727,"displayName":728,"installMethods":729,"rationale":730,"selectedPaths":731,"source":279,"sourceLanguage":18,"type":250},"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)",[732],{"path":309,"priority":273},{"basePath":734,"description":735,"displayName":736,"installMethods":737,"rationale":738,"selectedPaths":739,"source":279,"sourceLanguage":18,"type":250},"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)",[740],{"path":309,"priority":273},{"basePath":742,"description":743,"displayName":744,"installMethods":745,"rationale":746,"selectedPaths":747,"source":279,"sourceLanguage":18,"type":250},"skills/cli-anything-videocaptioner","AI-powered video captioning — transcribe speech, optimize/translate subtitles, and burn them into video via the stable VideoCaptioner backend. Free ASR and translation included.","cli-anything-videocaptioner",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-videocaptioner/SKILL.md (coalesced with duplicate skill at videocaptioner/agent-harness/cli_anything/videocaptioner/skills)",[748],{"path":309,"priority":273},{"basePath":750,"description":751,"displayName":752,"installMethods":753,"rationale":754,"selectedPaths":755,"source":279,"sourceLanguage":18,"type":250},"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)",[756],{"path":309,"priority":273},{"basePath":758,"description":759,"displayName":760,"installMethods":761,"rationale":762,"selectedPaths":763,"source":279,"sourceLanguage":18,"type":250},"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)",[764],{"path":309,"priority":273},{"basePath":766,"description":767,"displayName":768,"installMethods":769,"rationale":770,"selectedPaths":771,"source":279,"sourceLanguage":18,"type":250},"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)",[772],{"path":309,"priority":273},{"basePath":774,"description":719,"displayName":775,"installMethods":776,"rationale":777,"selectedPaths":778,"source":279,"sourceLanguage":18,"type":250},"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",[779],{"path":309,"priority":273},{"basePath":781,"description":782,"displayName":783,"installMethods":784,"rationale":785,"selectedPaths":786,"source":279,"sourceLanguage":18,"type":218},"sketch/agent-harness","CLI tool to generate Sketch files from JSON design specs — CLI-Anything harness for Sketch","sketch-harness",{"npm":783},"cli ecosystem detected at sketch/agent-harness",[787,789,790],{"path":788,"priority":273},"package.json",{"path":275,"priority":273},{"path":791,"priority":792},"src/cli.js","medium",{"basePath":794,"installMethods":795,"rationale":796,"selectedPaths":797,"source":279,"sourceLanguage":18,"type":218},"exa/agent-harness",{"pypi":423},"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)",[798],{"path":799,"priority":273},"setup.py",{"basePath":801,"installMethods":802,"rationale":804,"selectedPaths":805,"source":279,"sourceLanguage":18,"type":218},"cli-hub",{"pypi":803},"cli-anything-hub","cli ecosystem detected at cli-hub",[806,807],{"path":799,"priority":273},{"path":275,"priority":273},{"sources":809},[810],"manual",{"closedIssues90d":235,"description":812,"forks":236,"homepage":813,"license":242,"openIssues90d":238,"pushedAt":239,"readmeSize":233,"stars":240,"topics":814},"\"CLI-Anything: Making ALL Software Agent-Native\" -- CLI-Hub: https://clianything.cc/","https://clianything.cc/",[],{"classifiedAt":816,"discoverAt":817,"extractAt":818,"githubAt":818,"updatedAt":816},1778688417516,1778688407288,1778688414240,[218,216,219,215,217],{"evaluatedAt":245,"extractAt":821,"updatedAt":245},1778688417732,[],[824,857,883,910,939,970],{"_creationTime":825,"_id":826,"community":827,"display":828,"identity":834,"providers":839,"relations":850,"tags":853,"workflow":854},1778675056600.2317,"k17cxt9ps1s1vkzp0d0eq7pkt986m6gg",{"reviewCount":8},{"description":829,"installMethods":830,"name":832,"sourceUrl":833},"Use when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include \"second brain\", \"Obsidian wiki\", \"personal knowledge management\", \"ingest this paper/article/book\", \"build a research wiki\", \"compound knowledge\", \"Memex\", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.",{"claudeCode":831},"alirezarezvani/claude-skills","LLM Wiki","https://github.com/alirezarezvani/claude-skills",{"basePath":835,"githubOwner":836,"githubRepo":837,"locale":18,"slug":838,"type":250},"engineering/llm-wiki/skills/llm-wiki","alirezarezvani","claude-skills","llm-wiki",{"evaluate":840,"extract":848},{"promptVersionExtension":208,"promptVersionScoring":209,"score":841,"tags":842,"targetMarket":220,"tier":221},100,[216,215,843,844,845,846,847],"second-brain","pkm","rag-alternative","wiki","personal-knowledge-management",{"commitSha":256,"license":849},"MIT",{"parentExtensionId":851,"repoId":852},"k171h6s4fcrd2pepndhe1tnjgd86mbgr","kd7ff9s1w43mfyy1n7hf87816186m6px",[216,215,847,844,845,843,846],{"evaluatedAt":855,"extractAt":856,"updatedAt":855},1778678327640,1778675056600,{"_creationTime":858,"_id":859,"community":860,"display":861,"identity":866,"providers":870,"relations":877,"tags":879,"workflow":880},1778697652123.8955,"k172pxq3fnvt4a5wb6ag0mxgf586m250",{"reviewCount":8},{"description":862,"installMethods":863,"name":215,"sourceUrl":865},"Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.",{"claudeCode":864},"steipete/clawdis","https://github.com/steipete/clawdis",{"basePath":867,"githubOwner":868,"githubRepo":869,"locale":18,"slug":215,"type":250},"skills/obsidian","steipete","clawdis",{"evaluate":871,"extract":876},{"promptVersionExtension":208,"promptVersionScoring":209,"score":872,"tags":873,"targetMarket":220,"tier":221},97,[215,219,874,218,875],"markdown","automation",{"commitSha":256},{"repoId":878},"kd738npxg9yh3xf3vddzy9fyfh86nhng",[875,218,874,219,215],{"evaluatedAt":881,"extractAt":882,"updatedAt":881},1778698766825,1778697652123,{"_creationTime":884,"_id":885,"community":886,"display":887,"identity":893,"providers":896,"relations":904,"tags":906,"workflow":907},1778692846401.1526,"k177py8t3j3sh4x6pq8kfzztfx86mnr0",{"reviewCount":8},{"description":888,"installMethods":889,"name":891,"sourceUrl":892},"Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.",{"claudeCode":890},"mattpocock/skills","obsidian-vault","https://github.com/mattpocock/skills",{"basePath":894,"githubOwner":895,"githubRepo":599,"locale":18,"slug":891,"type":250},"skills/personal/obsidian-vault","mattpocock",{"evaluate":897,"extract":903},{"promptVersionExtension":208,"promptVersionScoring":209,"score":898,"tags":899,"targetMarket":220,"tier":221},96,[219,215,900,901,902],"file-management","search","wikilinks",{"commitSha":256},{"repoId":905},"kd70nm2vazehgqc4j28ve6cwv986mv1s",[900,219,215,901,902],{"evaluatedAt":908,"extractAt":909,"updatedAt":908},1778693438763,1778692846401,{"_creationTime":911,"_id":912,"community":913,"display":914,"identity":920,"providers":924,"relations":933,"tags":935,"workflow":936},1778686012417.8306,"k174h7a286wwq983v6g606d1j986mpcn",{"reviewCount":8},{"description":915,"installMethods":916,"name":918,"sourceUrl":919},"Obsidian vault as persistent memory — daily notes, session logs, knowledge capture, and search across your entire vault.",{"claudeCode":917},"daxaur/openpaw","c-obsidian","https://github.com/daxaur/openpaw",{"basePath":921,"githubOwner":922,"githubRepo":923,"locale":18,"slug":918,"type":250},"skills/c-obsidian","daxaur","openpaw",{"evaluate":925,"extract":932},{"promptVersionExtension":208,"promptVersionScoring":209,"score":926,"tags":927,"targetMarket":220,"tier":931},76,[215,219,928,929,930,218],"knowledge-base","memory","daily-notes","flagged",{"commitSha":256,"license":849},{"repoId":934},"kd7bwdbyne8rrdfxt9ahxb6ved86mk9b",[218,930,928,929,219,215],{"evaluatedAt":937,"extractAt":938,"updatedAt":937},1778686650587,1778686012417,{"_creationTime":940,"_id":941,"community":942,"display":943,"identity":949,"providers":954,"relations":963,"tags":966,"workflow":967},1778696691708.3274,"k170az7r02e9e2v47mpy80kx6n86nff3",{"reviewCount":8},{"description":944,"installMethods":945,"name":947,"sourceUrl":948},"Detect current market regime using npx neural-trader — bull/bear/ranging/volatile classification with recommended strategy",{"claudeCode":946},"ruvnet/ruflo","Trader Regime","https://github.com/ruvnet/ruflo",{"basePath":950,"githubOwner":951,"githubRepo":952,"locale":18,"slug":953,"type":250},"plugins/ruflo-neural-trader/skills/trader-regime","ruvnet","ruflo","trader-regime",{"evaluate":955,"extract":962},{"promptVersionExtension":208,"promptVersionScoring":209,"score":841,"tags":956,"targetMarket":220,"tier":221},[957,958,959,960,961,218],"finance","trading","market-analysis","ai","typescript",{"commitSha":256,"license":849},{"parentExtensionId":964,"repoId":965},"k17drge8h1fgzchr0p4jaeg33n86mwmy","kd7ed28gj8n0y3msk5dzrp05zs86nqtc",[960,218,957,959,958,961],{"evaluatedAt":968,"extractAt":969,"updatedAt":968},1778701108877,1778696691708,{"_creationTime":971,"_id":972,"community":973,"display":974,"identity":980,"providers":984,"relations":991,"tags":994,"workflow":995},1778699234184.6174,"k174zww66m804nhr89ttra7r6d86nwyg",{"reviewCount":8},{"description":975,"installMethods":976,"name":978,"sourceUrl":979},"Use first for install/update routing — sends setup, doctor, or MCP requests to the correct OMC setup flow",{"claudeCode":977},"Yeachan-Heo/oh-my-claudecode","setup","https://github.com/Yeachan-Heo/oh-my-claudecode",{"basePath":981,"githubOwner":982,"githubRepo":983,"locale":18,"slug":978,"type":250},"skills/setup","Yeachan-Heo","oh-my-claudecode",{"evaluate":985,"extract":990},{"promptVersionExtension":208,"promptVersionScoring":209,"score":841,"tags":986,"targetMarket":220,"tier":221},[978,987,988,218,989],"routing","configuration","mcp",{"commitSha":256},{"parentExtensionId":992,"repoId":993},"k17brg5egdw1jbncj1j4wfv3fh86n639","kd74zv63fryf9prygtq7gf4es986n22y",[218,988,989,987,978],{"evaluatedAt":996,"extractAt":997,"updatedAt":996},1778699724286,1778699234184]