Performance

Performance profiling and optimization

Showing 937-960 of 2600 skills
treasure-data

tdx-basic

by treasure-data

Executes tdx CLI commands for Treasure Data. Covers tdx databases, tdx tables, tdx query, tdx auth setup, context management with profiles/sessions, and output formats (JSON/TSV/table). Use when users need tdx command syntax, authentication setup, database/table exploration, or query execution.

Processing 19 4mo ago
treasure-data

trino

by treasure-data

TD Trino SQL with TD-specific functions (td_interval, td_time_range, td_time_string, td_sessionize). Use for time-based filtering, partition pruning, and TD query patterns.

Database 19 4mo ago
treasure-data

hive

by treasure-data

TD Hive SQL with TD-specific functions and Hive-only features (lateral view, explode, MAPJOIN hint). Use when Trino memory errors occur or for Hive-specific syntax.

Database 19 5mo ago
sundial-org

agent-chronicle

by sundial-org

AI perspective journaling - document daily experiences, emotions, and learnings from the agent's viewpoint. Use when asked about diary, journal entries, self-reflection, or documenting AI experiences. Creates structured daily entries capturing projects, wins, frustrations, learnings, and emotional states.

Code Gen 607 4mo ago
sundial-org

agentic-compass

by sundial-org

Top OpenClaw skills, with the most popular and useful ones.

Agents 607 4mo ago
sundial-org

agents-manager

by sundial-org

Manage Clawdbot agents: discover, profile, track capabilities, define routing hierarchy, and assign tasks.

Agents 607 4mo ago
sundial-org

agentlens

by sundial-org

Navigate and understand codebases using agentlens hierarchical documentation. Use when exploring new projects, finding modules, locating symbols in large files, finding TODOs/warnings, or understanding code structure.

Code Gen 607 4mo ago
AvdLee

core-data-expert

by AvdLee

'Expert Core Data guidance (iOS/macOS): stack setup, fetch requests & NSFetchedResultsController, saving/merge conflicts, threading & Swift Concurrency, batch operations & persistent history, migrations, performance, and NSPersistentCloudKitContainer/CloudKit sync.'

Automation 271 4mo ago
iskysun96

analyze-gas-optimization

by iskysun96

"Analyze and optimize Aptos Move contracts for gas efficiency, identifying expensive operations and suggesting

Embeddings 15 3mo ago
jasonraimondi

meta-optimize-skill-md

by jasonraimondi

Reviews and improves existing skills by auditing clarity, trigger quality, workflow completeness, and instruction density, then rewriting SKILL.md with minimal-drift improvements. Use when user asks to improve a skill, review SKILL.md, optimize skill prompts, tighten skill descriptions, or refactor skill documentation.

Code Review 21 3mo ago
zhaono1

performance-engineer

by zhaono1

Performance optimization specialist for improving application speed and efficiency. Use when investigating performance issues or optimizing code.

Database 56 4mo ago
frankxai

Health & Nutrition Expert

by frankxai

Apply cutting-edge 2025 nutrition science on longevity, metabolic health, gut microbiome, and evidence-based dietary patterns for optimal vitality and disease prevention

ML Ops 12 7mo ago
technillogue

cuda

by technillogue

"CUDA kernel development, debugging, and performance optimization for Claude Code. Use when writing, debugging, or optimizing CUDA code, GPU kernels, or parallel algorithms. Covers non-interactive profiling with nsys/ncu, debugging with cuda-gdb/compute-sanitizer, binary inspection with cuobjdump, and performance analysis workflows. Triggers on CUDA, GPU programming, kernel optimization, nsys, ncu, cuda-gdb, compute-sanitizer, PTX, GPU profiling, parallel performance."

CLI Tools 204 5mo ago
pluginagentmarketplace

memory-management

by pluginagentmarketplace

Game memory optimization, object pooling, garbage collection tuning, and efficient resource management for target platforms.

Code Gen 30 5mo ago
pluginagentmarketplace

optimization-performance

by pluginagentmarketplace

Game optimization, performance profiling, multi-platform support, and frame rate optimization for smooth gameplay experiences.

Code Review 30 5mo ago
nth5693

