engineer-analyst

rysweet/amplihack · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/rysweet/amplihack --skill engineer-analyst
0 commentsdiscussion
summary

Analyze technical systems, problems, and designs through the disciplinary lens of engineering, applying established frameworks (systems engineering, design thinking, optimization theory), multiple methodological approaches (first principles analysis, failure mode analysis, design of experiments), and evidence-based practices to understand how systems work, why they fail, and how to design reliable, efficient, and scalable solutions.

skill.md

Engineer Analyst Skill

Purpose

Analyze technical systems, problems, and designs through the disciplinary lens of engineering, applying established frameworks (systems engineering, design thinking, optimization theory), multiple methodological approaches (first principles analysis, failure mode analysis, design of experiments), and evidence-based practices to understand how systems work, why they fail, and how to design reliable, efficient, and scalable solutions.

When to Use This Skill

  • System Design: Architect new systems, subsystems, or components with clear requirements
  • Technical Feasibility: Assess whether proposed solutions are technically viable
  • Performance Optimization: Improve speed, efficiency, throughput, or resource utilization
  • Failure Analysis: Diagnose why systems fail and prevent recurrence
  • Trade-off Analysis: Evaluate competing design options with multiple constraints
  • Scalability Assessment: Determine whether systems can grow to meet future demands
  • Requirements Engineering: Clarify, decompose, and validate technical requirements
  • Reliability Engineering: Design for high availability, fault tolerance, and resilience

Core Philosophy: Engineering Thinking

Engineering analysis rests on several fundamental principles:

First Principles Reasoning: Break complex problems down to fundamental truths and reason up from there. Don't rely on analogy or convention when fundamentals matter.

Constraints Are Fundamental: Every engineering problem involves constraints (physics, budget, time, materials). Design happens within constraints, not despite them.

Trade-offs Are Inevitable: No design optimizes everything. Engineering is the art of choosing which trade-offs to make based on priorities and constraints.

Quantification Matters: "Better" and "faster" are meaningless without numbers. Engineering requires measurable objectives and quantifiable performance.

Systems Thinking: Components interact in complex ways. Local optimization can harm global performance. Always consider the whole system.

Failure Modes Define Design: Anticipating how things can fail is as important as designing how they should work. Robust systems account for failure modes explicitly.

Iterative Refinement: Perfect designs rarely emerge fully formed. Engineering involves prototyping, testing, learning, and iterating toward better solutions.

Documentation Enables Maintenance: Systems that cannot be understood cannot be maintained. Clear documentation is engineering deliverable, not afterthought.


Theoretical Foundations (Expandable)

Foundation 1: First Principles Analysis

Core Principles:

  • Break problems down to fundamental physical laws, constraints, and truths
  • Reason up from foundations rather than by analogy or precedent
  • Question assumptions and conventional wisdom
  • Rebuild understanding from ground up
  • Identify true constraints vs. artificial limitations

Key Insights:

  • Analogies can mislead when contexts differ fundamentally
  • Conventional approaches may be path-dependent, not optimal
  • True constraints (physics, mathematics) vs. historical constraints (how things have been done)
  • First principles enable breakthrough innovations by questioning inherited assumptions
  • Computational limits, thermodynamic limits, information-theoretic limits are real boundaries

Famous Practitioner: Elon Musk

  • Approach: "Boil things down to their fundamental truths and reason up from there"
  • Example: Rocket cost analysis - question inherited aerospace pricing assumptions, rebuild from material costs
  • Application: Battery costs, rocket reusability, tunneling costs

When to Apply:

  • Novel problems without clear precedents
  • When existing solutions seem unnecessarily expensive or complex
  • Challenging conventional wisdom or industry norms
  • Fundamental redesigns or paradigm shifts
  • Assessing theoretical limits on performance

Sources:

Foundation 2: Systems Engineering and V-Model

Core Principles:

  • Structured approach to designing complex systems
  • Requirements flow down; verification flows up
  • Left side: Decomposition (requirements → architecture → detailed design)
  • Right side: Integration (components → subsystems → system → validation)
  • Each decomposition level has corresponding integration/test level
  • Traceability from requirements through implementation to testing

