[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"extension-skill-hkuds-cli-anything-exa-en":3,"guides-for-hkuds-cli-anything-exa":832,"similar-k174fa4ch1pedjmnc79b4faew986n9pm-en":833},{"_creationTime":4,"_id":5,"children":6,"community":7,"display":9,"evaluation":15,"identity":256,"isFallback":247,"parentExtension":261,"providers":262,"relations":267,"repo":269,"tags":829,"workflow":830},1778688417731.9495,"k174fa4ch1pedjmnc79b4faew986n9pm",[],{"reviewCount":8},0,{"description":10,"installMethods":11,"name":13,"sourceUrl":14},"Agent-native CLI for Exa web search and content retrieval workflows.",{"claudeCode":12},"hkuds/cli-anything","cli-anything-exa","https://github.com/hkuds/cli-anything",{"_creationTime":16,"_id":17,"extensionId":5,"locale":18,"result":19,"trustSignals":237,"workflow":254},1778688857235.0981,"kn72g05bv6k41bv08my40cyj3986m9p0","en",{"checks":20,"evaluatedAt":194,"extensionSummary":195,"features":196,"nonGoals":202,"practices":206,"prerequisites":207,"promptVersionExtension":211,"promptVersionScoring":212,"purpose":213,"rationale":214,"score":215,"summary":216,"tags":217,"targetMarket":224,"tier":225,"useCases":226,"workflow":231},[21,26,29,32,36,39,43,44,47,51,54,57,61,65,68,73,76,79,82,85,88,91,95,99,103,107,111,114,118,123,127,130,133,136,139,142,145,149,152,155,158,162,165,168,171,175,178,181,184,187,191],{"category":22,"check":23,"severity":24,"summary":25},"Practical Utility","Problem relevance","pass","The description clearly states that the extension is for Exa web search and content retrieval workflows, addressing a specific user need for agent-native search capabilities.",{"category":22,"check":27,"severity":24,"summary":28},"Unique selling proposition","This skill offers significant value by providing an agent-native interface to the Exa API, which is a neural search engine optimized for AI agent workflows. It goes beyond a simple API wrapper by offering various search modes and content retrieval options tailored for AI agents.",{"category":22,"check":30,"severity":24,"summary":31},"Production readiness","The CLI supports multiple search types, content retrieval, and provides JSON output, covering a complete workflow for agent-driven content retrieval. Prerequisites and installation are clearly documented.",{"category":33,"check":34,"severity":24,"summary":35},"Scope","Single responsibility principle","The skill is focused on Exa web search and content retrieval, aligning with its description and not extending into unrelated domains.",{"category":33,"check":37,"severity":24,"summary":38},"Description quality","The displayed description accurately reflects the skill's purpose as an agent-native CLI for Exa web search and content retrieval.",{"category":40,"check":41,"severity":24,"summary":42},"Invocation","Precise Purpose","The SKILL.md clearly defines the purpose as providing an agent-native CLI for Exa API workflows, specifying supported search modes and content fetching. It implicitly guides usage by listing specific commands and patterns.",{"category":40,"check":41,"severity":24,"summary":42},{"category":33,"check":45,"severity":24,"summary":46},"Scoped tools","Tools are well-scoped verb-noun specialists like 'search', 'contents', and 'server status', avoiding generalist command execution.",{"category":48,"check":49,"severity":24,"summary":50},"Documentation","Configuration & parameter reference","All command options, including defaults and acceptable values (e.g., for `--type`, `--num-results`), are clearly documented in the Command Reference section.",{"category":33,"check":52,"severity":24,"summary":53},"Tool naming","Tool names like 'search', 'contents', and 'server status' are descriptive and clearly indicate their function.",{"category":33,"check":55,"severity":24,"summary":56},"Minimal I/O surface","Input parameters are specific flags with documented constraints, and the `--json` output provides structured data without extraneous information.",{"category":58,"check":59,"severity":24,"summary":60},"License","License usability","The extension is licensed under the Apache-2.0 license, which is a permissive open-source license, and this is declared in the LICENSE file and mentioned in the README.",{"category":62,"check":63,"severity":24,"summary":64},"Maintenance","Commit recency","The repository shows recent commits, indicating active maintenance.",{"category":62,"check":66,"severity":24,"summary":67},"Dependency Management","Dependencies are managed via pip and listed in setup.py, with lockfiles likely implied by typical Python packaging practices for production readiness.",{"category":69,"check":70,"severity":71,"summary":72},"Security","Secret Management","warning","The `EXA_API_KEY` is required via an environment variable, and while the README states to 'export' it, it doesn't explicitly detail how to handle it securely within an agent context, risking accidental exposure if not managed properly.",{"category":69,"check":74,"severity":24,"summary":75},"Injection","The extension appears to handle user input safely by expecting it as quoted strings for queries and URLs, and command options are specified via flags, mitigating direct injection risks.",{"category":69,"check":77,"severity":24,"summary":78},"Transitive Supply-Chain Grenades","The skill relies on the `exa-py` SDK and standard Python packages, all of which are typically bundled or installed via pip, and there's no indication of runtime fetching of external code.",{"category":69,"check":80,"severity":24,"summary":81},"Sandbox Isolation","As a Python CLI tool interacting with an API, it is expected to operate within its own process and not modify files outside its intended scope.",{"category":69,"check":83,"severity":24,"summary":84},"Sandbox escape primitives","There are no indications of detached process spawns or retry loops around denied tool calls within the provided scripts.",{"category":69,"check":86,"severity":24,"summary":87},"Data Exfiltration","The tool sends search queries and URLs to the Exa API, which is its intended function. There's no evidence of confidential data exfiltration.",{"category":69,"check":89,"severity":24,"summary":90},"Hidden Text Tricks","The bundled content appears to be clean, standard Markdown and Python code without hidden text or control characters.",{"category":92,"check":93,"severity":24,"summary":94},"Hooks","Opaque code execution","The Python code for the CLI is standard and readable, with no signs of obfuscation, base64 encoding, or runtime script fetching.",{"category":96,"check":97,"severity":24,"summary":98},"Portability","Structural Assumption","The CLI operates on API calls and user-provided strings/URLs, making no assumptions about the user's project file structure.",{"category":100,"check":101,"severity":24,"summary":102},"Trust","Issues Attention","The GitHub repository shows a healthy ratio of closed to open issues in the last 90 days, indicating active maintainer engagement.",{"category":104,"check":105,"severity":24,"summary":106},"Versioning","Release Management","The SKILL.md frontmatter declares a version (1.0.0), and installation via pip provides a specific package, enabling version management.",{"category":108,"check":109,"severity":24,"summary":110},"Execution","Validation","The CLI uses Click, a Python library that provides robust argument parsing and validation for command-line options and arguments.",{"category":69,"check":112,"severity":24,"summary":113},"Unguarded Destructive Operations","The skill is primarily read-only (search and content retrieval), and therefore has no destructive operations to guard.",{"category":115,"check":116,"severity":24,"summary":117},"Errors","Error Handling","The CLI uses Click for argument parsing and error handling, and the underlying Exa API will likely return structured errors that can be presented to the user.",{"category":119,"check":120,"severity":121,"summary":122},"Code Execution","Logging","not_applicable","This is a CLI tool that makes API calls; standard logging practices for such tools are not explicitly detailed but are not required for its primary function.",{"category":124,"check":125,"severity":121,"summary":126},"Compliance","GDPR","The tool operates on search queries and public web content, not personal data that requires specific GDPR sanitization.",{"category":124,"check":128,"severity":24,"summary":129},"Target market","The extension's functionality is global and not tied to any specific geographic or legal jurisdiction.",{"category":96,"check":131,"severity":24,"summary":132},"Runtime stability","The CLI is written in Python and relies on standard libraries and the Exa API, making it portable across systems with Python 3.10+.",{"category":48,"check":134,"severity":24,"summary":135},"README","The README provides a comprehensive overview of the CLI-Anything project, its vision, features, and installation instructions, supplementing the skill's specific documentation.",{"category":33,"check":137,"severity":24,"summary":138},"Tool surface size","The skill exposes a focused set of tools: 'search', 'contents', and 'server status', fitting within the ideal range.",{"category":40,"check":140,"severity":24,"summary":141},"Overlapping near-synonym tools","The tools 'search' and 'contents' have distinct functions and do not overlap as near-synonyms.",{"category":48,"check":143,"severity":24,"summary":144},"Phantom features","All advertised features, such as different search types and content modes, correspond directly to implemented commands and options.",{"category":146,"check":147,"severity":24,"summary":148},"Install","Installation instruction","Installation instructions are provided in the SKILL.md, including the pip install command and environment variable setup for the API key.",{"category":115,"check":150,"severity":24,"summary":151},"Actionable error messages","Errors from the underlying Exa API and Click parsing are expected to be informative and actionable.",{"category":108,"check":153,"severity":24,"summary":154},"Pinned dependencies","Dependencies are managed via pip and declared in setup.py, implying standard practices for dependency pinning and lockfiles.",{"category":33,"check":156,"severity":121,"summary":157},"Dry-run preview","The skill performs read-only operations (search and content retrieval) and does not involve state-changing commands, making a dry-run feature not applicable.",{"category":159,"check":160,"severity":121,"summary":161},"Protocol","Idempotent retry & timeouts","The skill's operations are read-only API calls, and while upstream API calls may have timeouts, the skill itself doesn't manage state-changing operations or require explicit idempotency.",{"category":124,"check":163,"severity":24,"summary":164},"Telemetry opt-in","There is no indication of telemetry collection in the provided documentation or code.",{"category":40,"check":166,"severity":24,"summary":167},"Concise Frontmatter","The SKILL.md frontmatter is concise and effectively summarizes the core capability of the Exa CLI skill.",{"category":48,"check":169,"severity":24,"summary":170},"Concise Body","The SKILL.md is well-structured with clear sections for prerequisites, installation, command reference, and usage examples, keeping the main body concise.",{"category":172,"check":173,"severity":121,"summary":174},"Context","Progressive Disclosure","The SKILL.md is not excessively long and does not require splitting into separate reference files for clarity.",{"category":172,"check":176,"severity":121,"summary":177},"Forked exploration","This skill is a direct tool for web search and content retrieval, not an exploration or audit-style skill that would benefit from forked context.",{"category":22,"check":179,"severity":24,"summary":180},"Usage examples","The SKILL.md provides multiple ready-to-use examples demonstrating various search types, content retrieval, and JSON output usage.",{"category":22,"check":182,"severity":24,"summary":183},"Edge cases","The documentation implicitly handles some edge cases through specific option constraints (e.g., num-results 1-100) and error handling is expected from Click and the API.",{"category":119,"check":185,"severity":121,"summary":186},"Tool Fallback","This skill is a self-contained CLI tool that interacts with an external API, not an MCP server or other tool that would require a fallback.",{"category":188,"check":189,"severity":24,"summary":190},"Safety","Halt on unexpected state","The CLI uses Click for argument validation, which will halt execution on unexpected or malformed input before attempting API calls.",{"category":96,"check":192,"severity":24,"summary":193},"Cross-skill coupling","The skill is self-contained and performs Exa API calls, with no implicit reliance on other skills.",1778688857104,"This is an agent-native command-line interface for the Exa API, enabling web searches across multiple modes and fetching full-text or highlighted page contents. It supports JSON output for machine-readable results and requires an Exa API key.",[197,198,199,200,201],"Agent-native CLI for Exa API","Multiple web search modes (fast, deep, deep-reasoning)","Content retrieval (text, highlights, summary)","JSON output for machine-readable results","Configurable search parameters (num-results, freshness, domains, date ranges)",[203,204,205],"Replacing the Exa web interface directly","Performing actions other than search and content retrieval","Handling user authentication or API key management beyond environment variables",[],[208,209,210],"Python >= 3.10","pip install cli-anything-exa","EXA_API_KEY environment variable set","3.0.0","4.4.0","To provide AI agents with a structured and efficient way to perform web searches and retrieve content using the Exa neural search engine.","The extension is well-documented, provides clear usage examples, and has a focused scope. A minor warning was raised regarding the explicit documentation of secure API key handling within an agent context, but this is mitigated by the tool's read-only nature and the use of standard environment variables.",95,"A production-ready, agent-native CLI for Exa web search and content retrieval.",[218,219,220,221,222,223],"search","web-search","cli","exa","api-client","content-retrieval","global","community",[227,228,229,230],"Performing fast keyword lookups on the web","Conducting deep research on specific topics","Discovering academic papers and company intelligence","Monitoring news and fetching full article content for summarization",[232,233,234,235,236],"User specifies search query or URL and desired parameters.","CLI tool constructs and sends API request to Exa.","Exa API processes the request and returns search results or content.","CLI tool formats the API response (JSON or human-readable).","Results are displayed to the user or passed to an AI agent.",{"codeQuality":238,"collectedAt":240,"documentation":241,"maintenance":244,"security":251,"testCoverage":253},{"hasLockfile":239},true,1778688829888,{"descriptionLength":242,"readmeSize":243},68,65157,{"closedIssues90d":245,"forks":246,"hasChangelog":247,"openIssues90d":248,"pushedAt":249,"stars":250},48,3364,false,35,1778662207000,34376,{"hasNpmPackage":247,"license":252,"smitheryVerified":247},"Apache-2.0",{"hasCi":239,"hasTests":239},{"updatedAt":255},1778688857235,{"basePath":257,"githubOwner":258,"githubRepo":259,"locale":18,"slug":13,"type":260},"skills/cli-anything-exa","hkuds","cli-anything","skill",null,{"evaluate":263,"extract":265},{"promptVersionExtension":211,"promptVersionScoring":212,"score":215,"tags":264,"targetMarket":224,"tier":225},[218,219,220,221,222,223],{"commitSha":266,"license":252},"HEAD",{"repoId":268},"kd7e2bra4ymb6r521a25r6yges86n35p",{"_creationTime":270,"_id":268,"identity":271,"providers":272,"workflow":825},1778688407288.288,{"githubOwner":258,"githubRepo":259,"sourceUrl":14},{"classify":273,"discover":818,"github":821},{"commitSha":266,"extensions":274},[275,291,311,320,328,336,344,352,360,368,375,383,391,398,406,414,422,430,435,443,451,459,467,475,483,491,499,507,515,523,531,539,547,555,563,571,579,587,595,603,611,619,627,635,643,651,659,667,675,683,691,699,706,713,720,727,735,743,751,759,767,775,783,790,803,810],{"basePath":276,"description":277,"displayName":259,"installMethods":278,"rationale":279,"selectedPaths":280,"source":289,"sourceLanguage":18,"type":290},"","Build powerful, stateful CLI interfaces for any GUI application using the cli-anything harness methodology.",{"claudeCode":12},"marketplace.json at .claude-plugin/marketplace.json",[281,284,286],{"path":282,"priority":283},".claude-plugin/marketplace.json","mandatory",{"path":285,"priority":283},"README.md",{"path":287,"priority":288},"LICENSE","high","rule","marketplace",{"basePath":292,"description":277,"displayName":259,"installMethods":293,"rationale":294,"selectedPaths":295,"source":289,"sourceLanguage":18,"type":310},"cli-anything-plugin",{"claudeCode":259},"plugin manifest at cli-anything-plugin/.claude-plugin/plugin.json",[296,298,299,300,302,304,306,308],{"path":297,"priority":283},".claude-plugin/plugin.json",{"path":285,"priority":283},{"path":287,"priority":288},{"path":301,"priority":288},"commands/cli-anything.md",{"path":303,"priority":288},"commands/list.md",{"path":305,"priority":288},"commands/refine.md",{"path":307,"priority":288},"commands/test.md",{"path":309,"priority":288},"commands/validate.md","plugin",{"basePath":312,"description":313,"displayName":314,"installMethods":315,"rationale":316,"selectedPaths":317,"source":289,"sourceLanguage":18,"type":260},"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)",[318],{"path":319,"priority":283},"SKILL.md",{"basePath":321,"description":322,"displayName":323,"installMethods":324,"rationale":325,"selectedPaths":326,"source":289,"sourceLanguage":18,"type":260},"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)",[327],{"path":319,"priority":283},{"basePath":329,"description":330,"displayName":331,"installMethods":332,"rationale":333,"selectedPaths":334,"source":289,"sourceLanguage":18,"type":260},"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)",[335],{"path":319,"priority":283},{"basePath":337,"description":338,"displayName":339,"installMethods":340,"rationale":341,"selectedPaths":342,"source":289,"sourceLanguage":18,"type":260},"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)",[343],{"path":319,"priority":283},{"basePath":345,"description":346,"displayName":347,"installMethods":348,"rationale":349,"selectedPaths":350,"source":289,"sourceLanguage":18,"type":260},"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)",[351],{"path":319,"priority":283},{"basePath":353,"description":354,"displayName":355,"installMethods":356,"rationale":357,"selectedPaths":358,"source":289,"sourceLanguage":18,"type":260},"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)",[359],{"path":319,"priority":283},{"basePath":361,"description":362,"displayName":363,"installMethods":364,"rationale":365,"selectedPaths":366,"source":289,"sourceLanguage":18,"type":260},"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)",[367],{"path":319,"priority":283},{"basePath":369,"description":370,"displayName":369,"installMethods":371,"rationale":372,"selectedPaths":373,"source":289,"sourceLanguage":18,"type":260},"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)",[374],{"path":319,"priority":283},{"basePath":376,"description":377,"displayName":378,"installMethods":379,"rationale":380,"selectedPaths":381,"source":289,"sourceLanguage":18,"type":260},"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)",[382],{"path":319,"priority":283},{"basePath":384,"description":385,"displayName":386,"installMethods":387,"rationale":388,"selectedPaths":389,"source":289,"sourceLanguage":18,"type":260},"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)",[390],{"path":319,"priority":283},{"basePath":392,"description":393,"displayName":259,"installMethods":394,"rationale":395,"selectedPaths":396,"source":289,"sourceLanguage":18,"type":260},"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)",[397],{"path":319,"priority":283},{"basePath":399,"description":400,"displayName":401,"installMethods":402,"rationale":403,"selectedPaths":404,"source":289,"sourceLanguage":18,"type":260},"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)",[405],{"path":319,"priority":283},{"basePath":407,"description":408,"displayName":409,"installMethods":410,"rationale":411,"selectedPaths":412,"source":289,"sourceLanguage":18,"type":260},"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)",[413],{"path":319,"priority":283},{"basePath":415,"description":416,"displayName":417,"installMethods":418,"rationale":419,"selectedPaths":420,"source":289,"sourceLanguage":18,"type":260},"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)",[421],{"path":319,"priority":283},{"basePath":423,"description":424,"displayName":425,"installMethods":426,"rationale":427,"selectedPaths":428,"source":289,"sourceLanguage":18,"type":260},"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)",[429],{"path":319,"priority":283},{"basePath":257,"description":10,"displayName":13,"installMethods":431,"rationale":432,"selectedPaths":433,"source":289,"sourceLanguage":18,"type":260},{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-exa/SKILL.md (coalesced with duplicate skill at exa/agent-harness/cli_anything/exa/skills)",[434],{"path":319,"priority":283},{"basePath":436,"description":437,"displayName":438,"installMethods":439,"rationale":440,"selectedPaths":441,"source":289,"sourceLanguage":18,"type":260},"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)",[442],{"path":319,"priority":283},{"basePath":444,"description":445,"displayName":446,"installMethods":447,"rationale":448,"selectedPaths":449,"source":289,"sourceLanguage":18,"type":260},"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)",[450],{"path":319,"priority":283},{"basePath":452,"description":453,"displayName":454,"installMethods":455,"rationale":456,"selectedPaths":457,"source":289,"sourceLanguage":18,"type":260},"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)",[458],{"path":319,"priority":283},{"basePath":460,"description":461,"displayName":462,"installMethods":463,"rationale":464,"selectedPaths":465,"source":289,"sourceLanguage":18,"type":260},"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)",[466],{"path":319,"priority":283},{"basePath":468,"description":469,"displayName":470,"installMethods":471,"rationale":472,"selectedPaths":473,"source":289,"sourceLanguage":18,"type":260},"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)",[474],{"path":319,"priority":283},{"basePath":476,"description":477,"displayName":478,"installMethods":479,"rationale":480,"selectedPaths":481,"source":289,"sourceLanguage":18,"type":260},"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)",[482],{"path":319,"priority":283},{"basePath":484,"description":485,"displayName":486,"installMethods":487,"rationale":488,"selectedPaths":489,"source":289,"sourceLanguage":18,"type":260},"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)",[490],{"path":319,"priority":283},{"basePath":492,"description":493,"displayName":494,"installMethods":495,"rationale":496,"selectedPaths":497,"source":289,"sourceLanguage":18,"type":260},"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)",[498],{"path":319,"priority":283},{"basePath":500,"description":501,"displayName":502,"installMethods":503,"rationale":504,"selectedPaths":505,"source":289,"sourceLanguage":18,"type":260},"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)",[506],{"path":319,"priority":283},{"basePath":508,"description":509,"displayName":510,"installMethods":511,"rationale":512,"selectedPaths":513,"source":289,"sourceLanguage":18,"type":260},"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)",[514],{"path":319,"priority":283},{"basePath":516,"description":517,"displayName":518,"installMethods":519,"rationale":520,"selectedPaths":521,"source":289,"sourceLanguage":18,"type":260},"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)",[522],{"path":319,"priority":283},{"basePath":524,"description":525,"displayName":526,"installMethods":527,"rationale":528,"selectedPaths":529,"source":289,"sourceLanguage":18,"type":260},"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)",[530],{"path":319,"priority":283},{"basePath":532,"description":533,"displayName":534,"installMethods":535,"rationale":536,"selectedPaths":537,"source":289,"sourceLanguage":18,"type":260},"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)",[538],{"path":319,"priority":283},{"basePath":540,"description":541,"displayName":542,"installMethods":543,"rationale":544,"selectedPaths":545,"source":289,"sourceLanguage":18,"type":260},"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)",[546],{"path":319,"priority":283},{"basePath":548,"description":549,"displayName":550,"installMethods":551,"rationale":552,"selectedPaths":553,"source":289,"sourceLanguage":18,"type":260},"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)",[554],{"path":319,"priority":283},{"basePath":556,"description":557,"displayName":558,"installMethods":559,"rationale":560,"selectedPaths":561,"source":289,"sourceLanguage":18,"type":260},"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",[562],{"path":319,"priority":283},{"basePath":564,"description":565,"displayName":566,"installMethods":567,"rationale":568,"selectedPaths":569,"source":289,"sourceLanguage":18,"type":260},"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)",[570],{"path":319,"priority":283},{"basePath":572,"description":573,"displayName":574,"installMethods":575,"rationale":576,"selectedPaths":577,"source":289,"sourceLanguage":18,"type":260},"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)",[578],{"path":319,"priority":283},{"basePath":580,"description":581,"displayName":582,"installMethods":583,"rationale":584,"selectedPaths":585,"source":289,"sourceLanguage":18,"type":260},"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)",[586],{"path":319,"priority":283},{"basePath":588,"description":589,"displayName":590,"installMethods":591,"rationale":592,"selectedPaths":593,"source":289,"sourceLanguage":18,"type":260},"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)",[594],{"path":319,"priority":283},{"basePath":596,"description":597,"displayName":598,"installMethods":599,"rationale":600,"selectedPaths":601,"source":289,"sourceLanguage":18,"type":260},"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)",[602],{"path":319,"priority":283},{"basePath":604,"description":605,"displayName":606,"installMethods":607,"rationale":608,"selectedPaths":609,"source":289,"sourceLanguage":18,"type":260},"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",[610],{"path":319,"priority":283},{"basePath":612,"description":613,"displayName":614,"installMethods":615,"rationale":616,"selectedPaths":617,"source":289,"sourceLanguage":18,"type":260},"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)",[618],{"path":319,"priority":283},{"basePath":620,"description":621,"displayName":622,"installMethods":623,"rationale":624,"selectedPaths":625,"source":289,"sourceLanguage":18,"type":260},"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)",[626],{"path":319,"priority":283},{"basePath":628,"description":629,"displayName":630,"installMethods":631,"rationale":632,"selectedPaths":633,"source":289,"sourceLanguage":18,"type":260},"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)",[634],{"path":319,"priority":283},{"basePath":636,"description":637,"displayName":638,"installMethods":639,"rationale":640,"selectedPaths":641,"source":289,"sourceLanguage":18,"type":260},"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)",[642],{"path":319,"priority":283},{"basePath":644,"description":645,"displayName":646,"installMethods":647,"rationale":648,"selectedPaths":649,"source":289,"sourceLanguage":18,"type":260},"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",[650],{"path":319,"priority":283},{"basePath":652,"description":653,"displayName":654,"installMethods":655,"rationale":656,"selectedPaths":657,"source":289,"sourceLanguage":18,"type":260},"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)",[658],{"path":319,"priority":283},{"basePath":660,"description":661,"displayName":662,"installMethods":663,"rationale":664,"selectedPaths":665,"source":289,"sourceLanguage":18,"type":260},"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)",[666],{"path":319,"priority":283},{"basePath":668,"description":669,"displayName":670,"installMethods":671,"rationale":672,"selectedPaths":673,"source":289,"sourceLanguage":18,"type":260},"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)",[674],{"path":319,"priority":283},{"basePath":676,"description":677,"displayName":678,"installMethods":679,"rationale":680,"selectedPaths":681,"source":289,"sourceLanguage":18,"type":260},"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)",[682],{"path":319,"priority":283},{"basePath":684,"description":685,"displayName":686,"installMethods":687,"rationale":688,"selectedPaths":689,"source":289,"sourceLanguage":18,"type":260},"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)",[690],{"path":319,"priority":283},{"basePath":692,"description":693,"displayName":694,"installMethods":695,"rationale":696,"selectedPaths":697,"source":289,"sourceLanguage":18,"type":260},"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)",[698],{"path":319,"priority":283},{"basePath":700,"description":485,"displayName":701,"installMethods":702,"rationale":703,"selectedPaths":704,"source":289,"sourceLanguage":18,"type":260},"skills/cli-anything-iterm2-ctl","cli-anything-iterm2-ctl",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-iterm2-ctl/SKILL.md",[705],{"path":319,"priority":283},{"basePath":707,"description":557,"displayName":708,"installMethods":709,"rationale":710,"selectedPaths":711,"source":289,"sourceLanguage":18,"type":260},"skills/cli-anything-musescore","cli-anything-musescore",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-musescore/SKILL.md",[712],{"path":319,"priority":283},{"basePath":714,"description":605,"displayName":715,"installMethods":716,"rationale":717,"selectedPaths":718,"source":289,"sourceLanguage":18,"type":260},"skills/cli-anything-obs-studio","cli-anything-obs-studio",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-obs-studio/SKILL.md",[719],{"path":319,"priority":283},{"basePath":721,"description":645,"displayName":722,"installMethods":723,"rationale":724,"selectedPaths":725,"source":289,"sourceLanguage":18,"type":260},"skills/cli-anything-quietshrink","cli-anything-quietshrink",{"claudeCode":12},"SKILL.md frontmatter at skills/cli-anything-quietshrink/SKILL.md",[726],{"path":319,"priority":283},{"basePath":728,"description":729,"displayName":730,"installMethods":731,"rationale":732,"selectedPaths":733,"source":289,"sourceLanguage":18,"type":260},"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",[734],{"path":319,"priority":283},{"basePath":736,"description":737,"displayName":738,"installMethods":739,"rationale":740,"selectedPaths":741,"source":289,"sourceLanguage":18,"type":260},"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)",[742],{"path":319,"priority":283},{"basePath":744,"description":745,"displayName":746,"installMethods":747,"rationale":748,"selectedPaths":749,"source":289,"sourceLanguage":18,"type":260},"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)",[750],{"path":319,"priority":283},{"basePath":752,"description":753,"displayName":754,"installMethods":755,"rationale":756,"selectedPaths":757,"source":289,"sourceLanguage":18,"type":260},"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)",[758],{"path":319,"priority":283},{"basePath":760,"description":761,"displayName":762,"installMethods":763,"rationale":764,"selectedPaths":765,"source":289,"sourceLanguage":18,"type":260},"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)",[766],{"path":319,"priority":283},{"basePath":768,"description":769,"displayName":770,"installMethods":771,"rationale":772,"selectedPaths":773,"source":289,"sourceLanguage":18,"type":260},"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)",[774],{"path":319,"priority":283},{"basePath":776,"description":777,"displayName":778,"installMethods":779,"rationale":780,"selectedPaths":781,"source":289,"sourceLanguage":18,"type":260},"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)",[782],{"path":319,"priority":283},{"basePath":784,"description":729,"displayName":785,"installMethods":786,"rationale":787,"selectedPaths":788,"source":289,"sourceLanguage":18,"type":260},"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",[789],{"path":319,"priority":283},{"basePath":791,"description":792,"displayName":793,"installMethods":794,"rationale":795,"selectedPaths":796,"source":289,"sourceLanguage":18,"type":220},"sketch/agent-harness","CLI tool to generate Sketch files from JSON design specs — CLI-Anything harness for Sketch","sketch-harness",{"npm":793},"cli ecosystem detected at sketch/agent-harness",[797,799,800],{"path":798,"priority":283},"package.json",{"path":285,"priority":283},{"path":801,"priority":802},"src/cli.js","medium",{"basePath":804,"installMethods":805,"rationale":806,"selectedPaths":807,"source":289,"sourceLanguage":18,"type":220},"exa/agent-harness",{"pypi":13},"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)",[808],{"path":809,"priority":283},"setup.py",{"basePath":811,"installMethods":812,"rationale":814,"selectedPaths":815,"source":289,"sourceLanguage":18,"type":220},"cli-hub",{"pypi":813},"cli-anything-hub","cli ecosystem detected at cli-hub",[816,817],{"path":809,"priority":283},{"path":285,"priority":283},{"sources":819},[820],"manual",{"closedIssues90d":245,"description":822,"forks":246,"homepage":823,"license":252,"openIssues90d":248,"pushedAt":249,"readmeSize":243,"stars":250,"topics":824},"\"CLI-Anything: Making ALL Software Agent-Native\" -- CLI-Hub: https://clianything.cc/","https://clianything.cc/",[],{"classifiedAt":826,"discoverAt":827,"extractAt":828,"githubAt":828,"updatedAt":826},1778688417516,1778688407288,1778688414240,[222,220,223,221,218,219],{"evaluatedAt":255,"extractAt":831,"updatedAt":255},1778688417732,[],[834,864,894,922,949,972],{"_creationTime":835,"_id":836,"community":837,"display":838,"identity":843,"providers":847,"relations":856,"tags":859,"workflow":860},1778683278012.447,"k17f0kk29shkzcc956nyab4w9s86meb9",{"reviewCount":8},{"description":839,"installMethods":840,"name":219,"sourceUrl":842},"USE FOR web search. Returns ranked results with snippets, URLs, thumbnails. Supports freshness filters, SafeSearch, Goggles for custom ranking, pagination. Primary search endpoint.",{"claudeCode":841},"brave/brave-search-skills","https://github.com/brave/brave-search-skills",{"basePath":844,"githubOwner":845,"githubRepo":846,"locale":18,"slug":219,"type":260},"skills/web-search","brave","brave-search-skills",{"evaluate":848,"extract":855},{"promptVersionExtension":211,"promptVersionScoring":212,"score":849,"tags":850,"targetMarket":224,"tier":854},100,[218,219,851,852,853],"api","brave-search","information-retrieval","verified",{"commitSha":266},{"parentExtensionId":857,"repoId":858},"k171bmfye9bw6pddf7xqx1x8px86nvha","kd79z9gj68csgw1td4cjr71d8x86nhc0",[851,852,853,218,219],{"evaluatedAt":861,"extractAt":862,"updatedAt":863},1778683556020,1778683278012,1778683733107,{"_creationTime":865,"_id":866,"community":867,"display":868,"identity":874,"providers":878,"relations":886,"tags":889,"workflow":890},1778686668520.5159,"k175g4s9xt6470sptbqga6kc2986m27d",{"reviewCount":8},{"description":869,"installMethods":870,"name":872,"sourceUrl":873},"Deep research powered by Exa. Use for lead generation, literature reviews, deep dives, competitive analysis, or any query where one search falls short, including phrases like 'research this', 'find everything about', 'find me all', or 'deep dive on'.",{"claudeCode":871},"exa-labs/exa-mcp-server","Exa Research Orchestrator","https://github.com/exa-labs/exa-mcp-server",{"basePath":875,"githubOwner":876,"githubRepo":877,"locale":18,"slug":218,"type":260},"skills/search","exa-labs","exa-mcp-server",{"evaluate":879,"extract":884},{"promptVersionExtension":211,"promptVersionScoring":212,"score":880,"tags":881,"targetMarket":224,"tier":854},99,[218,882,221,219,853,883],"research","llm-tools",{"commitSha":266,"license":885},"MIT",{"parentExtensionId":887,"repoId":888},"k174t9rm3vktj628yafgkzc2xx86mfgk","kd737g0mq37crq1zx51r8185nd86nz4w",[221,853,883,882,218,219],{"evaluatedAt":891,"extractAt":892,"updatedAt":893},1778686739664,1778686668520,1778686835133,{"_creationTime":895,"_id":896,"community":897,"display":898,"identity":904,"providers":909,"relations":916,"tags":918,"workflow":919},1778691799740.474,"k17fsz7fcb5qb95q15saq44m7n86m2rs",{"reviewCount":8},{"description":899,"installMethods":900,"name":902,"sourceUrl":903},"Web toolkit powered by Exa, tuned for scientific and technical content. Use this skill when the user needs to search the web or fetch/extract URL content. Covers: web search (semantic lookups, research, current info — with optional research-paper category and academic domain filtering) and URL extraction (fetching pages, articles, academic PDFs in batch). Use this skill for web-related tasks when the user wants high-quality search or scholarly filtering via category=research paper. Triggers on requests to search, look up, fetch a page, or extract an article.",{"claudeCode":901},"K-Dense-AI/claude-scientific-skills","Exa Web Toolkit","https://github.com/K-Dense-AI/claude-scientific-skills",{"basePath":905,"githubOwner":906,"githubRepo":907,"locale":18,"slug":908,"type":260},"scientific-skills/exa-search","K-Dense-AI","claude-scientific-skills","exa-search",{"evaluate":910,"extract":915},{"promptVersionExtension":211,"promptVersionScoring":212,"score":911,"tags":912,"targetMarket":224,"tier":854},97,[219,913,882,914,221],"url-extraction","scientific-content",{"commitSha":266,"license":885},{"repoId":917},"kd79rphh5gexy91xmpxc05h5mh86mm9r",[221,882,914,913,219],{"evaluatedAt":920,"extractAt":921,"updatedAt":920},1778692525556,1778691799740,{"_creationTime":923,"_id":924,"community":925,"display":926,"identity":932,"providers":934,"relations":942,"tags":944,"workflow":945},1778699468747.1746,"k1707pszx7h026a651dp5tvaxd86m3ag",{"reviewCount":8},{"description":927,"installMethods":928,"name":930,"sourceUrl":931},"Create public Google Docs or Google Sheet files without requiring OAuth. Use this skill to create and edit Google Docs and Sheets, no Google sign-in required. Documents are viewable at shareable links. Registration is automatic on first use.",{"claudeCode":929},"zagmoai/public-google-drive","public-google-drive","https://github.com/zagmoai/public-google-drive",{"basePath":276,"githubOwner":933,"githubRepo":930,"locale":18,"slug":930,"type":260},"zagmoai",{"evaluate":935,"extract":941},{"promptVersionExtension":211,"promptVersionScoring":212,"score":849,"tags":936,"targetMarket":224,"tier":854},[937,938,939,940,222],"google-docs","google-sheets","productivity","automation",{"commitSha":266},{"repoId":943},"kd776ynh73t0d6samn4bnxdf3x86n8mj",[222,940,937,938,939],{"evaluatedAt":946,"extractAt":947,"updatedAt":948},1778699485884,1778699468747,1778699509178,{"_creationTime":950,"_id":951,"community":952,"display":953,"identity":959,"providers":962,"relations":966,"tags":968,"workflow":969},1778688022104.1677,"k17ck9wbmtfyw83n6rv10vp1s986np36",{"reviewCount":8},{"description":954,"installMethods":955,"name":957,"sourceUrl":958},"Google Sheets: Read and write spreadsheets.",{"claudeCode":956},"googleworkspace/cli","gws-sheets","https://github.com/googleworkspace/cli",{"basePath":960,"githubOwner":961,"githubRepo":220,"locale":18,"slug":957,"type":260},"skills/gws-sheets","googleworkspace",{"evaluate":963,"extract":965},{"promptVersionExtension":211,"promptVersionScoring":212,"score":849,"tags":964,"targetMarket":224,"tier":854},[938,220,940,939,222],{"commitSha":266},{"repoId":967},"kd74t1908zh6g1jzcxw8tg1rwx86nnpt",[222,940,220,938,939],{"evaluatedAt":970,"extractAt":971,"updatedAt":970},1778688770647,1778688022104,{"_creationTime":973,"_id":974,"community":975,"display":976,"identity":982,"providers":987,"relations":996,"tags":999,"workflow":1000},1778696691708.3274,"k170az7r02e9e2v47mpy80kx6n86nff3",{"reviewCount":8},{"description":977,"installMethods":978,"name":980,"sourceUrl":981},"Detect current market regime using npx neural-trader — bull/bear/ranging/volatile classification with recommended strategy",{"claudeCode":979},"ruvnet/ruflo","Trader Regime","https://github.com/ruvnet/ruflo",{"basePath":983,"githubOwner":984,"githubRepo":985,"locale":18,"slug":986,"type":260},"plugins/ruflo-neural-trader/skills/trader-regime","ruvnet","ruflo","trader-regime",{"evaluate":988,"extract":995},{"promptVersionExtension":211,"promptVersionScoring":212,"score":849,"tags":989,"targetMarket":224,"tier":854},[990,991,992,993,994,220],"finance","trading","market-analysis","ai","typescript",{"commitSha":266,"license":885},{"parentExtensionId":997,"repoId":998},"k17drge8h1fgzchr0p4jaeg33n86mwmy","kd7ed28gj8n0y3msk5dzrp05zs86nqtc",[993,220,990,992,991,994],{"evaluatedAt":1001,"extractAt":1002,"updatedAt":1001},1778701108877,1778696691708]