Analyze and apply system-level performance optimizations — memory, CPU, and latency using npx monomind performance optimize
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill optimization-performance-optimize --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Optimization Performance Optimize?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-optimization-performance-optimize)More formats (shields.io, HTML) on the badges page.
---
name: optimization-performance-optimize
description: Analyze and apply system-level performance optimizations — memory, CPU, and latency using npx monomind performance optimize
type: flow
---
# performance optimize
Analyze and apply system-level performance optimizations — memory, CPU, and latency.
## Usage
```bash
npx monomind performance optimize [options]
```
## Options
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
| `--target` | `-t` | string | `all` | Optimization target: `memory`, `cpu`, `latency`, `all` |
| `--apply` | `-a` | boolean | `false` | Apply recommended optimizations |
| `--dry-run` | `-d` | boolean | `false` | Show recommended changes without applying |
## Examples
```bash
# Analyze and show recommendations (no changes)
npx monomind performance optimize --dry-run
# Optimize everything and apply
npx monomind performance optimize --target all --apply
# Memory-specific optimization
npx monomind performance optimize --target memory --apply
# CPU optimization only
npx monomind performance optimize --target cpu --apply
# Latency optimization (MCP response time)
npx monomind performance optimize --target latency --apply
```
## Optimization Targets
| Target | What It Optimizes |
|---|---|
| `memory` | Memory backend compression, HNSW rebuild, cache eviction |
| `cpu` | Agent pool sizing, task batching, concurrency limits |
| `latency` | MCP response caching, neural model quantization |
| `all` | All of the above |
## Related Commands
```bash
# Find bottlenecks before optimizing
npx monomind performance bottleneck
# Run benchmarks to measure before/after
npx monomind performance benchmark --suite all
# View current performance metrics
npx monomind performance metrics
```
## MCP Tool
```javascript
mcp__monomind__performance_optimize({
target: "all",
apply: false
})
```
## See Also
- `performance bottleneck` — diagnose what to optimize first
- `performance benchmark` — measure optimization impact
- `performance metrics` — track performance over time
- `neural optimize` — optimize neural model weights
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!