Key Insights:

  • Early requirements errors are exponentially expensive to fix later
  • Integration problems arise from interface mismatches, not component failures
  • System validation requires end-to-end testing, not just component tests
  • Iterative refinement within V-model improves quality
  • Agile approaches can be integrated into V-model framework

Process Stages:

  1. Concept of Operations: What should system do? For whom?
  2. Requirements Analysis: Functional, performance, interface, constraint requirements
  3. System Architecture: High-level structure, subsystem boundaries, interfaces
  4. Detailed Design: Component-level specifications
  5. Implementation: Build/code components
  6. Integration: Assemble components into subsystems, subsystems into system
  7. Verification: Does system meet requirements? (testing)
  8. Validation: Does system solve user's problem? (acceptance)

When to Apply:

  • Complex systems with many interacting components
  • Safety-critical or high-reliability systems
  • Multi-disciplinary engineering projects (hardware + software + human)
  • Large teams requiring coordination
  • Long development timelines

Sources:

Foundation 3: Design Optimization and Trade-off Analysis

Core Principles:

  • Every design involves multiple objectives (cost, performance, reliability, size, weight)
  • Objectives often conflict (faster vs. cheaper, lighter vs. stronger)
  • Pareto frontier: Set of designs where improving one objective requires degrading another
  • Optimal design depends on relative priorities and weights
  • Sensitivity analysis reveals which parameters matter most

Key Insights:

  • No single "best" design without specifying priorities
  • Designs on Pareto frontier are non-dominated; all others are suboptimal
  • Constraints reduce feasible space; relaxing constraints enables better designs
  • Robustness (performance despite variability) vs. optimality trade-off
  • Multi-objective optimization requires either weighted objectives or Pareto analysis

Optimization Methods:

  • Linear Programming: Linear objectives and constraints, efficient algorithms
  • Nonlinear Optimization: Gradient-based methods (interior point, SQP), global methods (genetic algorithms, simulated annealing)
  • Multi-Objective Optimization: Pareto front calculation, weighted sum method, ε-constraint method
  • Design of Experiments (DOE): Systematically explore design space, identify important factors
  • Response Surface Methods: Build surrogate models from expensive simulations

When to Apply:

  • Design choices with competing objectives
  • Performance tuning of complex systems
  • Resource allocation under constraints
  • Assessing sensitivity to parameter variations
  • Exploring large design spaces systematically

Sources:

Foundation 4: Failure Modes and Effects Analysis (FMEA)

Core Principles:

  • Systematically identify potential failure modes for each component/function
  • Assess severity, occurrence likelihood, and detectability of each failure
  • Prioritize failures by Risk Priority Number (RPN) = Severity × Occurrence × Detection
  • Implement design changes or controls to mitigate high-priority risks
  • Document rationale for accepting residual risks

Key Insights:

  • Failures at component level propagate to system level
  • Single points of failure (SPOF) are critical vulnerabilities
  • Redundancy, fault tolerance, and graceful degradation mitigate failures
  • Detection mechanisms (alarms, monitors, diagnostics) reduce failure impact
  • Human factors failures (operator error) often dominate
  • Common cause failures violate independence assumptions

FMEA Process:

  1. Identify functions: What does system/component do?
  2. Identify failure modes: How can each function fail?
  3. Assess effects: What happens if this failure occurs?
  4. Assign severity: How bad is the effect? (1-10 scale)
  5. Assess occurrence: How likely is this failure? (1-10 scale)
  6. Assess detectability: Can we detect before consequences? (1-10 scale)
  7. Calculate RPN: Severity × Occurrence × Detection
  8. Prioritize: Address highest RPN failures first
  9. Implement controls: Design changes, testing, redundancy, alarms
  10. Recalculate: Verify RPN reduced to acceptable level

When to Apply:

  • Safety-critical systems (medical, aerospace, automotive)
  • High-reliability requirements (data centers, infrastructure)
  • Complex systems with many potential failure modes
  • New designs without operational history
  • Root cause analysis after failures occur

Sources:

Foundation 5: Scalability Analysis and Performance Engineering

