Browse Skills — Page 167
31,078 public skills · showing 16,601–16,700
- 100/100
lovstudio-fill-form
lovstudio/skills
>
- 100/100
lovstudio-fill-web-form
lovstudio/skills
>
- 100/100
lovstudio-find-logo
lovstudio/skills
>
- 100/100
lovstudio-image-creator
lovstudio/skills
>
- 90/100
lovstudio-maintain-partners
lovstudio/skills
>
- 100/100
lovstudio-pdf2png
lovstudio/skills
>
- 100/100
lovstudio-png2svg
lovstudio/skills
>
- 100/100
lovstudio-proposal
lovstudio/skills
Generate complete business proposals for client projects. Takes client requirement documents (docx/pdf/md) or verbal descriptions as input, outputs a professionally formatted proposal with technical architecture, budget, timeline, risk analysis, and team introduction. Automatically calls illustrate for images and any2pdf for final PDF delivery. Trigger when user mentions "商务方案", "合作评估", "项目评估", "报价方案", "proposal", "需求评估", "给客户出方案", or wants to generate a client-facing project proposal from requirements.
- 100/100
lovstudio-review-doc
lovstudio/skills
>
- 100/100
lovstudio-solution-architect
lovstudio/skills
Create research-backed product and technical solution plans from a user's requirement. Use when the user asks for detailed feasibility analysis, technology selection, architecture, implementation roadmap, library/vendor comparison, "解决方案", "技术方案", "产品方案", "选型", "调研分析", or a Lovstudio.ai / 手工川工作室 branded solution. Prioritize modern popular open-source DIY options over legacy libraries, from-scratch builds, commercial APIs, and commercial products.
- 100/100
lovstudio-style-clone
lovstudio/skills
>
- 100/100
lovstudio-thesis-polish
lovstudio/skills
>
- 100/100
lovstudio-translation-review
lovstudio/skills
>
- 100/100
lovstudio-write-professional-book
lovstudio/skills
Write multi-chapter books (technical, tutorial, monograph, etc.) end-to-end. Handles outline planning, per-chapter drafting that stays coherent across long manuscripts, chapter review, and final HTML/PDF build. Trigger when user mentions "写书", "写一本书", "出书", "技术书", "book writing", "逐章写作", "O'Reilly", "mdbook", or wants to author a multi-chapter book.
- 100/100
lovstudio-wxmp-cracker
lovstudio/skills
微信公众号文章抓取与导出。自动处理 mp.weixin.qq.com 的登录态获取与续期, 支持按公众号搜索、抓取文章列表与正文、按日期窗口导出 Markdown / JSON / CSV。 Trigger when the user wants to crawl a WeChat public account, export recent articles, or 提到 "wcx"、"微信公众号"、"公众号文章"、"mp.weixin"、"抓公众号"、 "crawl wechat official account"、"wxmp"、"最近十天的文章"。
- 100/100
lowpoly-style
arjun988/blender-skills
Low-poly art direction for Blender inspired by PS1/PS2, Lethal Company, Mouthwashing, and Fear to Fathom. Use for readable silhouettes, minimal polygons, simple materials, and strong atmosphere.
- 100/100
loyverse-automation
ComposioHQ/awesome-claude-skills
"Automate Loyverse tasks via Rube MCP (Composio). Always search tools first for current schemas."
- 100/100
LP Lock Check
aaronjmars/aeon
Resolve a token's main liquidity pool on Base and classify whether its LP is burned/locked or removable (rug-pull risk). Keyless — no explorer key needed.
- 100/100
lp-milp-formulation
NVIDIA/skills
LP/MILP concepts and going from problem text to formulation. What LP/MILP are, required formulation questions, typical modeling elements, and how to parse problem statements (parameters, constraints, decisions, objective).
- 100/100
lsp
code-yeongyu/oh-my-openagent
Use when Codex needs language-server diagnostics, definitions, references, symbols, or rename safety checks in the current workspace.
- 100/100
lsp-architecture
blackwell-systems/agent-lsp
Generate a structural architecture overview of a codebase: languages, package map, entry points, dependency graph, and hotspots. One call for the big picture.
- 100/100
lsp-code-analysis
mkurman/zorai
Semantic code analysis via LSP. Navigate code (definitions, references, implementations), search symbols, preview refactorings, and get file outlines. Use for exploring unfamiliar codebases or performing safe refactoring.
- 100/100
lsp-concurrency-audit
blackwell-systems/agent-lsp
Concurrency safety audit for a type or file. Maps all fields, traces which are accessed from concurrent contexts (goroutines, threads, async tasks), and flags fields that lack synchronization. Produces a field-level safety report. Language-agnostic across 4 concurrency families.
- 100/100
lsp-cross-repo
blackwell-systems/agent-lsp
Cross-repository analysis — find all callers of a library symbol in one or more consumer repos. Use when refactoring a shared library and need to understand how consumers use it.
- 100/100
lsp-dead-code
blackwell-systems/agent-lsp
Enumerate exported symbols in a file and surface those with zero references across the workspace. Use when auditing for dead code, cleaning up APIs, or checking which exports are safe to remove.
- 100/100
lsp-docs
blackwell-systems/agent-lsp
Three-tier documentation lookup for any symbol — hover → offline toolchain doc → source definition. Use when hover text is absent, insufficient, or the symbol is in an unindexed dependency.
- 100/100
lsp-edit-export
blackwell-systems/agent-lsp
Safe workflow for editing exported symbols or public APIs. Use when changing a function signature, modifying a public type, or altering any symbol used outside its own package — finds all callers first so nothing breaks silently.
- 100/100
lsp-edit-symbol
blackwell-systems/agent-lsp
Edit a named symbol without knowing its file or position. Use when you want to change a function, type, or variable by name and don't have exact coordinates. Resolves the symbol to its definition, retrieves its full range, and applies the edit.
- 100/100
lsp-engineering
elophanto/EloPhanto
Language Server Protocol specialist building unified code intelligence systems through LSP client orchestration and semantic indexing. Adapted from msitarzewski/agency-agents.
- 100/100
lsp-explore
blackwell-systems/agent-lsp
"Tell me about this symbol": hover + implementations + call hierarchy + references in one pass — for navigating unfamiliar code.
- 100/100
lsp-extract-function
blackwell-systems/agent-lsp
Extract a selected code block into a named function. Primary path uses the language server's extract-function code action; falls back to manual extraction when no code action is available. Validates captured variables, scope shadowing, and compilation after extraction.
- 100/100
lsp-fix-all
blackwell-systems/agent-lsp
Apply available quick-fix code actions for all current diagnostics in a file, one at a time with re-collection between each fix. Use to bulk-resolve errors and warnings the language server can fix automatically.
- 100/100
lsp-format-code
blackwell-systems/agent-lsp
Format a file or selection using the language server's formatter. Use before committing to apply consistent style, or after generating code to clean up indentation and spacing. Supports full-file and range-based formatting.
- 100/100
lsp-generate
blackwell-systems/agent-lsp
Trigger language server code generation — implement interface stubs, generate test skeletons, add missing methods, generate mock types. Uses suggest_fixes to surface generator options and execute_command to run them.
- 100/100
lsp-impact
blackwell-systems/agent-lsp
Blast-radius analysis for a symbol or file — shows all callers, type supertypes/subtypes, and reference count before you change it. Use when refactoring, deleting, or changing the signature of any function, type, or method. Also accepts a file path to surface all exported-symbol impact in one shot.
- 100/100
lsp-implement
blackwell-systems/agent-lsp
Find all concrete implementations of an interface or abstract type. Use when you need to know what types satisfy an interface, or what subtypes exist before changing a base type.
- 100/100
lsp-inspect
blackwell-systems/agent-lsp
Full code quality audit for a file, package, or directory. Supports batch mode (directory walk with --top ranking), comparison mode (--diff for branch-only issues), severity calibration by blast radius, fix suggestions, and confidence tiers. Applies a check taxonomy (dead symbols, silent failures, error wrapping, coverage gaps, test coverage, doc drift, unrecovered panics, context propagation, concurrency safety) using LSP-first strategies. Concurrency checks cover 25 languages across 4 families (goroutine, thread, async, actor). Produces a severity-tiered findings report. Language-agnostic.
- 100/100
lsp-local-symbols
blackwell-systems/agent-lsp
Fast file-scoped symbol analysis — find all usages of a symbol within the current file, list all symbols defined in the file, and get type info at a position. Use when you need local-scope analysis without a workspace-wide search.
- 100/100
lsp-node-protocol-consistency
microsoft/language-server-protocol
Keeps the Language Server Protocol specification and the vscode-languageserver-node TypeScript implementation aligned. Use when adding, changing, reviewing, or auditing LSP requests, notifications, capabilities, registration options, wire types, proposed or final status, since tags, meta-model data, or related documentation across microsoft/language-server-protocol and microsoft/vscode-languageserver-node.
- 100/100
lsp-onboard
blackwell-systems/agent-lsp
First-session project onboarding. Explores the project structure, detects build system, test runner, entry points, and key architecture patterns. Produces a structured project profile the agent can reference throughout the session.
- 100/100
lsp-refactor
blackwell-systems/agent-lsp
Phase 5: find and run affected tests
- 100/100
lsp-rename
blackwell-systems/agent-lsp
Capture pre-rename diagnostics, execute rename, apply, verify
- 100/100
lsp-safe-edit
blackwell-systems/agent-lsp
Collect post-edit diagnostics, surface code actions, format
- 90/100
lsp-setup
code-yeongyu/oh-my-openagent
Configure a Language Server (LSP) for a specific language so editor/agent tooling — diagnostics, go-to-definition, find-references, rename — works. Use when you need to: configure LSP, lsp setup, set up or install a language server, fix 'no LSP server configured' / 'server not installed', choose between servers (basedpyright vs pyright vs ty vs ruff), or wire .codex/lsp-client.json / .opencode/lsp.json. 언어서버 설정. Routes by file extension to references/<language>/README.md for the exact builtin server, per-OS install commands (macOS/Linux/Windows), config snippets for both config files, initialization options, alternatives, and troubleshooting. Ships scripts: detect-lsp.ts (scan a project for languages + each server's install/config status) and verify-lsp.ts (run a real diagnostics roundtrip). Covers typescript, python, go, rust, c/c++, java, kotlin, c#/razor, swift, ruby, php, dart, elixir, zig, lua, bash, yaml, terraform, haskell, julia.
- 100/100
lsp-setup
github/awesome-copilot
Enable code intelligence (go-to-definition, find-references, hover, type info) for any programming language by installing and configuring an LSP server for Copilot CLI. Detects the OS, installs the right server, and generates the JSON configuration (user-level or repo-level). Use when you need deeper code understanding and no LSP server is configured, or when the user asks to set up, install, or configure an LSP server.
- 100/100
lsp-simulate
blackwell-systems/agent-lsp
Speculative code editing session — simulate changes in memory before touching disk. Use when planning edits that might break things, exploring refactors across multiple files, or verifying an edit is safe before applying.
- 100/100
lsp-test-correlation
blackwell-systems/agent-lsp
Find and run the tests that cover a source file. Use after editing a file to discover exactly which test files and test functions need to run — without running the entire test suite.
- 100/100
lsp-understand
blackwell-systems/agent-lsp
Deep-dive exploration of unfamiliar code — given a symbol or file, builds a complete Code Map showing type info, implementations, call hierarchy (2-level depth limit), all references, and source. Broader than lsp-explore: accepts files, synthesizes multi-symbol relationships, and produces a navigable dependency map.
- 100/100
lsp-verify
blackwell-systems/agent-lsp
Post-verification: apply code action fixes and format
- 100/100
ltx-director
artokun/comfyui-mcp
Drive the LTX Director (Timeline) node — its Add Image/Text/Audio buttons are DOM-only and cannot be clicked by an agent; edit the hidden timeline_data JSON widget instead. Load when a workflow contains LTXDirector / LTXDirectorGuide / PromptRelayEncodeTimeline, or when asked to add, move, retime, or remove timeline segments (image / text / audio / motion).
- 100/100
ltxv2-video
artokun/comfyui-mcp
Build Lightricks LTX-2 / LTX-2.3 video workflows — text-to-video, image-to-video, GGUF and bundled checkpoints, distilled model, camera control LoRAs, synchronized audio, two-stage upscaling, and swapping alternate/GGUF base models
- 100/100
Lua C Integration
TheBushidoCollective/han
Use when lua C API for extending Lua with native code including stack operations, calling C from Lua, calling Lua from C, creating C modules, userdata types, metatables in C, and performance optimization techniques.
- 100/100
Lua Coroutines
TheBushidoCollective/han
Use when lua coroutines for cooperative multitasking including coroutine creation, yielding and resuming, passing values, generators, iterators, asynchronous patterns, state machines, and producer-consumer implementations.
- 100/100
Lua Tables Patterns
TheBushidoCollective/han
Use when lua tables as the universal data structure including arrays, dictionaries, objects, metatables, object-oriented patterns, data structures, and advanced table manipulation for building flexible, efficient Lua applications.
- 100/100
luamake
actboy168/luamake
Luamake 构建系统指南——用于当前项目的 `luamake` / `make.lua` / Ninja 生成流程。当用户需要编写、修改、排查或理解 `make.lua`、目标定义、`lm:conf`、`deps` / `objdeps`、代码生成、Lua C 模块、Bee 运行时集成,或需要解决当前项目中由 `luamake` 驱动的构建问题时,使用此 skill。即使用户没有明确提到 `luamake`,但上下文明显是在处理本项目的构建脚本、构建目录、目标依赖或 `luamake` 生成的 Ninja 流程,也应使用此 skill。不要把它用于纯通用的 C/C++ 编译知识、与本项目无关的 CMake / xmake / Bazel / Meson 问题,或仅讨论编译器理论而未涉及 `luamake` / `make.lua` 的请求。
- 95/100
lucia-auth
TerminalSkills/skills
>-
- 100/100
luecken
Klotzkette/claude-fuer-deutsches-recht
Offenen Gap-Tracker anzeigen und verwalten. Laden, um zu sehen, welche Compliance-Lücken gemeldet wurden, was noch offen ist und was in Bearbeitung ist.
- 100/100
luecken-aufzeiger
Klotzkette/claude-fuer-deutsches-recht
Gap-Analyse interner Richtlinien gegen aktuelle Aufsichtsverlautbarungen (BaFin-Rundschreiben, MaRisk-Novellen, EBA-Leitlinien). Laden bei Vergleich von Bestandsrichtlinien mit neuen regulatorischen Anforderungen.
- 80/100
lulo
sendaifun/skills
Complete guide for Lulo - Solana's premier lending aggregator. Covers API integration for deposits, withdrawals, balance queries, Protected/Boosted deposits, Custom deposits, and automated yield optimization across Kamino, Drift, MarginFi, and Jupiter.
- 45/100
luma
vm0-ai/vm0-skills
Luma AI Dream Machine API for AI video and image generation. Use when
- 100/100
luma-event-attendees
gooseworks-ai/goose-skills
Find speakers, hosts, and guest profiles at conferences and events on Luma. Two modes - free direct scrape for hosts, or Apify-powered search for full guest profiles with LinkedIn/Twitter/bio.
- 100/100
lv-assigns
oliver-kriska/claude-elixir-phoenix
Inspect LiveView socket assigns for memory bloat — missing temporary_assigns,
- 100/100
lv:assigns
oliver-kriska/claude-elixir-phoenix
Inspect LiveView socket assigns for memory bloat — missing temporary_assigns, unused assigns, unbounded lists needing streams, memory estimates. Use when LiveView memory grows or you need to add temporary_assigns.
- 100/100
lyric-refiner
bitwize-music-studio/claude-ai-music-skills
Autonomous multi-pass lyric refinement for tightening, cohesion, and album unity. Use after lyrics are written to polish a track or entire album through iterative passes.
- 100/100
lyric-reviewer
bitwize-music-studio/claude-ai-music-skills
Reviews lyrics against a quality checklist before Suno generation. Use before generating tracks to catch rhyme, prosody, pronunciation, and structural issues.
- 100/100
lyric-writer
bitwize-music-studio/claude-ai-music-skills
Writes or reviews lyrics with professional prosody, rhyme craft, and quality checks. Use when writing new lyrics, revising existing lyrics, or when the user says 'let's work on a track.'
- 100/100
lyrics-video-sync
aAAaqwq/AGI-Super-Team
歌词-视频精准匹配引擎。将MP3中的歌词片段按时间轴精准匹配到对应视频clip,支持歌词提取、时间轴对齐、情绪映射、字幕烧录、音频分段混合。触发词:歌词匹配、lyrics sync、歌词卡点、音频对齐、字幕视频、lyrics video、歌词视频、音乐视频字幕
- 100/100
m3
terrylica/cc-skills
Production wiring for the MiniMax-M3 model — empirically verified flags, capabilities, and limits (thinking control via reasoning_split, native vision, response_format, 512K input ceiling, 512K output cap, n=1, docs-vs-reality discrepancies). Use when wiring or tuning MiniMax-M3, choosing M3 vs M2.7/-highspeed, switching a service off M2.7-highspeed onto M3, getting clean output without <think>, or asking what M3 supports / how big its context is. TRIGGERS - MiniMax M3, MiniMax-M3, M3 model, switch to M3, reasoning_split, M3 context length, M3 vision, M3 options, get the most out of M3.
- 100/100
m365-agent-evaluator
microsoft/skills
>
- 100/100
m365-agents-dotnet
microsoft/skills
|
- 100/100
m365-agents-dotnet
benjaminasterA/antigravity-awesome-skills
|
- 100/100
m365-agents-dotnet-v2
diegosouzapw/awesome-omni-skills
Microsoft 365 Agents SDK (.NET) workflow skill. Use this skill when the user needs Microsoft 365 Agents SDK for .NET. Build multichannel agents for Teams/M365/Copilot Studio with ASP.NET Core hosting, AgentApplication routing, and MSAL-based auth and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 95/100
m365-agents-py
benjaminasterA/antigravity-awesome-skills
|
- 95/100
m365-agents-py
microsoft/skills
|
- 95/100
m365-agents-py-v2
diegosouzapw/awesome-omni-skills
Microsoft 365 Agents SDK (Python) workflow skill. Use this skill when the user needs Microsoft 365 Agents SDK for Python. Build multichannel agents for Teams/M365/Copilot Studio with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based auth and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
m365-agents-ts
microsoft/skills
|
- 100/100
m365-agents-ts
benjaminasterA/antigravity-awesome-skills
|
- 100/100
m365-agents-ts-v2
diegosouzapw/awesome-omni-skills
Microsoft 365 Agents SDK (TypeScript) workflow skill. Use this skill when the user needs Microsoft 365 Agents SDK for TypeScript/Node.js and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
m5-onboard
anthropics/claude-plugins-official
End-to-end onboarding for a freshly-plugged-in M5Stack ESP32 device (Cardputer, Cardputer-Adv, Core, CoreS3, Stick) — detect on USB, flash UIFlow 2.0 firmware, and install the Claude Buddy MicroPython app bundle. Use whenever the user plugs in or wants to flash/provision/reset an M5Stack or ESP32 board, or says "m5-onboard go".
- 100/100
ma-playbook
alirezarezvani/claude-skills
M&A strategy for acquiring companies or being acquired. Due diligence, valuation, integration, and deal structure. Use when evaluating acquisitions, preparing for acquisition, M&A due diligence, integration planning, or deal negotiation.
- 100/100
ma-scout
Aperivue/medsci-skills
Meta-analysis topic discovery and feasibility assessment. Professor-first (profile → gap) or Topic-first (question → gap → co-author). Pre-protocol phase from idea to ranked topic list.
- 100/100
macbook-desktop-mode
terrylica/cc-skills
Configure a MacBook as an always-on-AC desktop workstation with USB device resilience, battery longevity, and self-healing audio device.
- 100/100
macd-second-golden-cross
shouldnotappearcalm/a-share-skill
A股“MACD底背离 + 零轴下二次金叉”实战分析与交易执行技能。用于把用户的盘感描述转成可执行的三档决策(上观察名单/可试错出手/必须放弃)、盘中检查单、入场与风控规则。适用于用户提到“二次金叉”“水下二次金叉”“底背离”“第一脚第二脚”“回踩验底”“MACD背离”“抄底修复”“想做但怕假信号”等场景。
- 100/100
macd-trend-resonance-stock-picker
shouldnotappearcalm/a-share-skill
基于“均线定方向,MACD定节奏”的A股选股与交易计划技能。Use when 用户要求把均线与MACD结合做选股、筛票、盘前候选池、趋势跟随、回踩再上、金叉确认、顶背离减仓、或希望把技术判断沉淀成可执行规则与风控模板。
- 100/100
machine-learning-atlas-mapping
swaruplab/operon
Maps query single-cell data to reference atlases using scArches transfer learning with scVI and scANVI models. Transfers cell type labels without retraining on combined data. Use when annotating new single-cell datasets using pre-trained reference models.
- 100/100
machine-learning-biomarker-discovery
swaruplab/operon
Selects informative features for biomarker discovery using Boruta all-relevant selection, mRMR minimum redundancy, and LASSO regularization. Use when identifying biomarkers from high-dimensional omics data.
- 100/100
machine-learning-foundations
Tibsfox/gsd-skill-creator
Supervised and unsupervised learning, bias-variance tradeoff, cross-validation, decision trees, ensemble methods, neural network fundamentals, and the practitioner's workflow from problem framing through deployment. Covers classification, regression, clustering, dimensionality reduction, regularization, hyperparameter tuning, and evaluation metrics. Use when building predictive models, selecting algorithms, or understanding the machine learning pipeline.
- 100/100
machine-learning-model-validation
swaruplab/operon
Implements nested cross-validation and stratified splits for unbiased model evaluation on biomedical datasets. Prevents data leakage and overfitting in biomarker discovery. Use when validating classifiers or optimizing hyperparameters on omics data.
- 100/100
machine-learning-omics-classifiers
swaruplab/operon
Builds classification models for omics data using RandomForest, XGBoost, and logistic regression with sklearn-compatible APIs. Includes proper preprocessing and evaluation metrics for biomarker classifiers. Use when building diagnostic or prognostic classifiers from expression or variant data.
- 100/100
machine-learning-ops-ml-pipeline
benjaminasterA/antigravity-awesome-skills
Design and implement a complete ML pipeline for: $ARGUMENTS
- 100/100
machine-learning-ops-ml-pipeline-v2
diegosouzapw/awesome-omni-skills
Machine Learning Pipeline - Multi-Agent MLOps Orchestration workflow skill. Use this skill when the user needs Design and implement a complete ML pipeline for: $ARGUMENTS and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
machine-learning-prediction-explanation
swaruplab/operon
Explains machine learning predictions on omics data using SHAP values and LIME for feature attribution. Identifies which genes or features drive classifier decisions. Use when interpreting biomarker classifiers or understanding model predictions.
- 100/100
machine-learning-survival-analysis
swaruplab/operon
Analyzes time-to-event data using Kaplan-Meier curves, log-rank tests, and Cox proportional hazards regression with lifelines. Builds survival models from clinical and omics features. Use when predicting patient survival or modeling time-to-event outcomes.
- 100/100
machines
Soul-Brews-Studio/arra-oracle-skills-cli
Fleet machines — discover nodes from contacts, ping to prove alive, create local shortcuts. Use when user says "machines", "nodes", "fleet", or wants to see/reach machines in the fleet.
- 100/100
macios-binding-creator
dotnet/macios
>
- 100/100
macios-ci-failure-inspector
dotnet/macios
Investigate and triage CI failures for dotnet/macios from Azure DevOps build URLs. Use this skill whenever the user shares a DevOps build link, asks about CI failures, wants to understand why a build failed, or asks to investigate test failures on any platform (iOS, tvOS, macOS, Mac Catalyst). Also use when the user says things like "CI is red", "tests are failing", "build broke", or "what happened in CI".
- 100/100
macios-ci-postmortem
dotnet/macios
Post-mortem analysis of CI failures across recent PRs in dotnet/macios. Identifies flaky tests, infrastructure issues, and shared regressions by analyzing builds from the last week. Files or updates GitHub issues for failures unrelated to any specific PR. Use when asked to "find flaky tests", "CI post-mortem", "what's been failing in CI", or "file issues for flaky failures".
- 100/100
macios-reviewer
dotnet/macios
>-
- 100/100
macios-xcode-beta-update
dotnet/macios
Update dotnet/macios to a new Xcode beta and validate it end-to-end. Use this skill when a user asks to bump Xcode beta versions, update macios SDK/version constants, run xtro-sharpie sanitization, and run introspection tests for iOS/tvOS/macOS/Mac Catalyst.
- 100/100
macos-automation
vellum-ai/vellum-assistant
Automate native macOS apps and system interactions via osascript (AppleScript)
Page 167 of 311