BeClaude

fmea-analysis

New
7Community RegistryGeneralby dunnock

Conduct FMEA for systematic failure mode identification using AIAG-VDA 7-step methodology. Supports DFMEA, PFMEA, and FMEA-MSR with Action Priority risk assessment.

Community PluginView Source

Overview

A collection of plugins that extend Claude's capabilities. Supports two plugin types:

  • Skills: SKILL.md-based plugins with workflows, domain knowledge, and bundled resources
  • MCPs: Model Context Protocol servers that provide tools for Claude Desktop

Directory Structure

code
claude-plugins/
├── skills/                 # Skill plugins (19 skills)
│   ├── concept-dev/
│   ├── documentation-architect/
│   ├── fault-tree-analysis/
│   ├── fishbone-diagram/
│   ├── five-whys-analysis/
│   ├── fmea-analysis/
│   ├── kepner-tregoe-analysis/
│   ├── pareto-analysis/
│   ├── plugin-creator/
│   ├── problem-definition/
│   ├── rcca-master/
│   ├── requirements-dev/
│   ├── research-opportunity-investigator/
│   ├── skill-tester/
│   ├── specification-refiner/
│   ├── speckit-generator/
│   ├── streaming-output/
│   ├── streaming-output-mcp/
│   └── trade-study-analysis/
├── mcps/                   # MCP server plugins
│   ├── knowledge-mcp/
│   └── session-memory/
├── tools/                  # Packaging utilities
│   ├── init_plugin.py      # Create new plugins
│   ├── validate_plugin.py  # Validate plugins
│   ├── package_plugin.py   # Package for distribution
│   └── install_mcp.py      # Install MCPs to ~/.claude/
└── dist/                   # Packaged .plugin files (gitignored)

Plugin Types

Skills

Skills provide workflows, procedures, and domain knowledge that Claude loads based on context. Each skill has:

  • SKILL.md: Manifest with frontmatter (name, description) and instructions
  • scripts/: Optional executable code
  • references/: Optional documentation
  • assets/: Optional files for output (templates, images)

MCPs (Model Context Protocol)

MCPs provide tools that are always available in Claude Desktop. Each MCP has:

  • .claude-plugin/plugin.json: Manifest with name, description, and server configuration
  • server.py: MCP server implementation
  • config.json: Optional configuration

Quick Start

Create a New Plugin

bash
# Create a skill
python tools/init_plugin.py skill my-skill --path skills

# Create an MCP
python tools/init_plugin.py mcp my-mcp --path mcps

Package a Plugin

bash
python tools/package_plugin.py skills/my-skill
# Creates: my-skill.plugin

Install an MCP

bash
# From packaged file
python tools/install_mcp.py dist/session-memory.plugin

# From directory (symlink for development)
python tools/install_mcp.py mcps/session-memory --symlink

Then add to Claude Desktop config (~/.config/claude/claude_desktop_config.json):

json
{
  "mcpServers": {
    "session-memory": {
      "command": "python3",
      "args": ["~/.claude/session-memory/server.py"]
    }
  }
}

Included Plugins

Skills

SkillDescription
rcca-masterOrchestrate RCCA investigations using 8D methodology with integrated tool selection
problem-definition5W2H and IS/IS NOT analysis for precise problem statements
five-whys-analysisRoot cause analysis with guided questioning and quality scoring
fishbone-diagramIshikawa cause-and-effect diagrams with 6Ms/8Ps/4Ss categories
pareto-analysis80/20 Rule analysis for prioritizing vital few causes
kepner-tregoe-analysisKT Problem Solving and Decision Making (Situation/Problem/Decision/Potential Problem Analysis)
fault-tree-analysisBoolean logic analysis for system failure pathways and minimal cut sets
fmea-analysisFailure Mode and Effects Analysis (DFMEA/PFMEA) using AIAG-VDA methodology
SkillDescription
speckit-generatorProject specification and task management with PLANS taxonomy, ADR decisions, SMART criteria, anti-pattern detection
specification-refinerSEAMS framework analysis with sequential clarification and multi-phase workflow
documentation-architectTransform documentation using the Diátaxis framework
research-opportunity-investigatorResearch and opportunity investigation for protocols
SkillDescription
concept-devNASA Phase A concept development lifecycle: ideation, problem definition, black-box architecture, drill-down with gap analysis, and document generation with cited research
requirements-devINCOSE-compliant requirements development with hybrid quality checking (16 deterministic + 9 semantic rules), verification planning, bidirectional traceability, assumption lifecycle management, gap analysis, and ReqIF export
SkillDescription
trade-study-analysisSystematic trade study using DAU 9-Step Process with sensitivity analysis
SkillDescription
streaming-outputStream long-form content to markdown files with resume capability
streaming-output-mcpStream structured content to SQLite with multi-format export (Markdown, HTML, JSON, YAML, CSV)
SkillDescription
plugin-creatorGenerate Claude plugins from user prompts with documentation and testing
skill-testerDeep test, analyze, and audit Claude skills with API tracing, script I/O capture, and security/code review agents

MCPs

MCPDescription
session-memoryPersistent session memory with searchable storage, checkpoints, semantic search, and cloud sync
knowledge-mcpSemantic search over systems engineering standards (IEEE, INCOSE, ISO) with RAG capabilities

Requirements

  • Python 3.10+
  • PyYAML: pip install pyyaml
  • MCP SDK (for MCPs): pip install mcp

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/fmea-analysis.md https://raw.githubusercontent.com/ddunnock/claude-plugins/main/SKILL.md
3
Invoke in Claude Code
/fmea-analysis
View source on GitHub
fmeadfmeapfmearisk-assessmentaiag-vda

Frequently Asked Questions

What is fmea-analysis?

Conduct FMEA for systematic failure mode identification using AIAG-VDA 7-step methodology. Supports DFMEA, PFMEA, and FMEA-MSR with Action Priority risk assessment.

How to install fmea-analysis?

To install fmea-analysis, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /fmea-analysis.

What is fmea-analysis best for?

fmea-analysis is a community categorized under General. It is designed for: fmea, dfmea, pfmea, risk-assessment, aiag-vda. Created by dunnock.