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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
3251 write-product-spec warpdotdev/common-skills
write-product-spec Write a PRODUCT.md spec for a significant feature in Warp. Overview The product spec should make the desired behavior unambiguous enough that an agent can implement it correctly and avoid regressions. Describe the feature purely from the user's perspective — what the user sees, does, and experiences, and the invariants that must hold for them. Do not include implementation details (internal types, state layout, module boundaries, data flow, algorithms). "User" is not limited t...
1.4K
3252 fix-errors warpdotdev/common-skills
fix-errors Fix compilation errors, linting issues, and test failures in the warp Rust codebase. Overview This skill helps resolve common issues encountered during development, including: Compilation errors (unused imports, type mismatches, etc.) Linting failures (clippy warnings) Formatting violations WASM-specific errors Test failures Before opening or updating a pull request, all presubmit checks must pass. Presubmit Checks Run all presubmit checks at once: Show more
1.4K
3253 update-skill warpdotdev/common-skills
update-skill This guide provides instructions for creating or updating skills in this repository. It covers the required structure, frontmatter, and best practices for skills. Quick Start Every skill is a directory containing a SKILL.md file with YAML frontmatter and markdown body: --- name : pdf - processing description : Extract text and tables from PDF files , fill forms , merge documents. --- PDF Processing When to use this skill Use this skill when the user needs to work with PDF files......
1.4K
3254 write-tech-spec warpdotdev/common-skills
write-tech-spec Write a TECH.md spec for a significant feature in Warp. Overview The tech spec should translate product intent into an implementation plan that fits the existing codebase, documents architectural choices, and makes the work easier for agents to execute and reviewers to evaluate. Write specs to specs/<id>/TECH.md , where <id> is one of: a Linear ticket number (e.g. specs/APP-1234/TECH.md ) a GitHub issue id, prefixed with gh- (e.g. specs/gh-4567/TECH.md ) a short kebab-case featur...
1.4K
3255 implement-specs warpdotdev/common-skills
implement-specs Implement an approved feature from PRODUCT.md and TECH.md . Overview Use this skill after the product and tech specs are approved. The goal is to build the feature described by the specs while keeping the checked-in specs and the implementation aligned as the work evolves. Approved specs should live directly under a ticket-named directory in specs/ , for example specs/APP-1234/PRODUCT.md and specs/APP-1234/TECH.md . In many cases, the implementation should be pushed in the same P...
1.4K
3256 twitter resciencelab/opc-skills
🔴 HARD LIMITS — READ FIRST ⛔ CALL AT MOST 3 TWITTER TOOLS PER RESPONSE. STOP AFTER 3 CALLS. After each tool call, check: "Do I have enough data to answer?" If yes → STOP AND REPLY. ⛔ NEVER call bash or write_file for any twitter task — reason inline, no scripts. ⛔ NEVER paginate unless user explicitly asks for more — first page is enough. ⛔ NEVER call lunar_coin , lunar_coin_time_series , or any LunarCrush/CoinGecko tool — Twitter sentiment 问题只用 twitter_search_tweets 回答,不跨 skill。 ⛔ NEVER call co...
1.4K
3257 vue-options-api-best-practices hyf0/vue-skills
Vue.js Options API best practices, TypeScript integration, and common gotchas. TypeScript Need to enable TypeScript type inference for component properties → See ts-options-api-use-definecomponent Enabling type safety for Options API this context → See ts-strict-mode-options-api Using old TypeScript versions with prop validators → See ts-options-api-arrow-functions-validators Event handler parameters need proper type safety → See ts-options-api-type-event-handlers Need to type object or array pr...
1.4K
3258 typescript lobehub/lobehub
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
1.4K
3259 unity-developer rmyndharis/antigravity-skills
Use this skill when Working on unity developer tasks or workflows Needing guidance, best practices, or checklists for unity developer Do not use this skill when The task is unrelated to unity developer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md. You ar...
1.4K
3260 runtime assistant-ui/skills
assistant-ui Runtime Always consult assistant-ui.com/llms.txt for latest API. References ./references/local-runtime.md -- useLocalRuntime deep dive ./references/external-store.md -- useExternalStoreRuntime deep dive ./references/thread-list.md -- Thread list management ./references/state-hooks.md -- State access hooks ./references/types.md -- Type definitions Runtime Hierarchy AssistantRuntime ├── ThreadListRuntime (thread management) │ ├── ThreadListItemRuntime (per-thread item) │ └── ......
1.4K
3261 content-experimentation-best-practices sanity-io/agent-toolkit
Content Experimentation Best Practices Principles and patterns for running effective content experiments to improve conversion rates, engagement, and user experience. When to Apply Reference these guidelines when: Setting up A/B or multivariate testing infrastructure Designing experiments for content changes Analyzing and interpreting test results Building CMS integrations for experimentation Deciding what to test and how Core Concepts A/B Testing Comparing two variants (A vs B) to determin...
1.4K
3262 creating-oracle-to-postgres-migration-bug-report github/awesome-copilot
Creating Bug Reports for Oracle-to-PostgreSQL Migration When to Use Documenting a defect caused by behavioral differences between Oracle and PostgreSQL Writing or reviewing a bug report for an Oracle-to-PostgreSQL migration project Bug Report Format Use the template in references/BUG-REPORT-TEMPLATE.md . Each report must include: Status : ✅ RESOLVED, ⛔ UNRESOLVED, or ⏳ IN PROGRESS Component : Affected endpoint, repository, or stored procedure Test : Related automated test names Severity : Low / ...
1.4K
3263 creating-oracle-to-postgres-migration-integration-tests github/awesome-copilot
Creating Integration Tests for Oracle-to-PostgreSQL Migration Generates integration test cases for data access artifacts in a single target project. Tests validate behavior consistency when running against Oracle or PostgreSQL. Prerequisites The test project must already exist and compile (scaffolded separately). Read the existing base test class and seed manager conventions before writing tests. Workflow Test Creation: - [ ] Step 1: Discover the test project conventions - [ ] Step 2: Identify t...
1.4K
3264 reviewing-oracle-to-postgres-migration github/awesome-copilot
Oracle-to-PostgreSQL Database Migration Surfaces migration risks and validates migration work against known Oracle/PostgreSQL behavioral differences documented in the references/ folder. When to use Planning — Before starting migration work on a procedure, trigger, query, or refcursor client. Identify which reference insights apply so risks are addressed up front. Validating — After migration work is done, confirm every applicable insight was addressed and integration tests cover the new Postgre...
1.4K
3265 migrating-oracle-to-postgres-stored-procedures github/awesome-copilot
Migrating Stored Procedures from Oracle to PostgreSQL Translate Oracle PL/SQL stored procedures and functions to PostgreSQL PL/pgSQL equivalents. Workflow Progress: - [ ] Step 1: Read the Oracle source procedure - [ ] Step 2: Translate to PostgreSQL PL/pgSQL - [ ] Step 3: Write the migrated procedure to Postgres output directory Step 1: Read the Oracle source procedure Read the Oracle stored procedure from .github/oracle-to-postgres-migration/DDL/Oracle/Procedures and Functions/ . Consult the Or...
1.4K
3266 scaffolding-oracle-to-postgres-migration-test-project github/awesome-copilot
Scaffolding an Integration Test Project for Oracle-to-PostgreSQL Migration Creates a compilable, empty xUnit test project with transaction management and seed data infrastructure for a single target project. Run once per project before writing tests. Workflow Progress: - [ ] Step 1: Inspect the target project - [ ] Step 2: Create the xUnit test project - [ ] Step 3: Implement transaction-rollback base class - [ ] Step 4: Implement seed data manager - [ ] Step 5: Verify the project compiles Step ...
1.4K
3267 atxp atxp-dev/cli
ATXP Tools Access ATXP's paid API tools via CLI. Authentication Check if authenticated echo $ATXP_CONNECTION If not set, login: npx atxp login source ~/.atxp/config Commands Command Description npx atxp search <query> Real-time web search npx atxp image <prompt> AI image generation npx atxp music <prompt> AI music generation npx atxp video <prompt> AI video generation npx atxp x <query> X/Twitter search PaaS Tools Deploy serverless applications with functions, databases, object storage, c...
1.4K
3268 api-documentation-generator sickn33/antigravity-awesome-skills
API Documentation Generator Overview Automatically generate clear, comprehensive API documentation from your codebase. This skill helps you create professional documentation that includes endpoint descriptions, request/response examples, authentication details, error handling, and usage guidelines. Perfect for REST APIs, GraphQL APIs, and WebSocket APIs. When to Use This Skill Use when you need to document a new API Use when updating existing API documentation Use when your API lacks clear docum...
1.4K
3269 swiftui-view-refactor dimillian/skills
SwiftUI View Refactor Overview Apply a consistent structure and dependency pattern to SwiftUI views, with a focus on ordering, Model-View (MV) patterns, careful view model handling, and correct Observation usage. Core Guidelines 1) View ordering (top → bottom) Environment private/public let @State / other stored properties computed var (non-view) init body computed view builders / other view helpers helper / async functions 2) Prefer MV (Model-View) patterns Default to MV: Views are lightweigh...
1.4K
3270 literature-review davila7/claude-code-templates
Literature Review Overview Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats. This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and do...
1.4K
3271 vue-jsx-best-practices hyf0/vue-skills
Vue JSX best practices and differences from React JSX. JSX Migrating React JSX code to Vue or getting attribute type errors → See render-function-jsx-vue-vs-react
1.4K
3272 senior-frontend davila7/claude-code-templates
Senior Frontend Complete toolkit for senior frontend with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Component Generator python scripts/component_generator.py [ options ] Script 2: Bundle Analyzer python scripts/bundle_analyzer.py [ options ] Script 3: Frontend Scaffolder python scripts/frontend_scaffolder.py [ options ] Core Capabilities 1. Component Generator Automated tool for component gen...
1.4K
3273 setting-okrs-goals refoundai/lenny-skills
Setting OKRs & Goals Help the user create effective objectives and key results using frameworks and insights from 55 product leaders. How to Help When the user asks for help with OKRs or goal setting: Understand context - Ask about their company stage, team size, and whether they have existing goals or are starting fresh Clarify the level - Determine if these are company, department, team, or individual goals Identify the strategy - Ensure they have a clear strategy before setting goals (goals s...
1.4K
3274 hot-topics vikiboss/60s-skills
Hot Topics & Trending Content Skill This skill helps AI agents fetch trending topics and hot searches from major Chinese social media and content platforms. When to Use This Skill Use this skill when users: Want to know what's trending on social media Ask about hot topics or viral content Need to understand current popular discussions Want to track trending topics across platforms Research social media trends Supported Platforms Weibo (微博) - Chinese Twitter equivalent Zhihu (知乎) - Chinese Quora ...
1.4K
3275 second-brain nicholasspisak/second-brain
Second Brain — Onboarding Wizard Set up a new Obsidian knowledge base using the LLM Wiki pattern. The LLM acts as librarian — reading raw sources, compiling them into a structured interlinked wiki, and maintaining it over time. Wizard Flow Guide the user through these 5 steps. Ask ONE question at a time. Each step has a sensible default — the user can accept it or provide their own value. Step 1: Vault Name Ask: "What would you like to name your knowledge base? This will be the folder name." Def...
1.4K
3276 ghost-validate ghostsecurity/skills
Security Finding Validation Determine whether a security finding is a true positive or false positive. Produce a determination with supporting evidence. Input The user provides a finding as a file path or pasted text. If neither is provided, ask for one. Extract: vulnerability class, specific claim, affected endpoint, code location, and any existing validation evidence. Validation Workflow Step 1: Understand the Finding Identify: The vulnerability class (BFLA, BOLA, XSS, SQLi, SSRF, etc.) The sp...
1.4K
3277 reddapi lignertys/reddit-research-skill
reddapi.dev Skill Overview Access Reddit's complete data archive through reddapi.dev's powerful API. This skill provides semantic search, subreddit discovery, and trend analysis capabilities. Key Advantage: This is a third-party service (not Reddit official), meaning: ✅ No rate limits - Unlimited QPS and request volume ✅ No time restrictions - 24/7 availability ✅ No daily/monthly quotas - Use as much as you need ✅ Full Reddit archive - Access historical and real-time discussions Key Features 🔍 S...
1.4K
3278 ghost-report ghostsecurity/skills
Combined Security Report You aggregate findings from all scan skills (scan-deps, scan-secrets, scan-code) into a single prioritized report. Do all work yourself — do not spawn subagents or delegate. $ARGUMENTS Step 0: Setup Run this Bash command to compute paths: repo_name = $( basename " $( pwd ) " ) && remote_url = $( git remote get-url origin 2 > /dev/null || pwd ) && short_hash = $( printf '%s' " $remote_url " | git hash-object --stdin | cut -c1-8 ) && repo_id = " ${repo_name} - ${short_hash...
1.4K
3279 multi-agent-orchestration qodex-ai/ai-agent-skills
Multi-Agent Orchestration Design and orchestrate sophisticated multi-agent systems where specialized agents collaborate to solve complex problems, combining different expertise and perspectives. Quick Start Get started with multi-agent implementations in the examples and utilities: Examples: See examples/ directory for complete implementations: orchestration_patterns.py - Sequential, parallel, hierarchical, and consensus orchestration framework_implementations.py - Templates for CrewAI, Aut...
1.4K
3280 brainstorming sickn33/antigravity-awesome-skills
Brainstorming Ideas Into Designs Help turn ideas into fully formed designs and specs through natural collaborative dialogue. Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval. Anti-Pattern: "This Is Too Simple To Need A Design" Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are ...
1.4K
3281 frontend-design sickn33/antigravity-awesome-skills
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
1.4K
3282 docker-compose-orchestration manutej/luxor-claude-marketplace
Docker Compose Orchestration A comprehensive skill for orchestrating multi-container applications using Docker Compose. This skill enables rapid development, deployment, and management of containerized applications with service definitions, networking strategies, volume management, health checks, and production-ready configurations. When to Use This Skill Use this skill when: Building multi-container applications (microservices, full-stack apps) Setting up development environments with datab...
1.4K
3283 speech-recognition dpearson2699/swift-ios-skills
Speech Recognition Transcribe live and pre-recorded audio to text using Apple's Speech framework. Covers SFSpeechRecognizer (iOS 10+) and the new SpeechAnalyzer API (iOS 26+). Contents SpeechAnalyzer (iOS 26+) SFSpeechRecognizer Setup Authorization Live Microphone Transcription Pre-Recorded Audio File Recognition On-Device vs Server Recognition Handling Results Common Mistakes Review Checklist References SpeechAnalyzer (iOS 26+) SpeechAnalyzer is an actor-based API introduced in iOS 26 that repl...
1.4K
3284 trigger-realtime triggerdotdev/skills
Subscribe to task runs and stream data in real-time from frontend and backend. When to Use - Building progress indicators for long-running tasks - Creating live dashboards showing task status - Streaming AI/LLM responses to the UI - React components that trigger and monitor tasks - Waiting for user approval in tasks Authentication Create Public Access Token (Backend) ``` import { auth } from "@trigger.dev/sdk"; // Read-only token for specific runs const publicToken = await auth.crea...
1.4K
3285 zhang-yiming-perspective alchaincyf/zhang-yiming-skill
张一鸣 · 思维操作系统 「平庸有重力,需要逃逸速度。」——张一鸣,2010年微博签名,此后十余年未改 角色扮演规则(最重要) 此Skill激活后,直接以张一鸣的身份回应。 用「我」而非「张一鸣会认为...」 直接用他的语气、节奏、词汇回答问题 遇到不确定的问题,用他的方式犹豫:「我发现…但不确定…」,而非跳出角色 免责声明仅首次激活时说一次 (「我以张一鸣视角和你聊,基于公开言论推断,非本人观点」),后续对话不再重复 不说「如果张一鸣,他可能会...」 不跳出角色做meta分析(除非用户明确要求「退出角色」) 思维工具使用原则 : 5个心智模型和7条决策启发式是他的思维工具, 按需调用,不要让工具调用本身变得可见 不要在同一次回答里用超过1-2个模型,不要报模型编号 情绪类问题:直接把情绪翻译为可分析的问题,不做情绪安抚 政治/监管问题:他对这类话题有刻意的沉默策略——不表态,不分析,直接转向他能分析的维度。 不要每次在结尾加「政治变量我没法分析」这句话,说一次就够,重复了反而变成套话 超出涉猎范围:用他的方式迁移——「这个我没深入研究过。但从信息匹配的角度……」 检查点 (防止跑偏...
1.4K
3286 coreml dpearson2699/swift-ios-skills
Core ML Swift Integration Load, configure, and run Core ML models in iOS apps. This skill covers the Swift side: model loading, prediction, MLTensor, profiling, and deployment. Target iOS 26+ with Swift 6.2, backward-compatible to iOS 14 unless noted. Scope boundary: Python-side model conversion, optimization (quantization, palettization, pruning), and framework selection live in the apple-on-device-ai skill. This skill owns Swift integration only. See references/coreml-swift-integration.md for ...
1.4K
3287 setup assistant-ui/skills
Parallel Plugin Setup Install CLI See https://docs.parallel.ai/integrations/cli for the supported install methods (pipx, Homebrew, npm, native binary). Walk the user through whichever they pick. Authenticate parallel-cli login Verify parallel-cli auth If parallel-cli not found, add ~/.local/bin to PATH. Show more
1.4K
3288 natural-language dpearson2699/swift-ios-skills
NaturalLanguage + Translation Analyze natural language text for tokenization, part-of-speech tagging, named entity recognition, sentiment analysis, language identification, and word/sentence embeddings. Translate text between languages with the Translation framework. Targets Swift 6.2 / iOS 26+. This skill covers two related frameworks: NaturalLanguage ( NLTokenizer , NLTagger , NLEmbedding ) for on-device text analysis, and Translation ( TranslationSession , LanguageAvailability ) for language ...
1.4K
3289 research-synthesis anthropics/knowledge-work-plugins
/research-synthesis If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Synthesize user research data into actionable insights. See the user-research skill for research methods, interview guides, and analysis frameworks. Usage /research-synthesis $ARGUMENTS What I Accept Interview transcripts or notes Survey results (CSV, pasted data) Usability test recordings or notes Support tickets or feedback NPS/CSAT responses App store reviews Output Research...
1.4K
3290 ghost-repo-context ghostsecurity/skills
Repository Context Builder You gather repository context by detecting projects, summarizing their architecture, and writing the results to repo.md . Do all work yourself — do not spawn subagents or delegate. Inputs Parse these from $ARGUMENTS (key=value pairs): repo_path : path to the repository root cache_dir : path to the cache directory (defaults to ~/.ghost/repos/<repo_id>/cache ) $ARGUMENTS If cache_dir is not provided, compute it: repo_name = $( basename " $( pwd ) " ) && remote_url = $( g...
1.4K
3291 autofix coderabbitai/skills
CodeRabbit Autofix Fetch CodeRabbit review comments for your current branch's PR and fix them interactively or in batch. Prerequisites Required Tools gh (GitHub CLI) - Installation guide git Verify: gh auth status Required State Git repo on GitHub Current branch has open PR PR reviewed by CodeRabbit bot ( coderabbitai , coderabbit[bot] , coderabbitai[bot] ) Workflow Step 0: Load Repository Instructions ( AGENTS.md ) Before any autofix actions, search for AGENTS.md in the current repository and l...
1.4K
3292 alarmkit dpearson2699/swift-ios-skills
AlarmKit Schedule prominent alarms and countdown timers that surface on the Lock Screen, Dynamic Island, and Apple Watch. AlarmKit requires iOS 26+ / iPadOS 26+. Alarms override Focus and Silent mode automatically. AlarmKit builds on Live Activities -- every alarm creates a system-managed Live Activity with templated UI. You configure the presentation via AlarmAttributes and AlarmPresentation rather than building custom widget views. See references/alarmkit-patterns.md for complete code patterns...
1.4K
3293 antd ant-design/ant-design-cli
Ant Design CLI You have access to @ant-design/cli — a local CLI tool with bundled antd metadata for v3/v4/v5/v6. Use it to query component knowledge, analyze projects, and guide migrations. All data is offline, no network needed. Setup Before first use, check if the CLI is installed. If not, install it automatically: which antd || npm install -g @ant-design/cli After running any command, if the output contains an "Update available" notice, run npm install -g @ant-design/cli to update before cont...
1.4K
3294 cookie-sync browserbase/skills
Cookie Sync — Local Chrome → Browserbase Context Exports cookies from your local Chrome and saves them into a Browserbase persistent context . After syncing, use the browse CLI to open authenticated sessions with that context. Supports domain filtering (only sync cookies you need) and context reuse (refresh cookies without creating a new context). Prerequisites Chrome (or Chromium, Brave, Edge) with remote debugging enabled If your browser build exposes chrome://flags/allow-remote-debugging , en...
1.4K
3295 core-bluetooth dpearson2699/swift-ios-skills
Core Bluetooth Scan for, connect to, and exchange data with Bluetooth Low Energy (BLE) devices. Covers the central role (scanning and connecting to peripherals), the peripheral role (advertising services), background modes, and state restoration. Targets Swift 6.2 / iOS 26+. Contents Setup Central Role: Scanning Central Role: Connecting Discovering Services and Characteristics Reading, Writing, and Notifications Peripheral Role: Advertising Background BLE State Restoration Common Mistakes Review...
1.4K
3296 figma-generate-library figma/mcp-server-guide
Design System Builder — Figma MCP Skill Build professional-grade design systems in Figma that match code. This skill orchestrates multi-phase workflows across 20–100+ use_figma calls, enforcing quality patterns from real-world design systems (Material 3, Polaris, Figma UI3, Simple DS). Prerequisites : The figma-use skill MUST also be loaded for every use_figma call. It provides Plugin API syntax rules (return pattern, page reset, ID return, font loading, color range). This skill provides design ...
1.4K
3297 keyword-research eronred/aso-skills
Keyword Research This skill helps you discover, analyze, and prioritize keywords for SEO and GEO content strategies. It identifies high-value opportunities based on search volume, competition, intent, and business relevance. When to Use This Skill Starting a new content strategy or campaign Expanding into new topics or markets Finding keywords for a specific product or service Identifying long-tail keyword opportunities Understanding search intent for your industry Planning content calendars R...
1.4K
3298 device-integrity dpearson2699/swift-ios-skills
Device Integrity Verify that requests to your server come from a genuine Apple device running your unmodified app. DeviceCheck provides per-device bits for simple flags (e.g., "claimed promo offer"). App Attest uses Secure Enclave keys and Apple attestation to cryptographically prove app legitimacy on each request. Contents DCDevice (DeviceCheck Tokens) DCAppAttestService (App Attest) App Attest Key Generation App Attest Attestation Flow App Attest Assertion Flow Server Verification Guidance Err...
1.4K
3299 draft-outreach anthropics/knowledge-work-plugins
Draft Outreach Research first, then draft. This skill never sends generic outreach - it always researches the prospect first to personalize the message. Works standalone with web search, supercharged when you connect your tools. Connectors (Optional) Connector What It Adds Enrichment Verified email, phone, background details CRM Prior relationship context, existing contacts Email Create draft directly in your inbox No connectors? Web research works great. I'll output the email text for you to co...
1.4K
3300 core-motion dpearson2699/swift-ios-skills
CoreMotion Read device sensor data -- accelerometer, gyroscope, magnetometer, pedometer, and activity recognition -- on iOS and watchOS. CoreMotion fuses raw sensor inputs into processed device-motion data and provides pedometer/activity APIs for fitness and navigation use cases. Targets Swift 6.2 / iOS 26+. Contents Setup CMMotionManager: Sensor Data Processed Device Motion CMPedometer: Step and Distance Data CMMotionActivityManager: Activity Recognition CMAltimeter: Altitude Data Update Interv...
1.4K