code-review

by nth5693

Systematic multi-perspective code review with consistent quality gates.

Code Review 351 5mo ago
gohypergiant

accelint-ts-performance

by gohypergiant

"Systematic JavaScript/TypeScript performance audit and optimization using V8 profiling and runtime patterns. Use when (1) Users say 'optimize performance', 'audit performance', 'this is slow', 'reduce allocations', 'improve speed', 'check performance', (2) Analyzing code for performance anti-patterns (O(n²) complexity, excessive allocations, I/O blocking, template literal waste), (3) Optimizing functions regardless of current usage context - utilities, formatters, parsers are often called in hot paths even when they appear simple, (4) Fixing V8 deoptimization (monomorphic/polymorphic issues, inline caching). Audits ALL code for anti-patterns and reports findings with expected gains. Covers loops, caching, batching, memory locality, algorithmic complexity fixes with ❌/✅ patterns."

Code Review 14 3mo ago
gohypergiant

accelint-persona-review

by gohypergiant

Evaluate Figma designs from operator persona perspectives through design critique and user experience evaluation. Use when reviewing UX for specific user roles (e.g., air-surveillance-tech, weapons-director), conducting design reviews, or evaluating operator interfaces. Analyzes cognitive load, communication patterns, pain points, and system visibility. Works with Figma MCP (desktop/URL) and Outline docs.

Code Review 14 3mo ago
gohypergiant

accelint-react-best-practices

by gohypergiant

React performance optimization and best practices. Use when writing React components, hooks, or JSX; refactoring React code; optimizing re-renders, memoization, or state management; reviewing React code for performance issues; fixing hydration mismatches; or implementing transitions, lazy initialization, or effect dependencies. Covers React 19+ features including useEffectEvent, Activity component, and ref props.

Performance 14 3mo ago
gohypergiant

accelint-nextjs-best-practices

by gohypergiant

Next.js performance optimization and best practices. Use when writing Next.js code (App Router or Pages Router); implementing Server Components, Server Actions, or API routes; optimizing RSC serialization, data fetching, or server-side rendering; reviewing Next.js code for performance issues; fixing authentication in Server Actions; or implementing Suspense boundaries, parallel data fetching, or request deduplication.

Processing 14 3mo ago
gohypergiant

accelint-ts-testing

by gohypergiant

Comprehensive vitest testing guidance for TypeScript projects. Use when (1) Writing new tests with AAA pattern, parameterized tests, or async/await, (2) Reviewing test code for anti-patterns like loose assertions (toBeTruthy), over-mocking, or nested describe blocks, (3) Optimizing slow test suites, (4) Implementing property-based testing with fast-check - especially for encode/decode pairs, roundtrip properties, validators, normalizers, and idempotence checks. Covers test organization, assertions, test doubles hierarchy (fakes/stubs/mocks), async testing, performance patterns, and property-based testing patterns. Trigger keywords on vitest, *.test.ts, describe, it, expect, vi.mock, fast-check, fc.property, roundtrip, idempotence.

Code Review 14 3mo ago
gohypergiant

accelint-ts-best-practices

by gohypergiant

Comprehensive TypeScript/JavaScript coding standards focusing on type safety, defensive programming, and code correctness. Use when (1) Writing or reviewing TS/JS code, (2) Fixing type errors or avoiding any/enum/null, (3) Implementing control flow, state management, or error handling, (4) Applying zero-value pattern or immutability, (5) Code review for TypeScript anti-patterns. Covers naming conventions, function design, return values, bounded iteration, input validation. For performance optimization, use accelint-ts-performance skill. For documentation, use accelint-ts-documentation skill.

Debugging 14 3mo ago
ynulihao

analyzing-financial-statements

by ynulihao

This skill calculates key financial ratios and metrics from financial statement data for investment analysis

Processing 420 4mo ago
ynulihao

performance-optimization

by ynulihao

Apply systematic performance optimization techniques when writing or reviewing code. Use when optimizing hot paths, reducing latency, improving throughput, fixing performance regressions, or when the user mentions performance, optimization, speed, latency, throughput, profiling, or benchmarking.

Caching 420 4mo ago