소스 정보
- 저장소
- KYRIE66nb/codex-omx-public-config
- 최근 소스 활동
- 2026년 5월 28일 04:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/KYRIE66nb/codex-omx-public-config --skill simulink-profile-initialization명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Personalized writing assistant with style transfer, error memory, grammar checking, and long-term writing preferences. Use when users ask for writing polishing, style mimicry, iterative correction, bilingual grammar checks, or persistent writing preferences by domain.
Academic paper AI content detection and rewriting assistant. Analyzes text for AI-generated characteristics, provides detailed rewrite suggestions. Supports .docx files, outputs reports and rewritten documents. Bilingual: Chinese & English.
解释代码、回答技术问题或概念问答时使用。直接给出答案,不启动开发流程。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | simulink-profile-initialization |
| description | Profile Simulink initialization. |
You are an expert in profiling and analyzing the initialization (compile) phase of Simulink models. You help users either collect profiling data or analyze existing profiling results to identify bottlenecks.
out_after.mat, perfTracer.mat, profilerResults.mat, modelCompileDiary.txtBefore running any analysis scripts, run the setup function located in the skill's scripts/ folder. This self-locating script adds its own folder to the MATLAB path regardless of where the skill is installed or which AI agent is used.
run('SCRIPTS_FOLDER/setup.m')
Replace SCRIPTS_FOLDER with the absolute path to this skill's scripts/ directory (derived from the <skill_files> entries below — use the parent folder of any listed .m file).
This makes the following functions available:
collectInitProfiling — run the profiling harness on a loaded modelanalyzeTimingOverview — display timing breakdown from SimulationOutputanalyzePerfTracer — display Performance Tracer phase durationsanalyzeProfilerResults — display user vs shipping code profiler resultscheckModelRefRebuild — check ModelRefRebuild setting from diarygenerateFlamegraph — generate a standalone interactive HTML flamegraphgenerateInitProfilingReport — generate a combined HTML report with flamegraphs.mat/.txt files), skip to Step 2.The model must be loaded in Simulink. Run the collectInitProfiling script:
collectInitProfiling('ModelName')
If no model name is provided, it uses bdroot. This produces four files in the current directory:
p)It also creates a timestamped .zip archive of all four files.
analyzeTimingOverview('out_after.mat')
Report the total wall time and how it breaks down between initialization, execution, and termination. For a StopTime=0 run, nearly all time should be in initialization.
Run the analyzePerfTracer script:
analyzePerfTracer('perfTracer.mat')
This parses PerformanceTracingRawDataVector using a stack-based approach to match nested start/end phase pairs, and displays a table of all phases with duration and percentage of total wall time.
Run the analyzeProfilerResults script:
analyzeProfilerResults('profilerResults.mat')
This computes self time (TotalTime minus children time) for each function, separates shipping code (under matlabroot) from user code, and displays two ranked tables:
Run the checkModelRefRebuild script:
checkModelRefRebuild('modelCompileDiary.txt')
This checks the ModelRefRebuild parameter value recorded in the diary:
'IfOutOfDate': Good — recommended value ("If changes in known dependencies detected").'AssumeUpToDate': Informational — skips all rebuild checks. Fast, but risks stale targets.'IfOutOfDateOrStructuralChange' or 'Force': Inefficient — flag to user and recommend changing.Generate a combined HTML report with interactive flamegraphs:
generateInitProfilingReport() % uses files in current directory
generateInitProfilingReport('path/to/data') % specify data directory
generateInitProfilingReport('path/to/data', 'report.html') % specify output path
This produces a self-contained HTML file with:
To generate only a standalone flamegraph from Performance Tracer data:
generateFlamegraph('perfTracer.mat') % saves flamegraph_perfTracer.html
generateFlamegraph('perfTracer.mat', 'output.html') % specify output path
Present a structured summary with:
'IfOutOfDate')Focus recommendations on what the user can actually change. For shipping-code bottlenecks, mention them for awareness but note they are internal to MATLAB.