agentsclimarketplace

Startup time profiler

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/startup-time-profiler

Profile and optimize application startup time for desktop applicationsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill startup-time-profiler

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.9 KB, 372 tokens by cl100k_base, as published. Nobody here has run it

startup-time-profiler

Profile and optimize application startup time, identifying bottlenecks in initialization, module loading, and rendering.

Capabilities

  • Measure cold and warm start times
  • Identify module loading bottlenecks
  • Profile initialization phases
  • Generate timeline visualizations
  • Provide optimization recommendations
  • Set up CI performance tracking

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "framework": { "enum": ["electron", "tauri", "native"] },
    "iterations": { "type": "number", "default": 5 }
  },
  "required": ["projectPath"]
}

Electron Startup Profiling

// Add to main.js
const startTime = Date.now();

app.on('ready', () => {
  console.log(`App ready: ${Date.now() - startTime}ms`);
});

// Enable tracing
app.commandLine.appendSwitch('trace-startup');
app.commandLine.appendSwitch('trace-startup-file', 'startup-trace.json');

Optimization Techniques

  1. Lazy load modules
  2. Defer non-critical initialization
  3. Optimize bundle size
  4. Use V8 snapshots
  5. Preload critical resources

Benchmarks

MetricGoodAcceptablePoor
Cold start< 2s< 4s> 6s
Warm start< 1s< 2s> 3s
Window visible< 1.5s< 3s> 5s

Related Skills

  • memory-leak-detector
  • bundle-size-analyzer

What ships with it: 1 file

446 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.