profile — codesearch profile, veloria, community, codesearch, ide skills, search, trigrams, wordpress, Claude Code, Cursor, Windsurf

v1.0.0

이 스킬 정보

CPU 및 메모리 프로파일링 기능이 필요한 Go 중심의 AI 에이전트에 적합합니다. Run CPU and memory profiling with pprof to identify performance hotspots. Use when investigating high resource usage.

# Core Topics

PeterBooker PeterBooker
[9]
[1]
Updated: 3/11/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

CPU 및 메모리 프로파일링 기능이 필요한 Go 중심의 AI 에이전트에 적합합니다. Run CPU and memory profiling with pprof to identify performance hotspots. Use when investigating high resource usage.

이 스킬을 사용하는 이유

pprof를 사용하여 에이전트가 Go 코드 내의 CPU 핫스팟과 메모리 할당을 식별할 수 있도록 하며, 정규 표현식 기반의 코드 검색과 워드프레스 핵심 버전, 플러그인, 테마의 분석을 통해 최적화된 성능과 리소스 활용을 구현합니다.

최적의 용도

CPU 및 메모리 프로파일링 기능이 필요한 Go 중심의 AI 에이전트에 적합합니다.

실행 가능한 사용 사례 for profile

Go 패키지 내의 CPU 사용량 분석
워드프레스 플러그인 내의 메모리 할당 분석
Go 코드베이스 내의 성능 병목 현상 식별

! 보안 및 제한 사항

  • Go 코드베이스 접근 필요
  • 워드프레스 핵심, 플러그인, 테마만
  • pprof 의존

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is profile?

CPU 및 메모리 프로파일링 기능이 필요한 Go 중심의 AI 에이전트에 적합합니다. Run CPU and memory profiling with pprof to identify performance hotspots. Use when investigating high resource usage.

How do I install profile?

Run the command: npx killer-skills add PeterBooker/veloria/profile. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for profile?

Key use cases include: Go 패키지 내의 CPU 사용량 분석, 워드프레스 플러그인 내의 메모리 할당 분석, Go 코드베이스 내의 성능 병목 현상 식별.

Which IDEs are compatible with profile?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for profile?

Go 코드베이스 접근 필요. 워드프레스 핵심, 플러그인, 테마만. pprof 의존.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add PeterBooker/veloria/profile. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use profile immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

profile

Install profile, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

CPU and Memory Profiling

Profile Go code to identify CPU hotspots and memory allocators using pprof.

Usage

  • /profile cpu ./internal/index/ - CPU profiling on index package
  • /profile memory ./internal/repo/ - Memory profiling on repo package
  • /profile all ./... - Both CPU and memory on all packages

Steps

  1. Parse arguments

    • First argument: Profile type (cpu, memory, or all)
    • Second argument: Package path (defaults to ./...)
  2. Create profile output directory

    bash
    1mkdir -p .profiles
  3. Run profiling benchmarks

    For CPU profiling:

    bash
    1go test -cpuprofile=.profiles/cpu.prof -bench=. $PACKAGE 2>&1

    For memory profiling:

    bash
    1go test -memprofile=.profiles/mem.prof -bench=. $PACKAGE 2>&1
  4. Analyze CPU profile

    bash
    1go tool pprof -top -cum .profiles/cpu.prof 2>&1 | head -30

    Identify:

    • Top 10 CPU consumers by cumulative time
    • Functions with high self time (computation hotspots)
    • Unexpected entries (potential optimization targets)
  5. Analyze memory profile

    bash
    1go tool pprof -top -alloc_space .profiles/mem.prof 2>&1 | head -30

    Identify:

    • Top allocators by total bytes
    • Functions with high allocation counts
    • Potential sources of GC pressure
  6. Generate flamegraph data (if requested)

    bash
    1go tool pprof -raw .profiles/cpu.prof > .profiles/cpu.raw
  7. Report findings

    Structure the report as:

    CPU Hotspots

    FunctionSelf%Cum%Observation

    Memory Allocators

    FunctionBytesAllocsObservation

    Optimization Suggestions

    • List specific, actionable recommendations
    • Reference line numbers where applicable
    • Note any patterns (e.g., repeated allocations in loops)

Interpreting Results

CPU Profile Indicators

  • High self%: Direct computation hotspot
  • High cum% but low self%: Calls expensive functions
  • runtime.*: GC or scheduler overhead

Memory Profile Indicators

  • High alloc_space: Total memory pressure
  • High alloc_objects: GC pressure from many small allocations
  • Repeated patterns: Loop allocations, string concatenation

Common Hotspots in Veloria

Watch for issues in:

  • (*Index).Search - Regex compilation, line reading
  • (*Repository).Load - Index file mapping
  • (*IndexedExtension).Update - Hot-swap operations
  • HTTP handlers - JSON marshaling, response writing

Cleanup

Profile files are stored in .profiles/. Add to .gitignore if not already present.

관련 스킬

Looking for an alternative to profile or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자