███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10351 | axiom-getting-started | charleswiltgen/axiom |
Getting Started with Axiom Welcome! This skill helps new users discover the most relevant Axiom skills for their situation. How This Skill Works Ask the user 2-3 targeted questions about their project Provide personalized skill recommendations (3-5 skills max) Show example prompts they can try immediately Include a complete skill reference for browsing Step 1: Ask Questions Use the AskUserQuestion tool to gather context: Question 1: Current Focus Question: "What brings you to Axiom today?" H...
|
118 |
| 10352 | network 101 | davila7/claude-code-templates |
Network 101 Purpose Configure and test common network services (HTTP, HTTPS, SNMP, SMB) for penetration testing lab environments. Enable hands-on practice with service enumeration, log analysis, and security testing against properly configured target systems. Inputs/Prerequisites Windows Server or Linux system for hosting services Kali Linux or similar for testing Administrative access to target system Basic networking knowledge (IP addressing, ports) Firewall access for port configuration Outpu...
|
118 |
| 10353 | tooluniverse-multiomic-disease-characterization | mims-harvard/tooluniverse |
Multi-Omics Disease Characterization Pipeline Characterize diseases across multiple molecular layers (genomics, transcriptomics, proteomics, pathways) to provide systems-level understanding of disease mechanisms, identify therapeutic opportunities, and discover biomarker candidates. KEY PRINCIPLES : Report-first approach - Create report file FIRST, then populate progressively Disease disambiguation FIRST - Resolve all identifiers before omics analysis Layer-by-layer analysis - Systematically cov...
|
118 |
| 10354 | axiom-energy | charleswiltgen/axiom |
Energy Optimization Overview Energy issues manifest as battery drain, hot devices, and poor App Store reviews. Core principle: Measure before optimizing. Use Power Profiler to identify the dominant subsystem (CPU/GPU/Network/Location/Display), then apply targeted fixes. Key insight: Developers often don't know where to START auditing. This skill provides systematic diagnosis, not guesswork. Requirements: iOS 26+, Xcode 26+, Power Profiler in Instruments Example Prompts Real questions develo...
|
118 |
| 10355 | ghidra | mitsuhiko/agent-stuff |
Ghidra Headless Analysis Skill Perform automated reverse engineering using Ghidra's analyzeHeadless tool. Import binaries, run analysis, decompile to C code, and extract useful information. Quick Reference Task Command Full analysis with all exports ghidra-analyze.sh -s ExportAll.java -o ./output binary Decompile to C code ghidra-analyze.sh -s ExportDecompiled.java -o ./output binary List functions ghidra-analyze.sh -s ExportFunctions.java -o ./output binary Extract strings ghidra-analyze.sh -...
|
118 |
| 10356 | axiom-display-performance | charleswiltgen/axiom |
Display Performance Systematic diagnosis for frame rate issues on variable refresh rate displays (ProMotion, iPad Pro, future devices). Covers render loop configuration, frame pacing, hitch mechanics, and production telemetry. Key insight: "ProMotion available" does NOT mean your app automatically runs at 120Hz. You must configure it correctly, account for system caps, and ensure proper frame pacing. Part 1: Why You're Stuck at 60fps Diagnostic Order Check these in order when stuck at 60fps ...
|
118 |
| 10357 | axiom-file-protection-ref | charleswiltgen/axiom |
iOS File Protection Reference Purpose: Comprehensive reference for file encryption and data protection APIs Availability: iOS 4.0+ (all protection levels), latest enhancements in iOS 26 Context: Built on iOS Data Protection architecture using hardware encryption When to Use This Skill Use this skill when you need to: Protect sensitive user data at rest Choose appropriate FileProtectionType for files Understand when files are accessible/encrypted Debug "file not accessible" errors after devic...
|
118 |
| 10358 | linux privilege escalation | davila7/claude-code-templates |
Linux Privilege Escalation Purpose Execute systematic privilege escalation assessments on Linux systems to identify and exploit misconfigurations, vulnerable services, and security weaknesses that allow elevation from low-privilege user access to root-level control. This skill enables comprehensive enumeration and exploitation of kernel vulnerabilities, sudo misconfigurations, SUID binaries, cron jobs, capabilities, PATH hijacking, and NFS weaknesses. Inputs / Prerequisites Required Access Low-p...
|
118 |
| 10359 | supabase-realtime | nice-wolf-studio/claude-code-supabase-skills |
Supabase Realtime Overview This skill provides guidance for working with Supabase Realtime features. Realtime allows you to listen to database changes, broadcast messages, and track presence using WebSocket connections. Note: Realtime operations require WebSocket support, which is more complex in bash. This skill focuses on practical patterns and examples using available tools. Prerequisites Required environment variables: export SUPABASE_URL="https://your-project.supabase.co" export SUPABA...
|
118 |
| 10360 | salesforce-development | davila7/claude-code-templates |
Salesforce Development Patterns Lightning Web Component with Wire Service Use @wire decorator for reactive data binding with Lightning Data Service or Apex methods. @wire fits LWC's reactive architecture and enables Salesforce performance optimizations. Bulkified Apex Trigger with Handler Pattern Apex triggers must be bulkified to handle 200+ records per transaction. Use handler pattern for separation of concerns, testability, and recursion prevention. Queueable Apex for Async Processing Us...
|
118 |
| 10361 | axiom-concurrency-profiling | charleswiltgen/axiom |
Concurrency Profiling — Instruments Workflows Profile and optimize Swift async/await code using Instruments. When to Use ✅ Use when: UI stutters during async operations Suspecting actor contention Tasks queued but not executing Main thread blocked during async work Need to visualize task execution flow ❌ Don't use when: Issue is pure CPU performance (use Time Profiler) Memory issues unrelated to concurrency (use Allocations) Haven't confirmed concurrency is the bottleneck Swift Concurrency...
|
118 |
| 10362 | idor vulnerability testing | davila7/claude-code-templates |
IDOR Vulnerability Testing Purpose Provide systematic methodologies for identifying and exploiting Insecure Direct Object Reference (IDOR) vulnerabilities in web applications. This skill covers both database object references and static file references, detection techniques using parameter manipulation and enumeration, exploitation via Burp Suite, and remediation strategies for securing applications against unauthorized access. Inputs / Prerequisites Target Web Application : URL of application w...
|
118 |
| 10363 | github-project-management | ruvnet/claude-flow |
GitHub Project Management Overview A comprehensive skill for managing GitHub projects using AI swarm coordination. This skill combines intelligent issue management, automated project board synchronization, and swarm-based coordination for efficient project delivery. Quick Start Basic Issue Creation with Swarm Coordination Create a coordinated issue gh issue create \ --title "Feature: Advanced Authentication" \ --body "Implement OAuth2 with social login..." \ --label "enhancement,swarm-ready" I...
|
118 |
| 10364 | axiom-axe-ref | charleswiltgen/axiom |
AXe Reference (iOS Simulator UI Automation) AXe is a CLI tool for interacting with iOS Simulators using Apple's Accessibility APIs and HID functionality. Single binary, no daemon required. Installation brew install cameroncooke/axe/axe Verify installation axe --version Critical Best Practice: describe_ui First ALWAYS run describe_ui before UI interactions. Never guess coordinates from screenshots. Best practice: Use describe-ui to get precise element coordinates prior to using x/y paramet...
|
118 |
| 10365 | plugin-forge | davila7/claude-code-templates |
CC Plugin Forge Purpose Build and manage Claude Code plugins with correct structure, manifests, and marketplace integration. Includes workflows, automation scripts, and reference docs. When to Use Creating new plugins for a marketplace Adding/modifying plugin components (commands, skills, agents, hooks) Updating plugin versions Working with plugin or marketplace manifests Setting up local plugin testing Publishing plugins Getting Started Create New Plugin Use create_plugin.py to generate plugin ...
|
118 |
| 10366 | axiom-privacy-ux | charleswiltgen/axiom |
Privacy UX Patterns Comprehensive guide to privacy-first app design. Apple Design Award Social Impact winners handle data ethically, and privacy-first design is a key differentiator. Overview Privacy manifests (PrivacyInfo.xcprivacy) are Apple's framework for transparency about data collection and tracking. Combined with App Tracking Transparency and just-in-time permission requests, they help users make informed choices about their data. This skill covers creating privacy manifests, request...
|
118 |
| 10367 | china-news-crawler | nanmicoder/newscrawler |
No SKILL.md available for this skill. View on GitHub
|
118 |
| 10368 | startup-go-to-market | vasilyu1983/ai-agents-public |
Startup Go-to-Market Systematic workflow for designing and executing market entry, launch, and growth. Modern Best Practices (Jan 2026): Start from ICP + positioning, pick 1-2 channels to sequence, instrument the funnel end-to-end, use AI for execution (not strategy), align RevOps across sales/marketing/CS. When to Use Designing go-to-market strategy for new product Choosing between PLG and sales-led motion Planning product launches (soft, beta, ProductHunt, full) Defining ICP and channel str...
|
118 |
| 10369 | agno | delorenj/skills |
Agno Skill Comprehensive assistance with Agno development - a modern AI agent framework for building production-ready multi-agent systems with MCP integration, workflow orchestration, and AgentOS runtime. When to Use This Skill This skill should be triggered when: Building AI agents with tools, memory, and structured outputs Creating multi-agent teams with role-based delegation and collaboration Implementing workflows with conditional branching, loops, and async execution Integrating MCP ser...
|
118 |
| 10370 | axiom-database-migration | charleswiltgen/axiom |
Database Migration Overview Safe database schema evolution for production apps with user data. Core principle Migrations are immutable after shipping. Make them additive, idempotent, and thoroughly tested. Example Prompts These are real questions developers ask that this skill is designed to answer: 1. "I need to add a new column to store user preferences, but the app is already live with user data. How do I do this safely?" → The skill covers safe additive patterns for adding columns witho...
|
118 |
| 10371 | skillcreatorai/ai-agent-skills |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
118 | |
| 10372 | romance-novel-conventions | wordflowlab/novel-writer-skills |
言情小说创作规范 快速参考 元素 指导原则 示例 初遇 故事的 0-10% 意外的首次相遇,产生火花 初吻 50-60%(慢热)或 20-30%(快热) 需要充分的情感铺垫 黑暗时刻 75-85% 关系看似不可能继续 大结局 85-100% 表白、承诺、HEA/HFN 核心要素 必备组成部分 情感连接:主角之间必须有化学反应 通过行动而非单纯描述来展现吸引力 通过亲近和距离建立张力 创造可信的相互吸引的理由 内在冲突:恐惧、过往创伤、自我怀疑 每个角色都应该有情感包袱 内在冲突必须与外在障碍同样强烈 成长来自面对这些内在问题 外在障碍:家庭、事业、误会 障碍应该是合理的,而非人为的 "只要好好沟通"不应该能解决所有问题 风险应该逐步升级 令人满意的结局:HEA(永远幸福)或 HFN(暂时幸福) 两个角色都必须成长才配得上结局 结局应该解决内在和外在冲突 读者应该感到满足,而非被欺骗 可选元素 三角恋(谨慎使用 - 可能让读者沮丧) 被迫亲密设定(被困在一起的场景) 欢喜冤家(需要精心处理) 第二次机会言情(重燃旧情) 节奏指南 故事阶段 百分比 关键事件 情感焦点 初遇...
|
118 |
| 10373 | freee-api-skill | him0/freee-mcp |
freee API スキル 概要 freee-mcp (MCP サーバー) を通じて freee API と連携。 このスキルの役割: freee API の詳細リファレンスを提供 freee-mcp 使用ガイドと API 呼び出し例を提供 注意: OAuth 認証はユーザー自身が自分の環境で実行する必要があります。 セットアップ 1. OAuth 認証(あなたのターミナルで実行) npx freee-mcp configure ブラウザで freee にログインし、事業所を選択します。設定は ~/.config/freee-mcp/config.json に保存されます。 2. 再起動して確認 Claude を再起動後、 freee_auth_status ツールで認証状態を確認。 リファレンス API リファレンスが references/ に含まれます。各リファレンスにはパラメータ、リクエストボディ、レスポンスの詳細情報があります。 目的のAPIを探すには、 references/ ディレクトリ内のファイルをキーワード検索してください。 主なリファレンス: accounting-...
|
118 |
| 10374 | axiom-core-data-diag | charleswiltgen/axiom |
Core Data Diagnostics & Migration Overview Core Data issues manifest as production crashes from schema mismatches, mysterious concurrency errors, performance degradation under load, and data corruption from unsafe migrations. Core principle 85% of Core Data problems stem from misunderstanding thread-confinement, schema migration requirements, and relationship query patterns—not Core Data defects. Red Flags — Suspect Core Data Issue If you see ANY of these, suspect a Core Data misunderstanding...
|
118 |
| 10375 | axiom-photo-library | charleswiltgen/axiom |
Photo Library Access with PhotoKit Guides you through photo picking, limited library handling, and saving photos to the camera roll using privacy-forward patterns. When to Use This Skill Use when you need to: ☑ Let users select photos from their library ☑ Handle limited photo library access ☑ Save photos/videos to the camera roll ☑ Choose between PHPicker and PhotosPicker ☑ Load images from PhotosPickerItem ☑ Observe photo library changes ☑ Request appropriate permission level Example Prompts "H...
|
117 |
| 10376 | axiom-core-location-ref | charleswiltgen/axiom |
Core Location Reference Comprehensive API reference for modern Core Location (iOS 17+). When to Use Need API signatures for CLLocationUpdate, CLMonitor, CLServiceSession Implementing geofencing or region monitoring Configuring background location updates Understanding authorization patterns Debugging location service issues
|
117 |
| 10377 | project-astrology-chinese | vasilyu1983/ai-agents-public |
Chinese Astrology Provide Chinese zodiac, BaZi, Zi Wei Dou Shu, Feng Shui, and Qi Men Dun Jia guidance with explicit inputs, assumptions, and uncertainty. Scope and routing If the user wants Western astrology, route to Western resources (do not improvise). If the user wants Jyotish/Vedic, use ../project-astrology-vedic/SKILL.md. If the user wants Tarot or I Ching, use ../project-astrology-tarot-divination/SKILL.md. If the user wants numerology, use ../project-astrology-numerology/SKILL.md. Cor...
|
117 |
| 10378 | axiom-storage-diag | charleswiltgen/axiom |
Local File Storage Diagnostics Overview Core principle 90% of file storage problems stem from choosing the wrong storage location, misunderstanding file protection levels, or missing backup exclusions—not iOS file system bugs. The iOS file system is battle-tested across millions of apps and devices. If your files are disappearing, becoming inaccessible, or causing backup issues, the problem is almost always in storage location choice or protection configuration. Red Flags — Suspect File Storage ...
|
117 |
| 10379 | axiom-deep-link-debugging | charleswiltgen/axiom |
Deep Link Debugging When to Use This Skill Use when: Adding debug-only deep links for simulator testing Enabling automated navigation to specific screens for screenshot/testing Integrating with simulator-tester agent or /axiom:screenshot Need to navigate programmatically without production deep link implementation Testing navigation flows without manual tapping Do NOT use for: Production deep linking (use axiom-swiftui-nav skill instead) Universal links or App Clips Complex routing architect...
|
117 |
| 10380 | explaining-code | patricio0312rev/skills |
When explaining code, always include: Start with an analogy: Compare the code to something from everyday life Draw a diagram: Use ASCII art to show the flow, structure, or relationships Walk through the code: Explain step-by-step what happens Highlight a gotcha: What's a common mistake or misconception? Keep explanations conversational. For complex concepts, use multiple analogies.
|
117 |
| 10381 | tooluniverse-cancer-variant-interpretation | mims-harvard/tooluniverse |
Cancer Variant Interpretation for Precision Oncology Comprehensive clinical interpretation of somatic mutations in cancer. Transforms a gene + variant input into an actionable precision oncology report covering clinical evidence, therapeutic options, resistance mechanisms, clinical trials, and prognostic implications. KEY PRINCIPLES : Report-first approach - Create report file FIRST, then populate progressively Evidence-graded - Every recommendation has an evidence tier (T1-T4) Actionable output...
|
117 |
| 10382 | design-system-management | anthropics/knowledge-work-plugins |
Design System Management Help build, maintain, and evolve design systems. Components of a Design System Design Tokens Atomic values that define the visual language: Colors (brand, semantic, neutral) Typography (scale, weights, line heights) Spacing (scale, component padding) Borders (radius, width) Shadows (elevation levels) Motion (durations, easings) Components Reusable UI elements with defined: Variants (primary, secondary, ghost) States (default, hover, active, disabled, loading, error) Size...
|
117 |
| 10383 | tooluniverse-metabolomics-analysis | mims-harvard/tooluniverse |
Metabolomics Analysis Comprehensive analysis of metabolomics data from metabolite identification through quantification, statistical analysis, pathway interpretation, and integration with other omics layers. When to Use This Skill Triggers : User has metabolomics data (LC-MS, GC-MS, NMR) Questions about metabolite abundance or concentrations Differential metabolite analysis requests Metabolic pathway analysis Multi-omics integration with metabolomics Metabolic biomarker discovery Flux balance an...
|
117 |
| 10384 | svelte-components | spences10/svelte-skills-kit |
Svelte Components Quick Start Component libraries: Bits UI (headless) | Ark UI | Melt UI (primitives) Form trick: Use form attribute when form can't wrap inputs: <form id="my-form" action="/submit"><!-- outside table --></form> <table> <tr> <td><input form="my-form" name="email" /></td> <td><button form="my-form">Submit</button></td> </tr> </table> Web Components // svelte.config.js export default { compilerOptions: { customElement: true, }, }; <!-- MyButton.svelte --> <svelte:opt...
|
117 |
| 10385 | smtp penetration testing | davila7/claude-code-templates |
SMTP Penetration Testing Purpose Conduct comprehensive security assessments of SMTP (Simple Mail Transfer Protocol) servers to identify vulnerabilities including open relays, user enumeration, weak authentication, and misconfiguration. This skill covers banner grabbing, user enumeration techniques, relay testing, brute force attacks, and security hardening recommendations. Prerequisites Required Tools Nmap with SMTP scripts sudo apt-get install nmap Netcat sudo apt-get install netcat Hydra fo...
|
117 |
| 10386 | crypto-research | microck/ordinary-claude-skills |
Cryptocurrency Research Skill This skill provides comprehensive cryptocurrency research by orchestrating multiple specialized AI agents that analyze different aspects of the crypto market in parallel. When to Use Invoke this skill when the user: Mentions cryptocurrency analysis or research Names specific cryptocurrencies (BTC, ETH, SOL, etc.) Asks about crypto market conditions Wants investment analysis or opportunities Needs technical or fundamental analysis of crypto assets Requests macro ...
|
117 |
| 10387 | axiom-metal-migration | charleswiltgen/axiom |
Metal Migration Porting OpenGL/OpenGL ES or DirectX code to Metal on Apple platforms. When to Use This Skill Use this skill when: Porting an OpenGL/OpenGL ES codebase to iOS/macOS Porting a DirectX codebase to Apple platforms Deciding between translation layer (MetalANGLE) vs native rewrite Planning a phased migration strategy Evaluating effort vs performance tradeoffs Red Flags ❌ "Just use MetalANGLE and ship" — Translation layers add 10-30% overhead; fine for demos, not production ❌ "Convert s...
|
117 |
| 10388 | axiom-core-location | charleswiltgen/axiom |
Core Location Patterns Discipline skill for Core Location implementation decisions. Prevents common authorization mistakes, battery drain, and background location failures. When to Use Choosing authorization strategy (When In Use vs Always) Deciding monitoring approach (continuous vs significant-change vs CLMonitor) Implementing geofencing or background location Debugging "location not working" issues Reviewing location code for anti-patterns Related Skills axiom-core-location-ref — API refere...
|
117 |
| 10389 | glsl | martinholovsky/claude-skills-generator |
GLSL Shader Programming Skill File Organization: This skill uses split structure. See references/ for advanced shader patterns. 1. Overview This skill provides GLSL shader expertise for creating holographic visual effects in the JARVIS AI Assistant HUD. It focuses on efficient GPU programming for real-time rendering. Risk Level: LOW - GPU-side code with limited attack surface, but can cause performance issues Primary Use Cases: Holographic panel effects with scanlines Animated energy field...
|
117 |
| 10390 | tooluniverse-spatial-transcriptomics | mims-harvard/tooluniverse |
Spatial Transcriptomics Analysis Comprehensive analysis of spatially-resolved transcriptomics data to understand gene expression patterns in tissue architecture context. Combines expression profiling with spatial coordinates to reveal tissue organization, cell-cell interactions, and spatially variable genes. When to Use This Skill Triggers : User has spatial transcriptomics data (Visium, MERFISH, seqFISH, etc.) Questions about tissue architecture or spatial organization Spatial gene expression p...
|
117 |
| 10391 | ln-150-presentation-creator | levnikolaevich/claude-code-skills |
This skill creates an interactive, self-contained HTML presentation from existing project documentation. It transforms Markdown documents into a professional, navigable web presentation with diagrams, collapsible sections, and modern UI. When to Use This Skill This skill is a L2 WORKER invoked by ln-100-documents-pipeline orchestrator OR used standalone. Use this skill when: - Building HTML presentation from existing documentation - Rebuilding presentation after documentation updates - Cr...
|
117 |
| 10392 | alicloud-media-live | cinience/alicloud-skills |
Category: service ApsaraVideo Live Validation mkdir -p output/alicloud-media-live python -m py_compile skills/media/live/alicloud-media-live/scripts/list_openapi_meta_apis.py echo "py_compile_ok" > output/alicloud-media-live/validate.txt Pass criteria: command exits 0 and output/alicloud-media-live/validate.txt is generated. Output And Evidence Save API inventory and operation evidence under output/alicloud-media-live/ . Keep region, domain, app/stream, and request parameters in evidence files. ...
|
117 |
| 10393 | axiom-synchronization | charleswiltgen/axiom |
Mutex & Synchronization — Thread-Safe Primitives Low-level synchronization primitives for when actors are too slow or heavyweight. When to Use Mutex vs Actor Need Use Reason Microsecond operations Mutex No async hop overhead Protect single property Mutex Simpler, faster Complex async workflows Actor Proper suspension handling Suspension points needed Actor Mutex can't suspend Shared across modules Mutex Sendable, no await needed High-frequency counters Atomic Lock-free performance API Referenc...
|
117 |
| 10394 | performance | davila7/claude-code-templates |
Performance optimization Deep performance optimization based on Lighthouse performance audits. Focuses on loading speed, runtime efficiency, and resource optimization. How it works Identify performance bottlenecks in code and assets Prioritize by impact on Core Web Vitals Provide specific optimizations with code examples Measure improvement with before/after metrics Performance budget Resource Budget Rationale Total page weight < 1.5 MB 3G loads in ~4s JavaScript (compressed) < 300 KB Parsing ...
|
117 |
| 10395 | symphony-setup | odysseus0/symphony |
Symphony Setup Set up Symphony — OpenAI's orchestrator that turns Linear tickets into pull requests via autonomous Codex agents. Preflight checks Run these checks first and stop if any fail — resolve before continuing: codex — run codex --version . Must be installed and authenticated. mise — run mise --version . Needed for Elixir/Erlang version management. gh — run gh auth status . Must be installed AND authenticated. Agents use gh to create PRs and close orphaned PRs. Silent failure without it....
|
117 |
| 10396 | privilege escalation methods | davila7/claude-code-templates |
Privilege Escalation Methods Purpose Provide comprehensive techniques for escalating privileges from a low-privileged user to root/administrator access on compromised Linux and Windows systems. Essential for penetration testing post-exploitation phase and red team operations. Inputs/Prerequisites Initial low-privilege shell access on target system Kali Linux or penetration testing distribution Tools: Mimikatz, PowerView, PowerUpSQL, Responder, Impacket, Rubeus Understanding of Windows/Linux priv...
|
117 |
| 10397 | clawddocs | sundial-org/awesome-openclaw-skills |
Clawdbot Documentation Expert Capability Summary: Clawdbot documentation expert skill with decision tree navigation, search scripts (sitemap, keyword, full-text index via qmd), doc fetching, version tracking, and config snippets for all Clawdbot features (providers, gateway, automation, platforms, tools). You are an expert on Clawdbot documentation. Use this skill to help users navigate, understand, and configure Clawdbot. Quick Start "When a user asks about Clawdbot, first identify what they ne...
|
117 |
| 10398 | axiom-core-data | charleswiltgen/axiom |
Core Data Overview Core principle: Core Data is a mature object graph and persistence framework. Use it when needing features SwiftData doesn't support, or when targeting older iOS versions. When to use Core Data vs SwiftData: SwiftData (iOS 17+) — New apps, simpler API, Swift-native Core Data — iOS 16 and earlier, advanced features, existing codebases Quick Decision Tree Which persistence framework? ├─ Targeting iOS 17+ only? │ ├─ Simple data model? → SwiftData (recommended) │ ├─ Need pub...
|
117 |
| 10399 | clickhouse-io | davila7/claude-code-templates |
ClickHouse Analytics Patterns ClickHouse-specific patterns for high-performance analytics and data engineering. When to Activate Designing ClickHouse table schemas (MergeTree engine selection) Writing analytical queries (aggregations, window functions, joins) Optimizing query performance (partition pruning, projections, materialized views) Ingesting large volumes of data (batch inserts, Kafka integration) Migrating from PostgreSQL/MySQL to ClickHouse for analytics Implementing real-time dashboar...
|
117 |
| 10400 | sales-operations | borghei/claude-skills |
Sales Operations Expert-level sales operations for revenue optimization. Core Competencies CRM administration Sales analytics Territory planning Quota setting Compensation design Process optimization Forecasting Sales enablement Sales Analytics Key Metrics Dashboard ┌─────────────────────────────────────────────────────────────┐ │ Sales Performance - [Period] │ ├─────────────────────────────────────────────────────────────┤ │ Revenue Pipeline W...
|
117 |