From 5a34d661aafe470a39398abfbe2384b1454835f0 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 11 Mar 2026 20:46:48 +0100 Subject: [PATCH] fix(engineering): address Claude Code review findings - performance-profiler: add Quick Start section with script usage examples - interview-system-designer: fix references to match actual filenames --- engineering/interview-system-designer/SKILL.md | 6 +++--- engineering/performance-profiler/SKILL.md | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/engineering/interview-system-designer/SKILL.md b/engineering/interview-system-designer/SKILL.md index d27d2de..32f1c66 100644 --- a/engineering/interview-system-designer/SKILL.md +++ b/engineering/interview-system-designer/SKILL.md @@ -40,9 +40,9 @@ python3 scripts/interview_planner.py --role "Product Manager" --level mid --json ## References - `references/interview-frameworks.md` -- `references/interview_calibration_guide.md` -- `references/behavioral_interview_framework.md` -- `references/technical_assessment_patterns.md` +- `references/bias_mitigation_checklist.md` +- `references/competency_matrix_templates.md` +- `references/debrief_facilitation_guide.md` ## Common Pitfalls diff --git a/engineering/performance-profiler/SKILL.md b/engineering/performance-profiler/SKILL.md index 7276ba1..47970c1 100644 --- a/engineering/performance-profiler/SKILL.md +++ b/engineering/performance-profiler/SKILL.md @@ -37,6 +37,21 @@ Systematic performance profiling for Node.js, Python, and Go applications. Ident --- +## Quick Start + +```bash +# Analyze a project for performance risk indicators +python3 scripts/performance_profiler.py /path/to/project + +# JSON output for CI integration +python3 scripts/performance_profiler.py /path/to/project --json + +# Custom large-file threshold +python3 scripts/performance_profiler.py /path/to/project --large-file-threshold-kb 256 +``` + +--- + ## Golden Rule: Measure First ```bash