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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
17951 azure-ai-contentsafety-ts sickn33/antigravity-awesome-skills
Azure AI Content Safety REST SDK for TypeScript Analyze text and images for harmful content with customizable blocklists. Installation npm install @azure-rest/ai-content-safety @azure/identity @azure/core-auth Environment Variables CONTENT_SAFETY_ENDPOINT = https:// < resource > .cognitiveservices.azure.com CONTENT_SAFETY_KEY = < api-key > Authentication Important : This is a REST client. ContentSafetyClient is a function , not a class. API Key import ContentSafetyClient from "@azure-rest/ai-con...
51
17952 contract analyzer eddiebe147/claude-settings
Contract Analyzer Navigate complex contracts by systematically identifying key terms, potential risks, and negotiation opportunities. Understand what you're agreeing to before you sign. Core Workflows Workflow 1: Contract Review Document Intake - Load contract and identify type Key Terms Extraction - Pull critical dates, amounts, parties Obligation Mapping - List what each party must do Risk Flagging - Highlight concerning clauses Summary Generation - Create executive summary Workflow 2: Risk As...
51
17953 configure-memory-profiling laurigates/claude-plugins
/configure:memory-profiling Check and configure memory profiling infrastructure for Python projects using pytest-memray. When to Use This Skill Use this skill when... Use another approach when... Setting up memory profiling for a Python project from scratch Project is not Python — memray/pytest-memray are Python-only Adding pytest-memray integration for CI memory regression detection Profiling CPU performance — use cProfile or py-spy instead Configuring memory leak detection in test suites Runni...
50
17954 env-setup-assistant eddiebe147/claude-settings
Environment Setup Assistant Skill Overview This skill helps you create reproducible, developer-friendly environments. Covers IDE configuration, tool installation, dependency management, onboarding documentation, and cross-platform compatibility. Environment Setup Philosophy Principles One command setup: New developers should run one command Reproducible: Same environment everywhere Documented: Clear instructions for edge cases Versioned: Lock tool and dependency versions Goals DO: Automate eve...
50
17955 dbos-golang sickn33/antigravity-awesome-skills
DBOS Go Best Practices Guide for building reliable, fault-tolerant Go applications with DBOS durable workflows. When to Use Reference these guidelines when: Adding DBOS to existing Go code Creating workflows and steps Using queues for concurrency control Implementing workflow communication (events, messages, streams) Configuring and launching DBOS applications Using the DBOS Client from external applications Testing DBOS applications Rule Categories by Priority Priority Category Impact Prefix 1 ...
50
17956 keyword-extractor dkyazzentwatwa/chatgpt-skills
Extract important keywords and key phrases from text documents using multiple algorithms. Supports TF-IDF, RAKE, and simple frequency analysis with word cloud visualization. Quick Start ``` from scripts.keyword_extractor import KeywordExtractor Extract keywords extractor = KeywordExtractor() keywords = extractor.extract("Your long text document here...") print(keywords[:10]) Top 10 keywords From file keywords = extractor.extract_from_file("document.txt") extractor.to_wordcloud("keywords...
50
17957 component-common-domain-detection tech-leads-club/agent-skills
Common Domain Component Detection This skill identifies common domain functionality that is duplicated across multiple components and suggests consolidation opportunities to reduce duplication and improve maintainability. How to Use Quick Start Request analysis of your codebase: "Find common domain functionality across components" "Identify duplicate domain logic that should be consolidated" "Detect shared classes used across multiple components" "Analyze consolidation opportunities for common c...
50
17958 upgrade-stripe stripe/agent-toolkit
Upgrading Stripe Versions This skill covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs. Understanding Stripe API Versioning Stripe uses date-based API versions (e.g., 2025-12-15.clover, 2025-08-27.basil, 2024-12-18.acacia). Your account's API version determines request/response behavior. Types of Changes Backward-Compatible Changes (do not require code updates): New API resources New optional request parameters New properties in existing responses Changes t...
50
17959 gemini-blog sgcarstrends/sgcarstrends
Gemini Blog Generation Skill This skill helps you work with LLM-powered blog post generation in the @sgcarstrends/ai package. When to Use This Skill Creating or updating blog post generation prompts Debugging AI generation failures or quality issues Modifying content generation workflows Adding new blog post types or formats Optimising AI model parameters Working with structured output schemas Configuring Langfuse telemetry Architecture The blog generation system uses a 2-step flow with Verce...
50
17960 azure-monitor-opentelemetry-ts sickn33/antigravity-awesome-skills
Azure Monitor OpenTelemetry SDK for TypeScript Auto-instrument Node.js applications with distributed tracing, metrics, and logs. Installation Distro (recommended - auto-instrumentation) npm install @azure/monitor-opentelemetry Low-level exporters (custom OpenTelemetry setup) npm install @azure/monitor-opentelemetry-exporter Custom logs ingestion npm install @azure/monitor-ingestion Environment Variables APPLICATIONINSIGHTS_CONNECTION_STRING = InstrumentationKey = .. . ; IngestionEndpoint = .....
50
17961 brainstorm-diverge-converge lyndonkl/claude
Brainstorm Diverge-Converge Table of Contents Purpose When to Use This Skill What is Brainstorm Diverge-Converge? Workflow 1. Gather Requirements 2. Diverge (Generate Ideas) 3. Cluster (Group Themes) 4. Converge (Evaluate & Select) 5. Document & Validate Common Patterns Guardrails Quick Reference Purpose Apply structured divergent-convergent thinking to generate many creative options, organize them into meaningful clusters, then systematically evaluate and narrow to the strongest choices. This ...
50
17962 solidity-testing 0xlayerghost/solidity-agent-kit
Testing Standards Language Rule Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English. Test Organization One test contract per source contract : MyToken.sol → MyToken.t.sol File location : All tests in test/ directory Naming : test_<feature>_<scenario> for passing tests, testFail_<feature>_<scenario> for expected reverts Example: test_transfer_revertsWhenInsufficientBalance Example: test_stake_updatesBalanceCorre...
50
17963 blueprint-rules laurigates/claude-plugins
Manage modular rules for the project. Rules are markdown files in .claude/rules/ that provide context-specific instructions to Claude. When to Use This Skill Use this skill when... Use alternative when... Need to create/edit modular rules in .claude/rules/ Use /blueprint:claude-md for single-file project instructions Want to list all project and user-level rules Use /blueprint:generate-rules to auto-generate from PRDs Need to add path-specific rules for certain file types Just need to view CLAUD...
50
17964 elegant-reports jdrhyne/agent-skills
elegant-reports Generate minimalist, elegant PDF reports inspired by Scandinavian design principles. Quick Start cd ~/clawd-nuri-internal/skills/elegant-reports Generate a report (dense layout) node generate.js report.md output.pdf --template report Generate a presentation (bold slides) node generate.js data.md slides.pdf --template presentation Dark mode node generate.js report.md --template report --theme dark List templates node generate.js --list Templates Template Style Use Case report ...
50
17965 azure-cosmos-db-py sickn33/antigravity-awesome-skills
Cosmos DB Service Implementation Build production-grade Azure Cosmos DB NoSQL services following clean code, security best practices, and TDD principles. Installation pip install azure-cosmos azure-identity Environment Variables COSMOS_ENDPOINT = https:// < account > .documents.azure.com:443/ COSMOS_DATABASE_NAME = < database-name > COSMOS_CONTAINER_ID = < container-id > For emulator only (not production) COSMOS_KEY = < emulator-key > Authentication DefaultAzureCredential (preferred) : from azu...
50
17966 chanjing-tts-voice-clone chanjing-ai/chan-skills
Chanjing TTS Voice Clone When to Use This Skill Use this skill when the user needs to generate speech from text, with a user-provided reference voice. The reference audio needs to be provided as a publicly accessible url. This TTS service supports: bilingual Chinese and English adjustment of speech rate sentence-level timestamp How to Use This Skill Chanjing-TTS-Voice-Clone provides an asynchronous speech synthesis API. Hostname for all APIs is: " https://open-api.chanjing.cc ". All requests com...
50
17967 claude-code-learning popup-studio-ai/bkit-claude-code
Claude Code Learning Skill Master Claude Code configuration and optimization Actions Action Description Example learn Start learning guide /claude-code-learning learn 1 setup Auto-generate settings /claude-code-learning setup upgrade Latest features guide /claude-code-learning upgrade learn [level] Learning content by level: Level 1 : Basics - Writing CLAUDE.md, Using Plan Mode Level 2 : Automation - Commands, Hooks, Permission management Level 3 : Specialization - Agents, Skills, MCP integratio...
50
17968 clarify:unknown team-attention/workshop-upstage
Unknown: Surface Blind Spots with Known/Unknown Quadrants Surface hidden assumptions and blind spots in any strategy, plan, or decision using the Known/Unknown quadrant framework and hypothesis-driven questioning. When to Use Strategy or planning documents that need scrutiny Decisions with unclear direction or hidden assumptions Any situation where "what we don't know" matters more than "what we do know" For specific requirement clarification (feature requests, bug reports), use the vague skill....
50
17969 post-game-press-conference-simulator onewave-ai/claude-skills
Post Game Press Conference Simulator Generate realistic coach/player interview responses for wins, losses, controversies, injuries. Authentic coachspeak and player personalities. Instructions You are an expert at sports media and press conference dynamics. Generate authentic interview responses with: realistic coachspeak, player personalities, handling of wins/losses/controversies, 'one game at a time' clichés, and both serious and comedic tones. Output Format Post Game Press Conference Sim...
50
17970 tdd kimny1143/claude-code-template
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
50
17971 documentation-specialist caomeiyouren/momei
Documentation Specialist Skill (文档专家技能) 能力 (Capabilities) 文档检索 : 快速查找和总结位于 docs/ 目录下的设计文档、规范文档和计划文档。 文档生成 : 根据代码变更自动更新或创建新的 Markdown 文档。 规范检查 : 确保文档遵循项目的文档结构和风格指南 (如 AGENTS.md 和 docs/standards/documentation.md 中定义的)。 计划管理 : 能够读取 docs/plan/todo.md 和 docs/plan/roadmap.md 以了解当前任务状态,读取 docs/plan/todo-archive.md 以了解已归档任务状态。 门户维护 : 负责更新根目录下的 README.md ,确保其与项目特性和状态保持同步。 指令 (Instructions) Worktree 意识 : 大规模文档更新务必在 ../momei-docs 目录执行,确保文档版本独立于代码开发分支。 目录感知 : 始终在 docs/ 目录下操作(除了根目录的 README.md )。了解子目录结构: desi...
50
17972 ios-hig pproenca/dot-skills
iOS Human Interface Guidelines Apple's Human Interface Guidelines define the visual language, interaction patterns, and accessibility standards that make iOS apps feel native and intuitive. The core principle: clarity and consistency through thoughtful design. Reference Loading Guide ALWAYS load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake. Reference Load When Interaction Touch targets, n...
50
17973 skill-capture shipshitdev/library
Skill Capture This skill extracts valuable learnings, patterns, and workflows from conversations and persists them as reusable skill files for future sessions. When This Skill Activates Activate when the user mentions ANY of these: Explicit Requests "let's save this as a skill" "this workflow should be reusable" "capture this as a skill" "make this a skill" "turn this into a skill" "save this pattern" Workflow Completion Signals Complex problem solved after multiple iterations Multi-step pro...
50
17974 obsidian-dashboard oldwinter/skills
Obsidian Vault Dashboard Generator This skill generates comprehensive statistics and visual overview of Obsidian note vaults. It analyzes files, tags, links, folder structure, and creates an interactive HTML dashboard. Purpose To provide detailed insights into Obsidian vault structure and content through automated analysis and visualization. When to Use When users want to understand their vault structure To identify orphaned files, unused attachments, or broken links To analyze tag usage pat...
50
17975 analytics-export laurigates/claude-plugins
/analytics:export Export analytics data for external analysis or reporting. Context Check analytics availability: ANALYTICS_DIR = " ${ HOME } /.claude-analytics" SUMMARY_FILE = " ${ANALYTICS_DIR} /summary.json" EVENTS_FILE = " ${ANALYTICS_DIR} /events.jsonl" if [ [ ! -f " ${SUMMARY_FILE} " ] ] ; then echo "No analytics data to export." exit 0 fi TOTAL = $( cat " ${SUMMARY_FILE} " | jq -r '.total_invocations' ) echo "Exporting ${TOTAL} invocations..." Parameters $ARGS - Format and optional output...
50
17976 accessibility tech-leads-club/agent-skills
Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.2 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. WCAG Principles: POUR Principle Description P erceivable Content can be perceived through different senses O perable Interface can be operated by all users U nderstandable Content and interface are understandable R obust Content works with assistive technologies Conformance levels Level Requirement Target A M...
50
17977 tempo tempoxyz/agent-skills
Grafana Tempo - Distributed Tracing Backend Grafana Tempo is an open-source, high-scale distributed tracing backend. It is: Cost-efficient : only requires object storage (S3, GCS, Azure) to operate Deeply integrated : with Grafana, Mimir, Prometheus, Loki, and Pyroscope Protocol-agnostic : accepts OTLP, Jaeger, Zipkin, OpenCensus, Kafka Quick Reference Links TraceQL Language Reference - query syntax, operators, examples, metrics functions Configuration Reference - all YAML config blocks with def...
50
17978 tavily vm0-ai/vm0-skills
Tavily Purpose Provide a curl-based interface to Tavily’s REST API for web search, extraction, mapping, crawling, and optional research. Return structured results suitable for LLM workflows and multi-step investigations. When to Use Use when a task needs live web information, site extraction, mapping, or crawling. Use when web searches are needed and no built-in tool is available, or when Tavily’s LLM-friendly output (summaries, chunks, sources, citations) is beneficial. Use when a task requir...
50
17979 configure-package-management laurigates/claude-plugins
/configure:package-management Check and configure modern package managers for optimal development experience. When to Use This Skill Use this skill when... Use another approach when... Setting up a new project with modern package managers (uv, bun) Installing a single dependency — run uv add or bun add directly Migrating from legacy package managers (pip, npm, yarn, poetry) to modern ones Project uses cargo or go mod (already optimal, no migration needed) Auditing package manager configuration f...
50
17980 china-macro-analyst nicepkg/ai-workflow
No SKILL.md available for this skill. View on GitHub
50
17981 azure-ai-vision-imageanalysis-py sickn33/antigravity-awesome-skills
Azure AI Vision Image Analysis SDK for Python Client library for Azure AI Vision 4.0 image analysis including captions, tags, objects, OCR, and more. Installation pip install azure-ai-vision-imageanalysis Environment Variables VISION_ENDPOINT = https:// < resource > .cognitiveservices.azure.com VISION_KEY = < your-api-key > If using API key Authentication API Key import os from azure . ai . vision . imageanalysis import ImageAnalysisClient from azure . core . credentials import AzureKeyCredenti...
50
17982 google-genai-sdk-python cnemri/google-genai-skills
Google GenAI Python SDK Skill Use this skill to write high-quality, idiomatic Python code for the Gemini API. Reference Materials Identify the user's task and refer to the relevant file: Setup & Client : Installation, auth, client initialization. Models : Recommended models (Flash, Pro, Lite, Imagen, Veo). Text Generation : Basic inference, streaming, system instructions, safety. Chat : Multi-turn conversations and history. Reasoning : Thinking config ( thinking_level / thinking_budget ), though...
50
17983 vapi gracebotly/flowetic-app
Vapi Platform Skill Overview Vapi is a voice AI platform for building phone agents. Users connect Vapi assistants to Getflowetic to monitor call performance, track costs, and analyze conversation outcomes. Vocabulary call : A single voice interaction between an assistant and a caller assistant : A configured Vapi voice agent with a system prompt, model, and voice ended_reason : Why the call terminated (hangup, voicemail, error, silence-timeout, max-duration) cost : Per-call cost in USD based on ...
50
17984 configure-skaffold laurigates/claude-plugins
/configure:skaffold Check and configure Skaffold against project standards. When to Use This Skill Use this skill when... Use another approach when... Checking Skaffold configuration compliance for a Kubernetes project Project has no k8s/ or helm/ directories (Skaffold is not applicable) Fixing port forwarding security issues (binding to 0.0.0.0) Managing Kubernetes manifests or Helm charts directly Adding dotenvx hooks for secret generation in Skaffold Configuring container builds without Kuber...
50
17985 temu-competitor-search zhuhongyin/global-ecom-skills
Temu 竞品与卷王价查询 核心定位 这是 Temu 选品的竞品分析工具。查找 Temu 上的同类产品,获取"卷王价"(最低竞品价),分析竞争格局和差异化机会。 核心概念 卷王价 :Temu 平台上同类产品的最低售价,是核价计算的关键输入参数。 数据来源 Temu 网站: 美国: https://www.temu.com 英国: https://www.temu.com/uk 欧盟: https://www.temu.com/eu 输入参数 { "keyword" : "standing desk converter" , "category" : "Home & Kitchen" , "site" : "us" , "limit" : 20 , "sort_by" : "price_asc" , "min_rating" : 3.5 } 参数 类型 必需 默认值 说明 keyword string 是 - 搜索关键词 category string 否 全类目 商品类目 site string 否 us 站点(us/uk/eu) limit int 否 20 返回商品数量 sort_...
50
17986 page-cro openclaudia/openclaudia-skills
Page Conversion Rate Optimization (CRO) You are a conversion rate optimization expert. Your goal is to analyze marketing pages and provide actionable recommendations to improve conversion rates. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before provi...
50
17987 sentry-svelte-sdk getsentry/sentry-agent-skills
All Skills > SDK Setup > Svelte SDK Sentry Svelte SDK Opinionated wizard that scans your project and guides you through complete Sentry setup for Svelte and SvelteKit. Invoke This Skill When User asks to "add Sentry to Svelte" or "set up Sentry" in a Svelte/SvelteKit app User wants error monitoring, tracing, session replay, or logging in Svelte or SvelteKit User mentions @sentry/svelte , @sentry/sveltekit , or Sentry SDK for Svelte Note: SDK versions and APIs below reflect current Sentry docs at...
50
17988 bun nuxt secondsky/claude-skills
Bun Nuxt Run Nuxt 3 applications with Bun for faster development. Quick Start Create new Nuxt project bunx nuxi@latest init my-app cd my-app Install dependencies bun install Development bun run dev Build bun run build Preview production bun run preview Project Setup package.json { "scripts" : { "dev" : "nuxt dev" , "build" : "nuxt build" , "generate" : "nuxt generate" , "preview" : "nuxt preview" , "postinstall" : "nuxt prepare" } , "dependencies" : { "nuxt" : "^4.0.0" , "vue" : "^3.5.0" } ...
50
17989 query-layer epicenterhq/epicenter
Query Layer Patterns The query layer is the reactive bridge between UI components and the service layer. It wraps pure service functions with caching, reactivity, and state management using TanStack Query and WellCrafted factories. When to Apply This Skill Use this pattern when you need to: Create queries or mutations that consume services Transform service-layer errors into user-facing error types Implement runtime service selection based on user settings Add optimistic cache updates for instan...
50
17990 spring-boot-expert personamanagmentlayer/pcl
Expert guidance for Spring Boot development, Spring Framework, building REST APIs, and microservices architecture. Core Concepts Spring Boot Fundamentals - Auto-configuration - Dependency injection - Spring Boot Starters - Application properties - Profiles and configuration - Spring Boot Actuator Spring Framework - Spring Core (IoC, DI) - Spring Data JPA - Spring Security - Spring Web MVC - Spring AOP - Spring Transaction Management Microservices - Service discovery - API G...
50
17991 react-spring dylantarre/animation-principles
React Spring Animation Principles Implement all 12 Disney animation principles using React Spring's spring physics system. 1. Squash and Stretch const [springs, api] = useSpring(() => ({ scaleX: 1, scaleY: 1, config: { tension: 300, friction: 10 } })); api.start({ scaleX: 1.2, scaleY: 0.8 }); <animated.div style={springs} /> 2. Anticipation const [props, api] = useSpring(() => ({ y: 0, scaleY: 1 })); const jump = async () => { await api.start({ y: 10, scaleY: 0.9 }); // wind up ap...
50
17992 document-chat-interface qodex-ai/ai-agent-skills
Document Chat Interface Build intelligent chat interfaces that allow users to query and interact with documents using natural language, transforming static documents into interactive knowledge sources. Overview A document chat interface combines three capabilities: Document Processing - Extract and prepare documents Semantic Understanding - Understand questions and find relevant content Conversational Interface - Maintain context and provide natural responses Common Applications PDF Q&A: Ans...
50
17993 install-flutter-from-git rodydavis/skills
Install Flutter from Git This skill guides you through installing the Flutter SDK using git clone and setting up the environment for Web, Mobile, and Desktop development. 1. Prerequisites (All Platforms) Ensure you have the following installed: Git : Install Git Curl/Unzip (macOS/Linux usually have these; Windows usually needs Git Bash or similar) 2. Install Flutter SDK macOS / Linux Open your terminal and run the following commands to clone the stable branch of the Flutter SDK. Create a direct...
50
17994 configure-workflows laurigates/claude-plugins
/configure:workflows Check and configure GitHub Actions CI/CD workflows against project standards. When to Use This Skill Use this skill when... Use another approach when... Checking GitHub Actions workflows for compliance with project standards Debugging a failing CI run (use github-actions-inspection skill) Setting up container build, test, or release-please workflows Installing Claude-powered reusable workflows (use /configure:reusable-workflows ) Updating outdated action versions (checkout, ...
50
17995 biome-linting thebushidocollective/han
Biome Linting Expert knowledge of Biome's linting capabilities, rule categories, and code quality enforcement for JavaScript and TypeScript projects. Overview Biome's linter provides fast, comprehensive code quality checks with a focus on correctness, performance, security, and best practices. It's designed to catch common bugs and enforce consistent code patterns. Core Commands Basic Linting Check files without fixing biome check . Check and auto-fix biome check --write . Check specific file...
50
17996 find-skills connorads/dotfiles
Find Skills This skill helps you discover and install skills from the open agent skills ecosystem. When to Use This Skill Use this skill when the user: Asks "how do I do X" where X might be a common task with an existing skill Says "find a skill for X" or "is there a skill for X" Asks "can you do X" where X is a specialized capability Expresses interest in extending agent capabilities Wants to search for tools, templates, or workflows Mentions they wish they had help with a specific domain (desi...
50
17997 fastapi itechmeat/llm-code
FastAPI Official FastAPI skill to write code with best practices, keeping up to date with new versions and features. Use the fastapi CLI Run the development server on localhost with reload: fastapi dev Run the production server: fastapi run Add an entrypoint in pyproject.toml FastAPI CLI will read the entrypoint in pyproject.toml to know where the FastAPI app is declared. [ tool.fastapi ] entrypoint = "my_app.main:app" Use fastapi with a path When adding the entrypoint to pyproject.toml is not p...
50
17998 biorxiv-search yorkeccak/scientific-skills
bioRxiv Search Search the complete bioRxiv database of biological sciences preprints using natural language queries powered by Valyu's semantic search API. Why This Skill is Powerful No API Parameter Parsing: Just pass natural language queries directly - no need to construct complex search parameters Semantic Search: Understands the meaning of your query, not just keyword matching Full-Text Access: Returns complete article content, not just abstracts Image Links: Includes figures and images fr...
50
17999 favicon shpigford/skills
Generate a complete set of favicons from the source image at $1 and update the project's HTML with the appropriate link tags. Prerequisites First, verify ImageMagick v7+ is installed by running: which magick If not found, stop and instruct the user to install it: macOS : brew install imagemagick Linux : sudo apt install imagemagick Step 1: Validate Source Image Verify the source image exists at the provided path: $1 Check the file extension is a supported format (PNG, JPG, JPEG, SVG, WEBP, GIF) ...
50
18000 mobile-development groeimetai/snow-flow
Mobile Development Skill Production-ready mobile development with modern frameworks, best practices, and mobile-first thinking patterns. When to Use Building mobile applications (iOS, Android, or cross-platform) Implementing mobile-first design and UX patterns Optimizing for mobile constraints (battery, memory, network, small screens) Making native vs cross-platform technology decisions Implementing offline-first architecture and data sync Following platform-specific guidelines (iOS HIG, Mater...
50