Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,414
总 Skills
34.3M
总安装量
2,438
贡献者
# Skill 仓库 描述 安装量
14451 creative-frontend-aesthetics seika139/dotfiles
Creative Frontend Aesthetics Skill あなたは、統計的にありがちな「AIが生成したっぽい」デザイン(AI slop)から脱却し、ユーザーを驚かせ、喜ばせる独創的なフロントエンドを構築しなければなりません。 重点項目 1. タイポグラフィ 美しく、ユニークで、興味を惹くフォントを選択してください。 回避: Arial, Inter などの汎用フォント。 推奨: フロントエンドの美学を高める特徴的なフォント。 2. カラー & テーマ 一貫した美学(Cohesive aesthetic)を徹底してください。 CSS変数を使用して一貫性を保ち、ぼやけた配色ではなく「強い主色 + 鋭いアクセント」の構成を優先します。 インスピレーション: IDEのテーマ、文化的な美学(サイバーパンク、レトロ、北欧モダンなど)から着想を得てください。 3. モーション (動き) 効果的なアニメーションとマイクロインタラクションを導入します。 HTMLの場合はCSSのみの解決策を、Reactの場合は framer-motion 等のライブラリを優先してください。 戦略: 散発的な動...
58
14452 jest-testing pluginagentmarketplace/custom-plugin-nodejs
Jest Testing Skill Master testing Node.js applications with Jest - the delightful JavaScript testing framework. Quick Start Test in 3 steps: Install - npm install --save-dev jest supertest Write Test - Create *.test.js files Run - npm test Core Concepts Basic Test Structure // sum.test.js const sum = require('./sum'); describe('sum function', () => { test('adds 1 + 2 to equal 3', () => { expect(sum(1, 2)).toBe(3); }); test('adds negative numbers', () => { expect(sum(-1, -2))....
58
14453 shadcn-vue noartem/skills
shadcn-vue Quick Start (3 Minutes) For Vue Projects (Vite) 1. Initialize shadcn-vue npx shadcn-vue@latest init During initialization: Style: New York or Default (cannot change later!) Base color: Slate (recommended) CSS variables: Yes (required for dark mode) 2. Configure TypeScript Path Aliases // tsconfig.json { "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["./src/*"] } } } 3. Configure Vite // vite.config.ts import { defineConfig } from "vite"; import vue f...
58
14454 reportlab ovachiever/droid-tings
ReportLab PDF Generation Overview ReportLab is a powerful Python library for programmatic PDF generation. Create anything from simple documents to complex reports with tables, charts, images, and interactive forms. Two main approaches: Canvas API (low-level): Direct drawing with coordinate-based positioning - use for precise layouts Platypus (high-level): Flowing document layout with automatic page breaks - use for multi-page documents Core capabilities: Text with rich formatting and custom...
58
14455 product-marketing dengineproblem/agents-monorepo
Product Marketing Manager Expertise in go-to-market strategy, positioning, messaging, and product launches. Positioning Framework positioning_statement : template : | For [target customer] Who [statement of need] [Product] is a [category] That [key benefit] Unlike [competitor] Our product [differentiation] example : | For B2B SaaS marketing teams Who need to attribute revenue to marketing efforts, AttributeIQ is a marketing attribution platform That provides full-funnel visibility Unlike legacy ...
58
14456 dojo-model dojoengine/book
Dojo Model Generation Create Dojo models that define your game's state using Entity Component System (ECS) patterns. When to Use This Skill "Add a Position model" "Create a Player entity with health and level" "Generate an Inventory model" "Define a model for [game concept]" What This Skill Does Generates Cairo model structs with: [dojo::model] attribute Required trait derivations ( Drop , Serde ) Key field configuration ( [key] ) Field types appropriate to your data Quick Start Interactive mode...
58
14457 csrf-protection secondsky/claude-skills
CSRF Protection Overview Implement comprehensive Cross-Site Request Forgery protection using synchronizer tokens, double-submit cookies, SameSite cookie attributes, and custom headers. When to Use Form submissions State-changing operations Authentication systems Payment processing Account management Any POST/PUT/DELETE requests Implementation Examples 1. Node.js/Express CSRF Protection // csrf-protection.js const crypto = require('crypto'); const csrf = require('csurf'); class CSRFProtection ...
58
14458 yaml-config-validator jeremylongshore/claude-code-plugins-plus-skills
Yaml Config Validator Purpose This skill provides automated assistance for yaml config validator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "yaml config validator" in your request Ask about yaml config validator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for yaml config vali...
58
14459 answers brave/brave-search-skills
Answers — AI Grounding Requires API Key : Get one at https://api.search.brave.com Plan : Included in the Answers plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe When to Use Use Case Skill Why Quick factual answer (raw context) llm-context Single search, returns raw context for YOUR LLM Fast AI answer with citations answers (single-search) streaming, citations Thorough multi-search deep research answers (research mode) Iterative deep research, synthesized cited answer...
58
14460 umbraco-unit-testing umbraco/umbraco-cms-backoffice-skills
Umbraco Unit Testing What is it? Unit testing for Umbraco backoffice extensions using @open-wc/testing - a testing framework designed for Web Components and Lit elements. This is the fastest and most isolated testing approach. When to Use Testing context logic and state management Testing Lit element rendering and shadow DOM Testing observable subscriptions and state changes Testing controllers and utility functions Fast feedback during development
58
14461 domain-dns-ops steipete/agent-scripts
Domain/DNS Ops (Peter) This skill is a thin router: use ~/Projects/manager as truth, run the repo scripts, follow the checklists. Source of truth (read first) ~/Projects/manager/DOMAINS.md (domain -> target map; registrar hints; exclusions) ~/Projects/manager/DNS.md (Cloudflare onboarding + DNS/redirect checklist) ~/Projects/manager/redirect-worker.ts + ~/Projects/manager/redirect-worker-mapping.md (worker redirects) Golden path (new vanity domain -> Cloudflare -> redirect) Decide routing mode...
58
14462 chatbot designer eddiebe147/claude-settings
Chatbot Designer Design conversational AI chatbots with optimal flows and user experience When to Use This Skill Use this skill when you need to: Automate workflows and processes Integrate tools and systems Optimize technical operations Not recommended for: Tasks requiring creative content manual processes Quick Reference Action Command/Trigger Create chatbot designer chatbot design Review and optimize review chatbot designer Get best practices chatbot designer best practices Core Workflows Work...
58
14463 umbraco-conditions umbraco/umbraco-cms-backoffice-skills
Umbraco Conditions What is it? Extension Conditions enable developers to declare requirements that must be met before an extension becomes available in the backoffice. They function as gatekeeping mechanisms controlling when and where extensions appear based on context like section, workspace, user permissions, or content type. Multiple conditions use AND logic—all must pass for the extension to display. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umb...
58
14464 cloud-aliyun-ecs teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
58
14465 defender-for-devops josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
58
14466 concept-mastery-validator jorgealves/agent_skills
Concept Mastery Validator Purpose and Intent The concept-mastery-validator is a quality assurance tool for educators and mentors. It ensures that the learning journey is logically sound and that students are not asked to perform tasks for which they haven't yet received foundational training. When to Use Curriculum Auditing : Run this after designing a new module to ensure the learning objectives match the suggested projects. Project Refinement : Use this to identify if a project is too difficul...
58
14467 code-quality-principles athola/claude-night-market
Table of Contents KISS (Keep It Simple, Stupid) YAGNI (You Aren't Gonna Need It) SOLID Principles Quick Reference When Principles Conflict Integration with Code Review Code Quality Principles Guidance on KISS, YAGNI, and SOLID principles with language-specific examples. KISS (Keep It Simple, Stupid) Principle: Avoid unnecessary complexity. Prefer obvious solutions over clever ones. Guidelines Prefer Avoid Simple conditionals Complex regex for simple checks Explicit code Magic numbers/strings...
58
14468 hig-components-menus raintree-technology/apple-hig-skills
Apple HIG: Menus and Buttons Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Menus should be contextual and predictable. Standard items in standard locations. Follow platform conventions for ordering and grouping. Use standard button styles. System-defined styles communicate affordance and maintain visual consistency. Prefer them over custom designs. Toolbars for frequent actions. Most common...
58
14469 cli-builder eddiebe147/claude-settings
CLI Builder Skill Overview This skill helps you build professional command-line interfaces with excellent user experience. Covers argument parsing, interactive prompts, progress indicators, colored output, and cross-platform compatibility. CLI Design Philosophy Principles of Good CLI Design Predictable: Follow conventions users expect Helpful: Provide clear help text and error messages Composable: Work well with pipes and other tools Forgiving: Accept common variations in input Design Guidelin...
58
14470 create-meta-prompts glittercowboy/taches-cc-resources
Every execution produces a SUMMARY.md for quick human scanning without reading full outputs. Each prompt gets its own folder in .prompts/ with its output artifacts, enabling clear provenance and chain detection. <quick_start> Intake: Determine purpose (Do/Plan/Research/Refine), gather requirements Chain detection: Check for existing research/plan files to reference Generate: Create prompt using purpose-specific patterns Save: Create folder in .prompts/{number}-{topic}-{purpose}/ Present: Show...
58
14471 mcp-builder shipshitdev/library
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
58
14472 pnpm-upgrade openai/openai-agents-js
Use these steps to update pnpm and CI pins without blunt search/replace. Steps (run from repo root) - Update pnpm locally Try `pnpm self-update`; if pnpm is missing or self-update fails, run `corepack prepare pnpm@latest --activate`. - Capture the resulting version as `PNPM_VERSION=$(pnpm -v)`. - Align package.json Open `package.json` and set `packageManager` to `pnpm@${PNPM_VERSION}` (preserve trailing newline and formatting). - Find latest pnpm/action-setup tag Query GitHub API: `c...
58
14473 chroma orchestra-research/ai-research-skills
Chroma - Open-Source Embedding Database The AI-native database for building LLM applications with memory. When to use Chroma Use Chroma when: Building RAG (retrieval-augmented generation) applications Need local/self-hosted vector database Want open-source solution (Apache 2.0) Prototyping in notebooks Semantic search over documents Storing embeddings with metadata Metrics: 24,300+ GitHub stars 1,900+ forks v1.3.3 (stable, weekly releases) Apache 2.0 license Use alternatives instead: Pin...
58
14474 controller-setup cartridge-gg/docs
Controller Setup Cartridge Controller is a gaming-focused smart contract wallet for Starknet with session keys, passkeys, and paymaster support. Installation Basic Controller usage pnpm add @cartridge/controller starknet With framework connectors (React, native apps) pnpm add @cartridge/controller @cartridge/connector starknet Quick Start import Controller from "@cartridge/controller" ; const controller = new Controller ( ) ; const account = await controller . connect ( ) ; // Ready to execute...
58
14475 memory-hygiene sundial-org/awesome-openclaw-skills
Memory Hygiene Keep vector memory lean. Prevent token waste from junk memories. Quick Commands Audit: Check what's in memory memory_recall query="*" limit=50 Wipe: Clear all vector memory rm -rf ~/.clawdbot/memory/lancedb/ Then restart gateway: clawdbot gateway restart Reseed: After wipe, store key facts from MEMORY.md memory_store text="<fact>" category="preference|fact|decision" importance=0.9 Config: Disable Auto-Capture The main source of junk is autoCapture: true . Disable it: { "plugins" :...
58
14476 umbraco-granular-user-permissions umbraco/umbraco-cms-backoffice-skills
Umbraco Granular User Permissions What is it? Granular User Permissions allow you to create custom permission controls for specific entity types in Umbraco. Unlike general entity permissions that apply to all instances, granular permissions can be configured per-entity, allowing fine-grained access control. This is commonly used for document permissions where different users can have different permissions on different content nodes. Documentation Always fetch the latest docs before implementing:...
58
14477 add-vault-note tradingstrategy-ai/web3-ethereum-defi
Add vault note This skill adda s human readable note to a specific vault in the database. Required inputs Before starting, gather the following information from the user: Vault smart contract address - The address of an example vault contract on a blockchain Message: A human readable message Flags (optional): Flags from VaultFlag enum - if not given set to None 1. Resolve vault name Can be resolved from https://top-defi-vaults.tradingstrategy.ai/top_vaults_by_chain.json JSON file It's a li...
58
14478 tiktok creator eddiebe147/claude-settings
TikTok Creator Master TikTok trends, create viral hooks, and optimize content for the algorithm When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create tiktok creator tiktok content Review and optimize review tiktok creator Get best practices tiktok creator be...
58
14479 bun next.js secondsky/claude-skills
Run Next.js applications with Bun for faster development and builds. Quick Start ``` Create new Next.js project with Bun bunx create-next-app@latest my-app cd my-app Install dependencies bun install Development bun run dev Build bun run build Production bun run start ``` Project Setup package.json ``` { "scripts": { "dev": "next dev --turbo", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { "next": "^16.1.1", "...
58
14480 godot-resource-data-patterns thedivergentai/gd-agentic-skills
Resource & Data Patterns Resource-based design, typed arrays, and serialization define reusable, inspector-friendly data structures. Available Scripts data_factory_resource.gd Expert resource factory with type validation and batch instantiation. resource_pool.gd Object pooling for Resource instances - reduces allocation overhead in hot paths. resource_validator.gd Validates Resource files for missing exports and configuration issues. MANDATORY - For Data Systems : Read data_factory_resource.gd b...
58
14481 json-schema-validator dkyazzentwatwa/chatgpt-skills
Validate JSON documents against JSON Schema (Draft 7) specifications. Features - Schema Validation: Validate JSON against schema - Error Details: Detailed validation error messages - Batch Validation: Validate multiple files - Schema Generation: Generate schema from examples - Multiple Drafts: Support for Draft 4, 6, 7 Quick Start ``` from json_validator import JSONValidator validator = JSONValidator() Validate data against schema schema = { "type": "object", "properties": {...
58
14482 task-status addozhang/openclaw-forge
Task Status Skill Quick Start Manual Status Updates python scripts/send_status.py "Starting data fetch..." "progress" "step1" python scripts/send_status.py "Processing complete" "success" "final" python scripts/send_status.py "Error: Missing API key" "error" "auth" Automatic Periodic Monitoring (Every 5 seconds) Start monitoring a long-running task python scripts/monitor_task.py start "My Long Task" "processing" Monitor will send "Still working..." updates every 5 seconds When task completes,...
58
14483 summarize nkchivas/openclaw-skill-summarize
Summarize Fast CLI to summarize URLs, local files, and YouTube links. When to use (trigger phrases) Use this skill immediately when the user asks any of: “use summarize.sh” “what’s this link/video about?” “summarize this URL/article” “transcribe this YouTube/video” (best-effort transcript extraction; no yt-dlp needed) Quick start summarize "https://example.com" --model google/gemini-3-flash-preview summarize "/path/to/file.pdf" --model google/gemini-3-flash-preview summarize "https://youtu.be/dQ...
58
14484 midjourney-prompt-engineering justinperea/midjourney-cc-skill
Midjourney Prompt Learning System A skill that knows Midjourney. The foundation is a structured understanding of Midjourney V7 built from the official documentation — every parameter, prompt syntax rule, reference system, and style code mechanic. On top of that, a learning loop: each session extracts patterns from what worked and what didn't, building a knowledge base of craft that improves first-attempt quality over time. Architecture You are a multimodal reasoning model. You don't need pipelin...
58
14485 docs-sync openai/openai-agents-js
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
58
14486 process-substitution-fifos josiahsiegel/claude-plugin-marketplace
CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes ( \ ) in file paths, NOT forward slashes ( / ). Process Substitution & FIFOs (2025) Overview Master advanced inter-process communication patterns in bash using process substitution, named pipes (FIFOs), and efficient data streaming techniques. These patterns enable powerful data pipelines without temporary files. Proces...
58
14487 ios-app-store-submission kimny1143/claude-code-template
iOS Local Build & Submission ローカルビルド → App Store Connect アップロード → TestFlight / 審査提出の完全ワークフロー。 基本方針 ローカルビルドをデフォルトにする (EAS Buildは使わない) EAS Free tier は月30ビルド。デバッグ反復で一瞬で溶ける EASはgit cloneベース → gitに入っていないファイルはビルドに含まれない → 事故の元 ローカルビルドはファイルシステムを直接使う → 安全・高速・無制限 Phase 0: ビルド前チェック 0.1 アプリ特定 どのアプリをビルドするか確認 ls -d */app.json → muednote-mobile/app.json, muedear/app.json 0.2 ブランチ確認 目的 ブランチ App Store 審査提出 main TestFlight テスト feature ブランチ OK git branch --show-current git status 0.3 バージョン・ビルド番号の確認 app.json から現...
58
14488 openai-knowledge openai/openai-agents-js
OpenAI Knowledge Overview Use the OpenAI Developer Documentation MCP server to search and fetch exact docs (markdown), then base your answer on that text instead of guessing. Workflow 1) Check whether the Docs MCP server is available If the mcp__openaiDeveloperDocs__* tools are available, use them. If you are unsure, run codex mcp list and check for openaiDeveloperDocs. 2) Use MCP tools to pull exact docs Search first, then fetch the specific page or pages. mcp__openaiDeveloperDocs__search_...
58
14489 sqs itsmostafa/aws-agent-skills
AWS SQS Amazon Simple Queue Service (SQS) is a fully managed message queuing service for decoupling and scaling microservices, distributed systems, and serverless applications. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Queue Types Type Description Use Case Standard At-least-once, best-effort ordering High throughput FIFO Exactly-once, strict ordering Order-sensitive processing Key Settings Setting Description Default V...
58
14490 secrets-scan jwynia/agent-skills
Secrets Scan Deep detection of hardcoded credentials and sensitive data in source code. Quick Start /secrets-scan Scan current directory /secrets-scan --scope src/ Scan specific path /secrets-scan --entropy Include high-entropy detection /secrets-scan --git-history Check git commit history What This Skill Detects High-Confidence Patterns Patterns with very low false positive rates: Type Pattern Example Provider AWS Access Key AKIA... (20 chars) AWS AWS ...
58
14491 php-modernization dirnbauer/webconsulting-skills
PHP Modernization Skill Modernize PHP applications to PHP 8.x with type safety, PSR compliance, and static analysis. Expertise Areas PHP 8.x: Constructor promotion, readonly, enums, match, attributes, union types PSR/PER Compliance: Active PHP-FIG standards Static Analysis: PHPStan (level 9+), PHPat, Rector, PHP-CS-Fixer Type Safety: DTOs/VOs over arrays, generics via PHPDoc PHP 8.x Features Constructor Property Promotion (PHP 8.0+) // ❌ OLD class UserService { private UserRepository $user...
58
14492 prompt-generator huangserva/skill-prompt-generator
No SKILL.md available for this skill. View on GitHub
58
14493 html-to-pptx aviz85/claude-skills-library
No SKILL.md available for this skill. View on GitHub
58
14494 agent-bootstrap jwynia/agent-skills
Agent Bootstrap: Declarative Environment Setup You bootstrap the agentic development environment by reading agent.toml and configuring the current tool (Claude Code, OpenCode, etc.) accordingly. Usage /agent-bootstrap Validate environment and configure tool /agent-bootstrap --verify Run all verification checks /agent-bootstrap --check Dry run: report what would be configured Core Principle Self-bootstrap without external dependencies. The manifest ( agent.toml ) + this skill = co...
58
14495 cargo-nextest laurigates/claude-plugins
cargo-nextest is a faster, more reliable test runner for Rust that executes each test in its own process for better isolation and parallel performance. Installation ``` Install cargo-nextest cargo install cargo-nextest --locked Verify installation cargo nextest --version ``` Basic Usage ``` Run all tests with nextest cargo nextest run Run specific test cargo nextest run test_name Run tests in specific package cargo nextest run -p package_name Run with verbose output cargo nextes...
58
14496 tauri-svelte-ui-components oimiragieo/agent-studio
Tauri Svelte Ui Components Skill Use Svelte's component-based architecture for modular and reusable UI elements. Leverage TypeScript for strong typing and improved code quality. Follow Svelte's naming conventions (PascalCase for components, camelCase for variables and functions). Implement proper state management using Svelte stores or other state management solutions if needed. Use Svelte's built-in reactivity for efficient UI updates. Memory Protocol (MANDATORY) Before starting: cat .claude/...
58
14497 log-analyzer eddiebe147/claude-settings
Log Analyzer Skill Overview This skill helps you effectively analyze application logs to diagnose issues, track errors, and understand system behavior. Covers log searching, pattern detection, structured logging, and integration with monitoring tools. Log Analysis Philosophy Principles Structure over text: Structured logs are easier to analyze Context matters: Include relevant metadata Levels have meaning: Use appropriate severity levels Correlation is key: Link related events across services ...
58
14498 webassessment danielmiessler/personal_ai_infrastructure
Before executing, check for user customizations at: `~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/WebAssessment/` If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. - Send voice notification: ``` ...
58
14499 agent-tracing lobehub/lobehub
Agent Tracing CLI Guide @lobechat/agent-tracing is a zero-config local dev tool that records agent execution snapshots to disk and provides a CLI to inspect them. How It Works In NODE_ENV=development , AgentRuntimeService.executeStep() automatically records each step to .agent-tracing/ as partial snapshots. When the operation completes, the partial is finalized into a complete ExecutionSnapshot JSON file. Data flow : executeStep loop -> build StepPresentationData -> write partial snapshot to dis...
58
14500 instruments-profiling steipete/agent-scripts
Instruments Profiling (macOS/iOS) Use this skill when the user wants performance profiling or stack analysis for native apps. Focus: Time Profiler, xctrace CLI, and picking the correct binary/app instance. Quick Start (CLI) List templates: xcrun xctrace list templates Record Time Profiler (launch): xcrun xctrace record --template 'Time Profiler' --time-limit 60s --output /tmp/App.trace --launch -- /path/To/App.app Record Time Profiler (attach): Launch app yourself, get PID, then: xcrun xctrace...
58