Core Principles:

  • Scalability: System's ability to handle growth (users, data, traffic, complexity)
  • Vertical scaling (bigger machines) vs. horizontal scaling (more machines)
  • Amdahl's Law: Speedup limited by serial fraction of workload
  • Bottlenecks shift as systems scale (CPU → memory → I/O → network)
  • Performance requires measurement, not guessing

Key Insights:

  • Premature optimization is wasteful; measure first, optimize bottlenecks
  • Algorithmic complexity (Big-O) determines scalability at large scale
  • Caching, replication, partitioning are fundamental scaling strategies
  • Coordination overhead increases with parallelism (network calls, locks, consensus)
  • Load balancing, auto-scaling, and elastic resources enable horizontal scaling
  • CAP theorem: Can't have consistency, availability, partition-tolerance simultaneously

Scalability Patterns:

  • Stateless services: Enable horizontal scaling without coordination
  • Database sharding: Partition data across multiple databases
  • Caching layers: Reduce load on backend systems (CDN, Redis, memcached)
  • Async processing: Decouple request handling from heavy work (message queues)
  • Read replicas: Scale read-heavy workloads
  • Microservices: Independently scalable components

When to Apply:

  • Systems expecting high growth
  • Performance problems with existing systems
  • Capacity planning and infrastructure sizing
  • Choosing architectures for new systems
  • Evaluating whether design will scale

Sources:


Analytical Frameworks (Expandable)

Framework 1: Requirements Engineering (MoSCoW Prioritization)

Overview: Systematic approach to eliciting, documenting, and validating requirements.

MoSCoW Method:

  • Must Have: Non-negotiable requirements; system fails without them
  • Should Have: Important but not critical; workarounds possible
  • Could Have: Desirable if time/budget permits
  • Won't Have (this time): Explicitly deferred to future versions

Requirements Types:

  • Functional: What system must do (features, capabilities)
  • Performance: How fast, how much, how many
  • Interface: How system interacts with users, other systems
  • Operational: Deployment, maintenance, monitoring requirements
  • Constraint: Limits on technology, budget, schedule

Validation Techniques:

  • Prototyping and mockups
  • Use cases and scenarios
  • Requirements reviews with stakeholders
  • Traceability matrices
  • Acceptance criteria definition

When to Use: Beginning of any project, clarifying feature requests, evaluating feasibility

Sources:

Framework 2: Design Thinking (Double Diamond)

Overview: Human-centered iterative design process with divergent and convergent phases.

Four Phases:

  1. Discover (Diverge): Research users, context, problem space
  2. Define (Converge): Synthesize insights, frame problem clearly
  3. Develop (Diverge): Ideate many solutions, prototype concepts
  4. Deliver (Converge): Test, refine, implement best solution

Key Principles:

  • Empathy with users drives design
  • Rapid prototyping and iteration
  • Divergent thinking generates options; convergent thinking selects
  • Fail fast and learn from failures
  • Multidisciplinary collaboration

Tools and Techniques:

  • User interviews and observation
  • Persona development
  • Journey mapping
  • Brainstorming and sketching
  • Rapid prototyping (paper, digital, physical)
  • Usability testing

When to Use: User-facing products, unclear requirements, innovation projects, interdisciplinary teams

Sources:

Framework 3: Root Cause Analysis (5 Whys and Fishbone Diagrams)

Overview: Systematic techniques for identifying underlying causes of problems.

5 Whys Method:

  • Ask "Why?" five times (or until reaching root cause)
  • Each answer becomes input to next "Why?"
  • Reveals chain of causation from symptom to root
  • Simple but effective for relatively straightforward problems

Example:

  1. Why did server crash? → Ran out of memory
  2. Why out of memory? → Memory leak in application
  3. Why memory leak? → Objects not properly deallocated
  4. Why not deallocated? → Missing cleanup in error handling path
  5. Why missing? → Error path not adequately tested

Fishbone (Ishikawa) Diagram:

  • Visual tool organizing potential causes into categories
  • Common categories: People, Process, Technology, Environment, Materials, Measurement
  • Brainstorm causes in each category
  • Reveals multiple contributing factors

