[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"extension-skill-hkuds-cli-anything-rms-zh-CN":3,"guides-for-hkuds-cli-anything-rms":822,"similar-k17cj4smp83hz4zs5pd11xksj986nv05-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.9565,"k17cj4smp83hz4zs5pd11xksj986nv05",[],{"reviewCount":8},0,{"description":10,"installMethods":11,"name":13,"sourceUrl":14},"Teltonika RMS device management and monitoring CLI",{"claudeCode":12},"hkuds/cli-anything","cli-anything-rms","https://github.com/hkuds/cli-anything",{"_creationTime":16,"_id":17,"extensionId":5,"locale":18,"result":19,"trustSignals":227,"workflow":244},1778689573566.3516,"kn769r7sm1hwyfm0raw2xntny986me2y","en",{"checks":20,"evaluatedAt":194,"extensionSummary":195,"features":196,"nonGoals":203,"promptVersionExtension":207,"promptVersionScoring":208,"purpose":209,"rationale":210,"score":211,"summary":212,"tags":213,"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,103,107,110,114,118,122,125,128,131,134,137,140,144,148,151,154,159,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 CLI is for Teltonika RMS device management and monitoring, addressing a specific user need.",{"category":22,"check":27,"severity":24,"summary":28},"Unique selling proposition","The extension provides a dedicated CLI for the Teltonika RMS platform, offering a significant value over generic API wrappers by providing structured commands and managing the full lifecycle of devices and related resources.",{"category":22,"check":30,"severity":24,"summary":31},"Production readiness","The CLI covers a comprehensive set of operations for managing devices, companies, users, configurations, and remote access, indicating readiness for production workflows.",{"category":33,"check":34,"severity":24,"summary":35},"Scope","Single responsibility principle","The extension focuses solely on managing and monitoring Teltonika RMS resources, maintaining a clear and single area of responsibility.",{"category":33,"check":37,"severity":24,"summary":38},"Description quality","The description accurately and concisely reflects the extension's purpose of managing and monitoring Teltonika RMS devices.",{"category":40,"check":41,"severity":24,"summary":42},"Invocation","Scoped tools","All exposed tools are narrow verb-noun specialists (e.g., `devices list`, `companies get`), facilitating precise agent selection.",{"category":44,"check":45,"severity":24,"summary":46},"Documentation","Configuration & parameter reference","Authentication methods and basic configuration (`api_token`, `default_limit`) are documented, with clear commands for setting and getting them. The README provides sufficient detail for usage.",{"category":33,"check":48,"severity":24,"summary":49},"Tool naming","Tool names like `devices list`, `companies get`, and `users invite` are descriptive and adhere to the kebab-case convention.",{"category":33,"check":51,"severity":24,"summary":52},"Minimal I/O surface","Tool parameters are specific (e.g., `device_id`, `--status`, `--tag`), and while the JSON output isn't explicitly defined by a schema, the command structure implies a focused payload.",{"category":54,"check":55,"severity":24,"summary":56},"License","License usability","The project is licensed under Apache-2.0, as indicated in the README and LICENSE file, which is a permissive open-source license.",{"category":58,"check":59,"severity":24,"summary":60},"Maintenance","Commit recency","The repository shows recent commits, indicating active maintenance.",{"category":58,"check":62,"severity":24,"summary":63},"Dependency Management","The project uses `pip install` with a Git+subdirectory reference, implying reliance on PyPI packages. The `setup.py` is likely present in the full `CLI-Anything` repo for dependency management.",{"category":65,"check":66,"severity":24,"summary":67},"Security","Secret Management","Secrets are handled via environment variables (`RMS_API_TOKEN`) or a configuration file (`cli-anything-rms config set api_token`), and the tool does not echo resolved secrets to stdout.",{"category":65,"check":69,"severity":24,"summary":70},"Injection","The CLI commands appear to take structured arguments and IDs, mitigating direct command injection risks. No evidence of loading and executing arbitrary external data as instructions.",{"category":65,"check":72,"severity":24,"summary":73},"Transitive Supply-Chain Grenades","The extension relies on a direct pip install from a GitHub repository and does not appear to fetch or execute remote code at runtime.",{"category":65,"check":75,"severity":24,"summary":76},"Sandbox Isolation","The CLI operates by interacting with the Teltonika RMS API, and the provided commands do not suggest any file system modifications outside of its own configuration.",{"category":65,"check":78,"severity":24,"summary":79},"Sandbox escape primitives","There are no indications of detached process spawns or retry loops around denied tool calls within the provided CLI command definitions.",{"category":65,"check":81,"severity":24,"summary":82},"Data Exfiltration","The tool interacts with the Teltonika RMS API to manage devices and resources. No undocumented outbound calls or submission of confidential data beyond API credentials are suggested.",{"category":65,"check":84,"severity":24,"summary":85},"Hidden Text Tricks","The README and SKILL.md files are free of hidden steering tricks, using standard markdown and ASCII characters.",{"category":87,"check":88,"severity":24,"summary":89},"Hooks","Opaque code execution","The extension is a standard Python CLI installed via pip; there is no evidence of obfuscated code execution within its bundle.",{"category":91,"check":92,"severity":24,"summary":93},"Portability","Structural Assumption","The CLI assumes the user has Python and the necessary dependencies installed, which is standard for a Python CLI. Configuration is handled via environment variables or a local config file.",{"category":95,"check":96,"severity":24,"summary":97},"Trust","Issues Attention","Open issues (35) and closed issues (48) in the last 90 days suggest active engagement and a reasonable closure rate for the main CLI-Anything repository.",{"category":99,"check":100,"severity":101,"summary":102},"Versioning","Release Management","warning","The SKILL.md frontmatter does not declare a version, and installation instructions reference `git+https://...` directly from the repository, preventing precise version pinning.",{"category":104,"check":105,"severity":24,"summary":106},"Execution","Validation","Command arguments appear to be validated by the Click framework used for CLIs, and API interactions would likely have their own validation.",{"category":65,"check":108,"severity":24,"summary":109},"Unguarded Destructive Operations","Destructive operations like `devices delete` and `companies delete` are guarded by requiring a specific `device_id` or `company_id`, implying a confirmation step or at least explicit targeting before execution.",{"category":111,"check":112,"severity":24,"summary":113},"Code Execution","Error Handling","The CLI is built using Python and Click, which typically provide structured error handling. The command list suggests clear operations that would map to distinct success/failure paths.",{"category":111,"check":115,"severity":116,"summary":117},"Logging","not_applicable","This tool interacts with an external API and does not perform local destructive operations or outbound calls that would necessitate a local audit log.",{"category":119,"check":120,"severity":116,"summary":121},"Compliance","GDPR","The tool manages Teltonika RMS devices and users, but does not appear to directly handle PII in a way that would require special GDPR sanitization beyond standard API credential management.",{"category":119,"check":123,"severity":24,"summary":124},"Target market","The tool manages devices for Teltonika RMS, which is a global platform, and there are no regional restrictions indicated in the documentation, thus the target market is global.",{"category":91,"check":126,"severity":24,"summary":127},"Runtime stability","As a Python CLI, it relies on standard Python execution and external dependencies installable via pip, making it portable across systems with compatible Python environments.",{"category":44,"check":129,"severity":24,"summary":130},"README","A detailed README is present and clearly outlines the extension's purpose, installation, authentication, and command groups.",{"category":33,"check":132,"severity":24,"summary":133},"Tool surface size","The CLI exposes a reasonable number of command groups (13) with numerous subcommands, offering comprehensive functionality without excessive bloat.",{"category":40,"check":135,"severity":24,"summary":136},"Overlapping near-synonym tools","Command names are distinct and map to specific actions (e.g., `devices list` vs. `devices get`), avoiding redundancy.",{"category":44,"check":138,"severity":24,"summary":139},"Phantom features","All advertised features, such as managing devices, companies, users, and configurations, have corresponding commands listed in the SKILL.md.",{"category":141,"check":142,"severity":24,"summary":143},"Install","Installation instruction","Clear installation instructions are provided via `pip install git+...` and authentication steps are documented with environment variables or a config command.",{"category":145,"check":146,"severity":24,"summary":147},"Errors","Actionable error messages","The CLI structure implies clear error paths for operations like missing IDs or invalid parameters, which would be reported by the underlying framework and API.",{"category":104,"check":149,"severity":101,"summary":150},"Pinned dependencies","The installation uses a Git+subdirectory reference without a specific version or lockfile, making it difficult to pin dependencies precisely.",{"category":33,"check":152,"severity":116,"summary":153},"Dry-run preview","The extension is an API client; destructive operations like delete are guarded by explicit IDs, and preview functionality for API calls is not a standard feature.",{"category":155,"check":156,"severity":157,"summary":158},"Protocol","Idempotent retry & timeouts","info","API interactions would typically be managed by the underlying Teltonika RMS API or the Python `requests` library, which may offer retry mechanisms, but explicit handling is not detailed.",{"category":119,"check":160,"severity":24,"summary":161},"Telemetry opt-in","There is no indication of telemetry being emitted by this CLI tool; it focuses on direct API interaction.",{"category":40,"check":163,"severity":24,"summary":164},"Precise Purpose","The SKILL.md clearly states the purpose (Teltonika RMS device management and monitoring CLI) and provides specific command groups for various management tasks.",{"category":40,"check":166,"severity":24,"summary":167},"Concise Frontmatter","The frontmatter in SKILL.md is concise, accurately describing the core capability and directly listing command groups for clear routing.",{"category":44,"check":169,"severity":24,"summary":170},"Concise Body","The SKILL.md body is primarily a list of commands and examples, keeping it concise and focused.",{"category":172,"check":173,"severity":116,"summary":174},"Context","Progressive Disclosure","The skill is a CLI tool with a direct command structure; it does not involve complex procedures requiring progressive disclosure through separate files.",{"category":172,"check":176,"severity":116,"summary":177},"Forked exploration","This is a direct CLI tool for API interaction, not an exploration or audit skill that would require forked context.",{"category":22,"check":179,"severity":24,"summary":180},"Usage examples","The SKILL.md includes several practical examples demonstrating common usage patterns like listing devices and retrieving details.",{"category":22,"check":182,"severity":157,"summary":183},"Edge cases","While the commands list specific parameters, detailed documentation on failure modes (e.g., API rate limits, invalid IDs) and recovery steps is not explicitly provided.",{"category":111,"check":185,"severity":116,"summary":186},"Tool Fallback","This skill does not reference external tools like MCP servers with fallbacks; it directly interacts with the Teltonika RMS API.",{"category":188,"check":189,"severity":24,"summary":190},"Safety","Halt on unexpected state","The CLI commands require specific IDs and parameters, and API interactions would naturally halt on unexpected states or invalid inputs, reporting errors.",{"category":91,"check":192,"severity":24,"summary":193},"Cross-skill coupling","The skill is self-contained and focuses on the Teltonika RMS API; it does not implicitly rely on other skills or cross-link to adjacent scopes.",1778689573434,"This is a command-line interface (CLI) tool that interacts with the Teltonika RMS (Remote Management System) REST API to manage and monitor devices, companies, users, and configurations.",[197,198,199,200,201,202],"Manage devices (list, get, update, delete)","Manage companies (list, get, create, update, delete)","Manage users (list, get, invite, update, delete)","Control device configurations and remote access sessions","Access logs, location data, and credits","Handle file uploads and manage reports",[204,205,206],"Directly interacting with physical devices outside of the RMS API.","Providing a graphical user interface.","Managing Teltonika RMS infrastructure itself, only its resources.","3.0.0","4.4.0","To provide a robust command-line interface for efficient management and monitoring of Teltonika RMS devices and related resources.","High quality, well-documented CLI with a clear purpose and comprehensive command set. The only minor concern is the lack of version pinning for dependencies.",95,"A well-structured and comprehensive CLI for managing Teltonika RMS devices and resources.",[214,215,216,217,218,219],"cli","teltonika","rms","device-management","monitoring","iot","global","community",[223,224,225,226],"Automating device provisioning and deprovisioning via the RMS API.","Monitoring device status and alert configurations in bulk.","Scripting routine administrative tasks for Teltonika RMS.","Integrating RMS management into broader automation workflows.",{"codeQuality":228,"collectedAt":230,"documentation":231,"maintenance":234,"security":241,"testCoverage":243},{"hasLockfile":229},true,1778689548985,{"descriptionLength":232,"readmeSize":233},50,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},1778689573566,{"basePath":247,"githubOwner":248,"githubRepo":249,"locale":18,"slug":13,"type":250},"skills/cli-anything-rms","hkuds","cli-anything","skill",null,{"evaluate":253,"extract":255},{"promptVersionExtension":207,"promptVersionScoring":208,"score":211,"tags":254,"targetMarket":220,"tier":221},[214,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,612,620,628,636,644,652,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":605,"description":606,"displayName":607,"installMethods":608,"rationale":609,"selectedPaths":610,"source":279,"sourceLanguage":18,"type":250},"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)",[611],{"path":309,"priority":273},{"basePath":613,"description":614,"displayName":615,"installMethods":616,"rationale":617,"selectedPaths":618,"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)",[619],{"path":309,"priority":273},{"basePath":621,"description":622,"displayName":623,"installMethods":624,"rationale":625,"selectedPaths":626,"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)",[627],{"path":309,"priority":273},{"basePath":629,"description":630,"displayName":631,"installMethods":632,"rationale":633,"selectedPaths":634,"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)",[635],{"path":309,"priority":273},{"basePath":637,"description":638,"displayName":639,"installMethods":640,"rationale":641,"selectedPaths":642,"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",[643],{"path":309,"priority":273},{"basePath":645,"description":646,"displayName":647,"installMethods":648,"rationale":649,"selectedPaths":650,"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)",[651],{"path":309,"priority":273},{"basePath":247,"description":10,"displayName":13,"installMethods":653,"rationale":654,"selectedPaths":655,"source":279,"sourceLanguage":18,"type":250},{"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":638,"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":214},"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":214},"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":214},"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,[214,217,219,218,216,215],{"evaluatedAt":245,"extractAt":821,"updatedAt":245},1778688417732,[],[824,856,882,910,935,955],{"_creationTime":825,"_id":826,"community":827,"display":828,"identity":834,"providers":839,"relations":849,"tags":852,"workflow":853},1778696691708.3235,"k17f3w2grbad12hxtfqfydqc3n86nzem",{"reviewCount":8},{"description":829,"installMethods":830,"name":832,"sourceUrl":833},"Create and manage Cognitum Seed device fleets with firmware policies",{"claudeCode":831},"ruvnet/ruflo","iot-fleet","https://github.com/ruvnet/ruflo",{"basePath":835,"githubOwner":836,"githubRepo":837,"locale":838,"slug":832,"type":250},"plugins/ruflo-iot-cognitum/skills/iot-fleet","ruvnet","ruflo","fr",{"evaluate":840,"extract":847},{"promptVersionExtension":207,"promptVersionScoring":208,"score":841,"tags":842,"targetMarket":220,"tier":846},97,[217,843,844,219,845],"fleet-management","firmware","cognitum","verified",{"commitSha":256,"license":848},"MIT",{"parentExtensionId":850,"repoId":851},"k176rm079sp3s1jrmxzgg3zxp586m8pv","kd7ed28gj8n0y3msk5dzrp05zs86nqtc",[845,217,844,843,219],{"evaluatedAt":854,"extractAt":855,"updatedAt":854},1778700766274,1778696691708,{"_creationTime":857,"_id":858,"community":859,"display":860,"identity":864,"providers":867,"relations":877,"tags":879,"workflow":880},1778696691708.3274,"k170az7r02e9e2v47mpy80kx6n86nff3",{"reviewCount":8},{"description":861,"installMethods":862,"name":863,"sourceUrl":833},"Detect current market regime using npx neural-trader — bull/bear/ranging/volatile classification with recommended strategy",{"claudeCode":831},"Trader Regime",{"basePath":865,"githubOwner":836,"githubRepo":837,"locale":18,"slug":866,"type":250},"plugins/ruflo-neural-trader/skills/trader-regime","trader-regime",{"evaluate":868,"extract":876},{"promptVersionExtension":207,"promptVersionScoring":208,"score":869,"tags":870,"targetMarket":220,"tier":846},100,[871,872,873,874,875,214],"finance","trading","market-analysis","ai","typescript",{"commitSha":256,"license":848},{"parentExtensionId":878,"repoId":851},"k17drge8h1fgzchr0p4jaeg33n86mwmy",[874,214,871,873,872,875],{"evaluatedAt":881,"extractAt":855,"updatedAt":881},1778701108877,{"_creationTime":883,"_id":884,"community":885,"display":886,"identity":892,"providers":896,"relations":903,"tags":906,"workflow":907},1778699234184.6174,"k174zww66m804nhr89ttra7r6d86nwyg",{"reviewCount":8},{"description":887,"installMethods":888,"name":890,"sourceUrl":891},"Use first for install/update routing — sends setup, doctor, or MCP requests to the correct OMC setup flow",{"claudeCode":889},"Yeachan-Heo/oh-my-claudecode","setup","https://github.com/Yeachan-Heo/oh-my-claudecode",{"basePath":893,"githubOwner":894,"githubRepo":895,"locale":18,"slug":890,"type":250},"skills/setup","Yeachan-Heo","oh-my-claudecode",{"evaluate":897,"extract":902},{"promptVersionExtension":207,"promptVersionScoring":208,"score":869,"tags":898,"targetMarket":220,"tier":846},[890,899,900,214,901],"routing","configuration","mcp",{"commitSha":256},{"parentExtensionId":904,"repoId":905},"k17brg5egdw1jbncj1j4wfv3fh86n639","kd74zv63fryf9prygtq7gf4es986n22y",[214,900,901,899,890],{"evaluatedAt":908,"extractAt":909,"updatedAt":908},1778699724286,1778699234184,{"_creationTime":911,"_id":912,"community":913,"display":914,"identity":918,"providers":921,"relations":931,"tags":932,"workflow":933},1778699234184.6157,"k177tdbfgqmwhtaqv771f2ych586nne9",{"reviewCount":8},{"description":915,"installMethods":916,"name":917,"sourceUrl":891},"Worktree-first dev environment manager for issues, PRs, and features with optional tmux sessions",{"claudeCode":889},"Project Session Manager",{"basePath":919,"githubOwner":894,"githubRepo":895,"locale":18,"slug":920,"type":250},"skills/project-session-manager","project-session-manager",{"evaluate":922,"extract":930},{"promptVersionExtension":207,"promptVersionScoring":208,"score":869,"tags":923,"targetMarket":220,"tier":846},[924,925,926,927,928,214,929],"git","development-environment","workflow","tmux","automation","developer-tool",{"commitSha":256,"license":848},{"parentExtensionId":904,"repoId":905},[928,214,929,925,924,927,926],{"evaluatedAt":934,"extractAt":909,"updatedAt":934},1778699613343,{"_creationTime":936,"_id":937,"community":938,"display":939,"identity":943,"providers":945,"relations":951,"tags":952,"workflow":953},1778699234184.6143,"k17cnx0m6a27fw52yvt4zsbsxh86nd1c",{"reviewCount":8},{"description":940,"installMethods":941,"name":942,"sourceUrl":891},"Configure popular MCP servers for enhanced agent capabilities",{"claudeCode":889},"mcp-setup",{"basePath":944,"githubOwner":894,"githubRepo":895,"locale":18,"slug":942,"type":250},"skills/mcp-setup",{"evaluate":946,"extract":950},{"promptVersionExtension":207,"promptVersionScoring":208,"score":869,"tags":947,"targetMarket":220,"tier":846},[901,900,214,948,949],"agent","tooling",{"commitSha":256},{"parentExtensionId":904,"repoId":905},[948,214,900,901,949],{"evaluatedAt":954,"extractAt":909,"updatedAt":954},1778699492025,{"_creationTime":956,"_id":957,"community":958,"display":959,"identity":962,"providers":965,"relations":973,"tags":974,"workflow":975},1778699234184.611,"k179b6dkc777g1rgyecze04wqn86m6y4",{"reviewCount":8},{"description":960,"installMethods":961,"name":895,"sourceUrl":891},"Process-first advisor routing for Claude, Codex, or Gemini via `omc ask`, with artifact capture and no raw CLI assembly",{"claudeCode":889},{"basePath":963,"githubOwner":894,"githubRepo":895,"locale":18,"slug":964,"type":250},"skills/ask","ask",{"evaluate":966,"extract":972},{"promptVersionExtension":207,"promptVersionScoring":208,"score":869,"tags":967,"targetMarket":220,"tier":846},[214,928,968,969,970,971],"llm","prompting","code-review","artifact-generation",{"commitSha":256,"license":848},{"parentExtensionId":904,"repoId":905},[971,928,214,970,968,969],{"evaluatedAt":976,"extractAt":909,"updatedAt":976},1778699303045]