# Analysis Skill

> Comprehensive analysis of [domain area].

- Skill: `majiayu000/analysis-skill` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/analysis-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/analysis-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/analysis-skill

---


---
name: [analysis-type]-analyzer
description: Analyze [what to analyze] and provide [output type]. Use when reviewing [area], checking [metrics], or when user asks to "analyze [keyword]".
allowed-tools: Read, Grep, Glob, Bash
---

# [Analysis Type] Analyzer

Comprehensive analysis of [domain area].

## What This Analyzes

- [Aspect 1]
- [Aspect 2]
- [Aspect 3]

## When to Run

- Before [decision point]
- After [change/deployment]
- During [review process]
- When requested: "analyze [keyword]"

## Analysis Process

### 1. Data Collection

Gather information from:
```bash
# Command to collect data 1
# Command to collect data 2
```

### 2. Analysis

Examine for:
- ✅ [Positive indicator 1]
- ✅ [Positive indicator 2]
- ⚠️ [Warning sign 1]
- ❌ [Issue 1]

### 3. Metrics Calculation

Calculate key metrics:
```typescript
// Example metric calculation
```

### 4. Report Generation

Generate structured report:

```markdown
# [Analysis Type] Report
Generated: [timestamp]

## Summary
[High-level findings]

## Metrics
- [Metric 1]: [value]
- [Metric 2]: [value]

## Findings
### ✅ Strengths
- [Finding 1]

### ⚠️ Warnings
- [Finding 2]

### ❌ Issues
- [Finding 3]

## Recommendations
1. [Action 1]
2. [Action 2]
```

## Interpretation Guide

### Healthy Indicators
- [Metric] between [range]: Optimal
- [Pattern] observed: Good sign

### Warning Signs
- [Metric] above [threshold]: Investigate
- [Pattern] missing: Potential issue

### Critical Issues
- [Metric] exceeds [limit]: Immediate action needed
- [Pattern] detected: Fix required

## Automated Analysis

Run full analysis:
```bash
# Analysis script
```

## Analysis Frequency

Recommended schedule:
- **Daily**: [Quick check]
- **Weekly**: [Full analysis]
- **Monthly**: [Deep dive]

## Files Analyzed

This skill examines:
- `src/[area]/**/*.ts` - [What to check]
- `[config-file]` - [What to validate]

## Comparison with Baselines

Compare against:
- Previous analysis (trend)
- Industry benchmarks
- Project goals

## Export Options

Export report as:
- Markdown: `report.md`
- JSON: `report.json`
- HTML: `report.html`

## Related Skills

- `[related-skill]` - For remediation
- `[related-skill]` - For monitoring

## Version History

- v1.0.0 (YYYY-MM-DD): Initial analyzer