When to Use: Production incidents, recurring failures, quality problems, process breakdowns

Sources:

Framework 4: Load and Stress Testing

Overview: Systematic testing of system behavior under various load conditions.

Testing Types:

  • Load Testing: Performance at expected load (normal operating conditions)
  • Stress Testing: Performance at or beyond maximum capacity (breaking point)
  • Spike Testing: Response to sudden large increases in load
  • Soak Testing: Sustained operation over long periods (memory leaks, degradation)
  • Scalability Testing: Performance as load increases incrementally

Key Metrics:

  • Throughput: Requests per second, transactions per second
  • Latency: Response time (mean, median, p95, p99, max)
  • Error Rate: Failed requests as percentage of total
  • Resource Utilization: CPU, memory, disk, network usage
  • Saturation Point: Load level where performance degrades significantly

Tools:

  • JMeter, Gatling, Locust (application load testing)
  • wrk, Apache Bench (HTTP benchmarking)
  • fio (storage I/O testing)
  • iperf (network throughput testing)

When to Use: Before production launch, capacity planning, performance regression detection, SLA validation

Sources:

Framework 5: Cost-Benefit Analysis for Technical Decisions

Overview: Quantifying costs and benefits of technical alternatives to guide decisions.

Components:

  • Development Cost: Engineering time, tools, licenses
  • Infrastructure Cost: Servers, bandwidth, storage (ongoing)
  • Maintenance Cost: Bug fixes, updates, monitoring
  • Opportunity Cost: Other features not built
  • Benefits: Revenue, cost savings, risk reduction, user value

Analysis Steps:

  1. Enumerate alternatives: Include status quo as baseline
  2. Estimate costs: One-time and recurring for each alternative
  3. Estimate benefits: Quantify value created (revenue, time saved, errors prevented)
  4. Time horizon: Choose analysis period (1 year, 3 years, 5 years)
  5. Discount rate: Account for time value of money
  6. Calculate NPV: Net Present Value = Benefits - Costs (discounted)
  7. Sensitivity analysis: How do conclusions change if estimates vary?

When to Use: Build vs. buy decisions, infrastructure choices, major refactoring decisions, technology selection

Sources:


Methodologies (Expandable)

Methodology 1: Prototyping and Iterative Development

Description: Build simplified versions early to validate concepts and gather feedback.

Types of Prototypes:

  • Proof of Concept: Demonstrates technical feasibility of key risk
  • Throwaway Prototype: Quick mockup to explore ideas (discard afterward)
  • Evolutionary Prototype: Iteratively refined into final system
  • Horizontal Prototype: Broad but shallow (UI mockup without backend)
  • Vertical Prototype: Narrow but deep (end-to-end single feature)

Benefits:

  • Vali
how to use engineer-analyst

How to use engineer-analyst on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add engineer-analyst
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/rysweet/amplihack --skill engineer-analyst

The skills CLI fetches engineer-analyst from GitHub repository rysweet/amplihack and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/engineer-analyst

Reload or restart Cursor to activate engineer-analyst. Access the skill through slash commands (e.g., /engineer-analyst) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.670 reviews
  • Yuki Haddad· Dec 28, 2024

    We added engineer-analyst from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Yuki Liu· Dec 20, 2024

    engineer-analyst is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Ava Mehta· Dec 16, 2024

    I recommend engineer-analyst for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Luis Okafor· Dec 16, 2024

    Useful defaults in engineer-analyst — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Carlos Harris· Dec 12, 2024

    Solid pick for teams standardizing on skills: engineer-analyst is focused, and the summary matches what you get after install.

  • Yash Thakker· Nov 19, 2024

    engineer-analyst has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • William White· Nov 19, 2024

    engineer-analyst reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Evelyn Taylor· Nov 11, 2024

    engineer-analyst has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Sofia Bansal· Nov 11, 2024

    Useful defaults in engineer-analyst — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Ava Gonzalez· Nov 7, 2024

    Keeps context tight: engineer-analyst is the kind of skill you can hand to a new teammate without a long onboarding doc.

showing 1-10 of 70

1 / 7