Skip to content

Commit 5a34d66

Browse files
author
Leo
committed
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
1 parent 93eee35 commit 5a34d66

2 files changed

Lines changed: 18 additions & 3 deletions

File tree

engineering/interview-system-designer/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ python3 scripts/interview_planner.py --role "Product Manager" --level mid --json
4040
## References
4141

4242
- `references/interview-frameworks.md`
43-
- `references/interview_calibration_guide.md`
44-
- `references/behavioral_interview_framework.md`
45-
- `references/technical_assessment_patterns.md`
43+
- `references/bias_mitigation_checklist.md`
44+
- `references/competency_matrix_templates.md`
45+
- `references/debrief_facilitation_guide.md`
4646

4747
## Common Pitfalls
4848

engineering/performance-profiler/SKILL.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ Systematic performance profiling for Node.js, Python, and Go applications. Ident
3737

3838
---
3939

40+
## Quick Start
41+
42+
```bash
43+
# Analyze a project for performance risk indicators
44+
python3 scripts/performance_profiler.py /path/to/project
45+
46+
# JSON output for CI integration
47+
python3 scripts/performance_profiler.py /path/to/project --json
48+
49+
# Custom large-file threshold
50+
python3 scripts/performance_profiler.py /path/to/project --large-file-threshold-kb 256
51+
```
52+
53+
---
54+
4055
## Golden Rule: Measure First
4156

4257
```bash

0 commit comments

Comments
 (0)