• Shift Left

    Shift Left

    What Is Shift Left? Rethinking Quality and Cost Through Early Testing
    Introduction
    Anyone who has run a system development project has likely faced this scenario: bugs that were invisible during requirements or design suddenly surface during integration or system testing, throwing schedules and budgets into chaos. This is one of the most common pain points project managers encounter.
    One answer to this problem is a concept known as “Shift Left.” In this post, we’ll walk through what shift left means, why it matters, how to put it into practice, and what to watch out for when introducing it.
    What Is Shift Left?
    If you picture a development timeline as a horizontal bar running from left to right, “shift left” means moving activities like testing, quality checks, and security validation — traditionally performed near the end of the project (the right side) — as early as possible (the left side).
    In a traditional waterfall approach, the flow typically looks like this:
    Requirements → Design → Implementation → Testing (quality is checked all at once here) → Release
    With shift left, testing perspectives are built in from the requirements and design stages, and testing runs in parallel with implementation rather than after it:
    Requirements (testing perspective built in) → Design (test case design) → Implementation (unit tests, static analysis) → Integration Testing → Release
    Why Shift Left Matters

    1. The Cost of Fixing a Bug Grows Exponentially Over Time
      The later a bug is discovered, the more expensive it becomes to fix. A problem caught during requirements definition might take a few hours to resolve. The same problem discovered after production release can require investigation, impact analysis across systems, a fix, retesting, and a full re-release — often at many times the cost.
    2. Preventing Schedule Delays from Rework
      In large-scale projects, rework discovered late rarely stays contained to a single feature. It tends to ripple outward, requiring impact analysis across related features and test cases, which in turn affects the entire project schedule. For projects managing thousands or tens of thousands of test cases, this ripple effect can be substantial.
    3. Building Shared Ownership of Quality Across the Team
      When testing is no longer something “the QA team handles at the end” but something everyone considers throughout the process, developers themselves start taking ownership of quality — and that mindset gradually shapes a stronger quality culture across the organization.

    How to Put Shift Left Into Practice

    PracticeDescription
    Defining test criteria during requirementsEstablish acceptance criteria alongside the requirements themselves
    Test-Driven Development (TDD)Write tests before writing the code that satisfies them
    Static code analysis toolsCatch bug-prone patterns mechanically at the coding stage
    Testing built into CI/CD pipelinesRun automated tests on every code change for immediate feedback
    QA involvement in design reviewsBring quality assurance perspectives in from the design stage
    Pair programming / code reviewBuild quality assurance into the implementation process itself

    The same thinking has taken hold in security under the banner of “DevSecOps,” where vulnerability assessments are increasingly built into the design and implementation stages rather than bolted on at the end.
    What to Watch Out for When Introducing Shift Left
    Shift left isn’t a silver bullet. A few things worth keeping in mind:
    • Heavier load on upstream phases: More time goes into test design during requirements and design, so early schedules need to account for that.
    • New skill requirements for the team: Developers need testing knowledge too, which may call for additional training.
    • Investment in tooling: CI/CD pipelines and static analysis tools require an automation foundation to be in place.
    • Coordination with outsourcing partners: On projects that rely on external vendors, it’s important to agree early on how testing perspectives will be shared through whatever progress-tracking tool you’re using.
    Conclusion
    Shift left isn’t just a change in testing technique — it represents a broader shift in development culture, from “quality is checked at the end” to “quality is built in throughout.”
    The larger the integration testing effort a project carries, the more upstream quality work shapes downstream risk. A good starting point is simply mapping out your own project’s timeline and asking: when is testing actually happening, who owns it, and what does it cover?

    This post is part of an ongoing series on project management and agile development practices.

  • シフトレフト

    シフトレフト

    【徹底解説】シフトレフトとは?品質もコストも変わる「早期テスト」の考え方
    はじめに
    システム開発のプロジェクトを回していると、必ずと言っていいほど直面するのが「テスト工程での想定外のバグ発覚」と、それに伴う手戻りです。要件定義や設計段階で見えていなかった問題が、結合テストや総合テストの段階になって一気に噴出し、スケジュールとコストを圧迫する——多くのPMが経験する悩みではないでしょうか。
    この課題に対する処方箋として近年注目されているのが「シフトレフト(Shift Left)」という考え方です。今回は、シフトレフトの基本概念から実践方法、導入のポイントまで整理してみたいと思います。
    シフトレフトとは何か
    シフトレフトとは、ソフトウェア開発の工程表を左から右へ時系列で表したときに、従来は開発の後半(右側)に配置されていたテストや品質チェック、セキュリティ対策といった活動を、できるだけ早い段階(左側)に前倒しして実施する考え方です。
    従来型のウォーターフォール開発では、以下のような流れが一般的でした。
    要件定義 → 設計 → 実装 → テスト(ここでまとめて品質確認) → リリース
    これに対してシフトレフトでは、要件定義や設計の段階からテストの観点を組み込み、実装と並行してテストを進めていきます。
    要件定義(テスト観点の組み込み)→ 設計(テストケース設計)→ 実装(単体テスト・静的解析)→ 結合テスト → リリース
    なぜシフトレフトが重要なのか

    1. 修正コストは工程が進むほど指数関数的に増加する
      バグを発見するタイミングが遅くなればなるほど、修正にかかるコストは跳ね上がります。要件定義段階で見つかれば数時間の修正で済む問題も、本番リリース後に発覚すれば、原因調査・影響範囲の特定・修正・再テスト・再リリースと、桁違いの工数がかかります。
    2. 手戻りによるスケジュール遅延の防止
      大規模プロジェクトほど、後工程での手戻りは単一機能の修正では終わりません。関連する複数の機能やテストケースへの影響調査が必要になり、プロジェクト全体のスケジュールに波及します。数千〜数万件規模のテストケースを抱える案件であれば、この影響は計り知れません。
    3. 品質に対するチーム全体の当事者意識向上
      テストが「最後に品証部門がやるもの」ではなく「全工程で全員が意識するもの」に変わることで、開発者自身が品質に対する責任を持つようになり、組織全体の品質文化が醸成されます。

    シフトレフトの具体的な実践方法

    実践項目内容
    要件定義段階でのテスト観点整理受入基準(Acceptance Criteria)を要件と同時に定義する
    TDD(テスト駆動開発)テストコードを先に書き、それを満たす実装を行う
    静的コード解析ツールの導入コーディング段階でバグの温床となるパターンを機械的に検出
    CI/CDパイプラインへのテスト組み込みコード変更のたびに自動テストを実行し、即座にフィードバック
    設計レビューへのQA参加品質保証担当者が設計段階からレビューに加わる
    ペアプログラミング/コードレビュー実装と同時に品質を担保する仕組みを作る

    セキュリティ領域でも同様の考え方が「DevSecOps」として広がっており、脆弱性診断を開発の後工程ではなく、設計・実装段階から組み込むアプローチが主流になりつつあります。
    導入時に気をつけたいこと
    シフトレフトは万能薬ではありません。導入にあたっては以下の点に注意が必要です。
    • 上流工程の負荷が増える:要件定義・設計段階でのテスト設計工数が増えるため、初期のスケジュールにはその分の余裕を見込む必要があります
    • チームのスキルセットの見直し:開発者にもテストの知識が求められるため、教育・トレーニングが必要になる場合があります
    • ツールチェーンの整備:CI/CDや静的解析ツールなど、自動化基盤への投資が前提になります
    • 外部委託先との連携設計:協力会社に開発を委託しているプロジェクトでは、進捗管理ツール上でテスト観点の共有ルールを早期に取り決めておくことが重要です
    まとめ
    シフトレフトは、単なるテスト手法の変更ではなく、「品質は最後に作り込むものではなく、全工程を通じて作り込むもの」という開発文化そのものの転換を意味します。

    本記事はプロジェクトマネジメント・アジャイル開発に関する知見をまとめたシリーズの一つです。

  • New Horizons

    New Horizons

    I’m thrilled to announce that I officially joined Double Standard Inc. (https://double-std.com/) as a Project Manager on July 1, 2026.

    With over 25 years of experience in financial IT systems — spanning banking, insurance, and credit — I’m excited to bring that expertise into a new chapter and take on fresh challenges in a rapidly evolving technology company.


    About Double Standard Inc.

    Double Standard Inc. is a Tokyo Stock Exchange-listed company that develops and delivers innovative services built on its proprietary data cleansing technology platform. Their mission: driving DX (Digital Transformation) for enterprises through the power of big data and AI.

    Their core service lineup includes:

    • 🔐 eKYC (D-Confia) — Online identity verification service, fully compliant with Japan’s Act on Prevention of Transfer of Criminal Proceeds (犯収法) and FATF recommendations
    • 🪪 Public Personal Authentication (JPKI) — My Number Card-based eKYC solution
    • 📄 AI OCR (D-Just) — High-accuracy AI-powered optical character recognition engine
    • 🧹 Data Cleansing (D-Cleanse) — Transforming raw data into high-value, actionable assets
    • 📍 Address Normalization Engine (D-Jad) — Automatic correction of address inconsistencies and input errors
    • 🌐 Web Scraping / Site Update Notifications (D-Check) — Real-time web monitoring solutions
    • 🔒 Bot & Unauthorized Access Prevention — Security hardening against malicious traffic
    • 🏠 Real Estate Tech — DX solutions tailored for the real estate industry

    The company serves clients across the financial, real estate, and insurance sectors, helping them achieve both regulatory compliance and operational efficiency through technology.


    What I’ll Be Working On

    In my role as Project Manager, I’ll be focusing on three key missions:

    • Expanding New Customer PM Engagements — Leveraging my deep financial industry knowledge to support new client acquisition in the eKYC and AML domains
    • Reducing Client Concentration Risk — Building a diverse and resilient client portfolio for sustainable growth
    • Elevating Project Delivery Quality — Applying PMP® certification, SAFe, and Agile methodologies to deliver projects with speed and precision

    I believe that combining 25 years of IT × Finance expertise with modern agile project management practices will help bring Double Standard’s services to a broader range of clients — and create real value for every stakeholder involved.


    Thank You for Your Continued Support

    July 1st marks a fresh start, and I couldn’t be more motivated for what lies ahead.

    To everyone who has supported and connected with me along the way — thank you from the bottom of my heart. I look forward to growing together. 🙏


    📌 Related Link: Double Standard Inc. — Official Website

  • 新天地

    新天地


    2026年7月1日より、株式会社ダブルスタンダードhttps://double-std.com/)にプロジェクトマネージャーとして入社いたしました。

    これまで25年以上にわたり、金融系(銀行・保険・クレジット)のITシステム開発・運用に携わってきました。その経験を活かし、新しいフィールドでさらなる挑戦をスタートします。


    株式会社ダブルスタンダードとは

    ダブルスタンダードは、「データクレンジング技術基盤を応用・転用したサービス企画・開発カンパニー」です。東証上場企業として、ビッグデータとAIを活用したDX推進を多角的に支援しています。

    主なサービスラインナップは以下のとおりです。

    • 🔐 eKYC(D-Confia) ── オンライン本人確認サービス。犯収法対応の本人確認記録作成機能も提供
    • 🪪 公的個人認証(JPKI) ── マイナンバーカードを活用したeKYC
    • 📄 AI OCR(D-Just) ── 高精度なAI搭載型OCRエンジン
    • 🧹 データクレンジング(D-Cleanse) ── あらゆるデータを高付加価値データへ昇華
    • 📍 住所正規化エンジン(D-Jad) ── 表記揺れ・誤変換を自動補正
    • 🌐 Webスクレイピング / サイト更新通知(D-Check)
    • 🔒 不正アクセス対策 ── ボット排除・セキュリティ強化
    • 🏠 不動産テック ── 不動産業界DX支援

    金融・不動産・保険業界を中心に、法令対応(犯収法・FATF勧告)と業務効率化の両立を技術で実現している会社です。


    私がこれから取り組むこと

    プロジェクトマネージャーとして、以下のミッションに注力していきます。

    • 新規顧客へのPMエンゲージメント拡大 ── 金融系の深い業界知識を活かし、eKYC・AML領域での新規顧客開拓を支援
    • 顧客集中リスクの低減 ── 多様なクライアントとの関係構築による安定的なポートフォリオ形成
    • プロジェクトデリバリーの品質向上 ── PMP®認定・SAFe/Agile手法を駆使したスピーディかつ確実なプロジェクト推進

    25年間で培ったIT×金融の知見と、アジャイル・プロジェクトマネジメントのスキルを組み合わせて、ダブルスタンダードのサービスをより多くのお客様へ届けられるよう貢献してまいります。


    今後ともよろしくお願いいたします

    転職・入社のご報告が遅くなりましたが、2026年7月1日より新たなスタートを切りました。

    ご支援・ご縁をいただいているみなさまへ、これからもどうぞよろしくお願いいたします。🙏


    📌 関連リンク:株式会社ダブルスタンダード 公式サイト


  • New Song Release “New Horizons”

    New Song Release “New Horizons”


    My new single “New Horizons” is now available on all major streaming platforms.

    The title carries a simple but powerful idea: every new beginning holds a horizon you’ve never seen before.
    A new job, a new city, a new chapter — whatever form it takes, stepping into the unknown is both exciting and a little frightening.
    This song is for anyone standing at that edge.


    🎵 About the Song

    “New Horizons” is an upbeat pop track about the courage it takes to move forward — even when the road ahead isn’t clear.

    The song follows a character who leaves behind the familiar, unfolds a brand-new map, and starts walking.
    He stumbles. He doubts. But he keeps going, turning every setback into fuel and every small win into a stepping stone.

    I wanted to write something that felt like a genuine companion for those moments — not a song that pretends the journey is easy, but one that says: you’re not alone, and it’s worth it.

    Spreading out a brand-new map / He’s moving forward now
    Turning every doubt he had / Into strength somehow
    Underneath the open sky / Believing in tomorrow’s light
    Step by step he’s building up / The future shining in his sight


    🎤 Behind the Music

    I wrote, composed, and produced this track entirely on my own — as I do with all my releases.

    “New Horizons” came together at a time when I was personally facing a major transition in my own life.
    Writing these lyrics helped me process that feeling — the mix of anticipation, fear, and quiet determination that comes with starting something new.

    The “he” in the lyrics isn’t any one person. He’s all of us — anyone who has ever taken a deep breath and stepped through a door they’d never opened before.

    By the final chorus, he’s not walking alone anymore. He’s laughing with newfound friends, standing at a brand-new starting line, beginning a story that’s entirely his own.

    Underneath the open sky / Laughing with his newfound friends
    From a brand-new starting line / A beautiful story begins


    🎧 Listen Now

    “New Horizons” is available on Spotify, Apple Music, YouTube Music, Amazon Music, LINE MUSIC, TikTok, and more.


    🎵 Stream “New Horizons”

    If you enjoy the song, adding it to your playlist or sharing it with someone who’s embarking on a new journey would mean the world to me.


    To everyone out there spreading out their own brand-new map right now —
    the wind is by your side.

    — Norio Ikeda (池田典生)

  • SAFe PI Planning Day 1 and Day 2: The Complete Guide

    SAFe PI Planning
Day 1 and Day 2: The Complete Guide
  • SAFe PI Planning Day1・Day2 完全ガイド

    SAFe PI Planning Day1・Day2 完全ガイド
  • Scrum Master Interview Q&A Complete Model Answers for All Categories

    Scrum Master Interview Q&A
Complete Model Answers for All Categories






    Scrum Master Interview Q&A — Complete Model Answers for All Categories [Official Definition Edition]


    Interview Guide

    Scrum Master Interview Q&A
    Complete Model Answers for All Categories

    67 questions across 4 categories — SAFe, Scrum, Scenario-Based, and Tools — with full model answers organized by WSJF priority. Every answer includes STAR structure, concrete steps, common pitfalls, and interview tips.

    📋 67 Questions
    🏷️ 4 Categories
    ⏱️ Reading time: ~30 min

    📌 Distinguishing “Official Scrum Guide Definitions” from “Field Practices” in Interviews

    • Definition of Ready (DoR) is NOT a formal element of the Scrum Guide 2020. It is a widely-used field practice. In interviews, describe it as “a team-level practice — not an official Scrum artifact — used to confirm a PBI is actionable before Sprint Planning.”
    • The Daily Scrum is owned by Developers, not the Scrum Master. The SM supports the event happening as intended, but does not need to facilitate it every time. The goal is a self-managing team that runs it independently.
    • The SM’s role is to support and enable — not to enforce or police. Phrases like “ensure compliance” or “hold the team accountable to DoD” misrepresent servant leadership.

    “According to the Scrum Guide, it works this way. In practice, some teams also use this approach…” — this kind of precision signals mastery to experienced interviewers.

    🚀
    1. SAFe Questions
    22 questions

    Question List

    1. What is PI Planning?
    2. What is your role before, during, and after PI Planning?
    3. What are ART Events?
    4. What is an Agile Release Train (ART)?
    5. What are SAFe’s Core Values?
    6. What are SAFe’s Principles?
    7. How do you prioritize the ART Backlog using WSJF?
    8. What is Business Value (BV)?
    9. What is Actual Value (AV)?
    10. How do you assign BV to PI Objectives?
    11. What is the role of the RTE?
    12. What are the inputs and outputs of PI Planning?
    13. How do you manage risks using ROAM?
    14. How do you manage dependencies?
    15. What is a Program Board?
    16. What is a System Demo?
    17. What is Inspect & Adapt?
    18. What is an IP Sprint?
    19. What are SAFe Flow Metrics?
    20. What is a Cumulative Flow Diagram (CFD)?
    21. What is Program Kanban?
    22. What is Jira Align?
    Q1What is PI Planning?

    PI Planning is SAFe’s most important event — a two-day gathering of all ART teams to plan the next 8–12 weeks (typically 5 sprints).

    Three core purposes: ① Align teams to business goals   ② Identify and resolve cross-team dependencies   ③ Commit to PI Objectives
    Agenda Content
    Day 1 AM Business Context (executives/PM) + Architecture Vision (System Architect)
    Day 1 PM Team Breakout #1 (teams draft plans) + Draft Plan Review (share risks and dependencies)
    Day 2 AM Team Breakout #2 (refine plans based on feedback)
    Day 2 PM ROAM risk classification + Final plan presentations + Confidence Vote
    PI Planning is not just a scheduling session — it is where the entire ART gets aligned for the first time. A Confidence Vote below 3 triggers replanning, not forced agreement.
    Q2What is your role before, during, and after PI Planning?

    Before PI Planning

    • Help groom the team backlog (PBI prioritization and refinement)
    • Coach team members on SAFe processes (especially first-timers)
    • Compile previous PI velocity, completion rate, and capacity data
    • Calculate team capacity (accounting for holidays, PTO, shared commitments)
    • Coordinate logistics (venue, tools, participant coordination)

    During PI Planning

    • Facilitate team breakout sessions (timekeeping and discussion)
    • Escalate blockers and dependencies to the RTE immediately
    • Help the team avoid over-commitment (protect realistic planning)
    • Run the Confidence Vote and collect concerns

    After PI Planning

    • Post PI Objectives where the team can see them (physical or digital)
    • Track cross-team dependencies continuously (review at every ART Sync)
    • Follow up on Owned and Mitigated ROAM risks every ART Sync
    • Check PI Objective progress each sprint and flag deviations early
    The SM does not create the plan — the SM creates the conditions for the team to produce the best plan they can.
    Q3What are ART Events?

    ART Events are the recurring synchronization points that keep all teams in the ART aligned and moving at the same cadence.

    Event Cadence Purpose
    PI Planning Per PI (~10 wks) Plan and align the next PI; all teams gather for 2 days to resolve dependencies
    System Demo Per Sprint ART-wide demo of the integrated increment to stakeholders
    Inspect & Adapt (I&A) Per PI Post-PI retrospective workshop: quantitative analysis + improvement actions
    ART Sync (SoS) Weekly SMs from all teams sync cross-team blockers, dependencies, and progress
    PO Sync Weekly POs and PM align backlog priorities and feature status
    Note: ART Sync cadence, format, and naming vary by organization. In interviews, describing it as “recurring ART-level events to synchronize progress, dependencies, and priorities across teams” is flexible and accurate. Know the contrast: Sprint Review (1 team) ⟷ System Demo (full ART); Retrospective (1 team) ⟷ Inspect & Adapt (full ART).
    Q4What is an Agile Release Train (ART)?

    An ART is a long-lived team of Agile teams — typically 5–12 teams (50–125 people) — aligned to a shared mission and moving on the same PI cadence. It is SAFe’s fundamental delivery unit.

    • The Train metaphor: it departs on schedule (PI cadence); miss it and wait for the next PI
    • Stable, cross-functional membership: product, engineering, and business united as one virtual org
    • Key roles: RTE, Product Manager, System Architect
    • Goal: deliver a valuable increment of the solution in every PI
    Numbers to remember: 5–12 teams · 50–125 people · typically 5 sprints per PI · PI duration 8–12 weeks
    Q5What are SAFe’s Core Values?

    SAFe’s four Core Values are the foundation for every method, event, and tool in the framework.

    ① Alignment

    All levels — portfolio, program, team — stay aligned to strategic goals. PI Planning is the primary alignment mechanism. Without alignment, teams move in different directions and value fails to reach customers.

    ② Built-in Quality

    Quality is built into the development process from the start, not added at the end. Realized through TDD, CI/CD, and Definition of Done. Poor quality ultimately slows delivery speed.

    ③ Transparency

    Progress, risks, issues, and failures are visible to all stakeholders at all times. Realized through Program Boards, flow metrics, and radiators. Hiding information destroys trust and delays problem detection.

    ④ Program Execution

    Focus on actually delivering value, not on plans or documents. Working software is the primary measure of progress — the Agile Manifesto spirit applied at organizational scale.

    Q6What are SAFe’s Principles?

    SAFe has 10 principles. Master these 5–6 most important ones first.

    # Principle Why It Matters
    1 Take an economic view The foundation of WSJF. Quantifying cost and value drives the highest-priority decisions in SAFe
    2 Apply systems thinking Optimize the whole system, not parts. The ART as a unit embodies this principle
    3 Assume variability; preserve options Early lock-in is the biggest risk in uncertain environments. Keep options open while learning
    6 Visualize and limit WIP, reduce batch sizes Lean flow thinking. Too much WIP slows the whole system. Frequent small deliveries accelerate learning
    7 Apply cadence; synchronize with planning PI Planning embodies this principle. Regular synchronization makes large-scale delivery predictable
    9 Decentralize decision-making Escalating every decision to leadership creates bottlenecks. Delegate tactical decisions to teams
    “Which principle do you find most important?” — answer Principle 1 (Economic View) and explain its connection to WSJF. This demonstrates conceptual depth.
    Q7How do you prioritize the ART Backlog using WSJF?

    WSJF is built on a simple idea: “Do the work that delivers the most value in the shortest time first.”

    Formula: WSJF = ( BV + TC + RR/OE ) ÷ JS
    BV = Business Value · TC = Time Criticality · RR/OE = Risk Reduction / Opportunity Enablement · JS = Job Size (effort)

    Practical Steps

    1. Score each feature in the Program Backlog on BV, TC, RR/OE, and JS using relative comparison (Fibonacci scale: 1, 2, 3, 5, 8, 13, 20)
    2. Use relative comparison — not absolute values (same thinking as Planning Poker)
    3. Rank features from highest to lowest WSJF score
    4. Reach team and Business Owner consensus; bring the ranked list into PI Planning
    5. Continuously re-evaluate during PI execution and next PI preparation — WSJF is never “set and forget”
    Small JS + high BV = highest priority. The core insight: prefer small high-value work over large lower-value work. Items with JS ≥ 13 or 20 should be considered for splitting.
    Q8What is Business Value (BV)?

    BV (Business Value) is the score (typically 1–10) that Business Owners assign to each PI Objective during PI Planning to reflect its strategic importance.

    ⚠️ Note: BV scoring scales and assignment methods vary by organization and SAFe version. In interviews, describing BV as “Business Owners’ evaluation of PI Objectives used to measure the alignment between planned and actual delivery” is more versatile than citing a specific formula.

    How It Is Used

    • Business Owners score each team’s PI Objectives during PI Planning
    • Teams set Planned BV; Business Owners evaluate Actual AV at PI end
    • Comparing Planned BV vs. Actual AV measures Program Predictability
    • 10 = strategically critical; 1 = low priority

    Scrum Master’s Role

    • Help the team understand business value well enough to write meaningful objectives
    • Facilitate the BV scoring discussion with Business Owners
    • When scores are low: explore why value is perceived as low and help revise the objective
    Q9What is Actual Value (AV)?

    AV (Actual Value) is the score Business Owners assign at PI end to reflect how much value was actually delivered against each PI Objective.

    Metric Timing Who Provides It
    Planned BV During PI Planning Team and Business Owners (agreed together)
    Actual AV At PI end Business Owners (evaluate actual delivery)
    ⚠️ The Program Predictability formula (AV ÷ Planned BV × 100) is a commonly cited example, but actual implementation varies by organization and SAFe version. In interviews, describe it as “a metric that measures alignment between planned and actual delivery value” and note that the specific formula depends on organizational practice.

    Consistently achieving 100% may indicate under-commitment. Analyze the gap to improve planning accuracy in the next PI.

    Q10How do you assign BV to PI Objectives?
    1. Team drafts PI Objectives with clear, specific, measurable statements of what will be achieved
    2. Business Owners score each objective (1–10): 10 = strategically critical, 1 = low priority
    3. Team and Business Owners discuss — low scores signal a mismatch; revise the objective
    4. Uncommitted Objectives are tracked separately (BV assigned but not counted in PI success criteria)
    5. At PI end, evaluate AV and analyze the Planned BV vs. AV gap in I&A
    The SM’s role is to facilitate this BV conversation — ensuring the team and Business Owners discuss “why this objective matters” in a shared language.
    Q11What is the role of the RTE?

    The RTE (Release Train Engineer) is the Scrum Master for the entire ART — a servant leader and coach for the whole train.

    Primary Responsibilities

    • Facilitate all ART-level events: PI Planning, System Demo, I&A
    • Remove ART-level impediments and escalate organizational blockers
    • Coordinate cross-team dependencies
    • Coach Scrum Masters across the ART
    • Collect and visualize metrics (flow, quality, predictability)
    • Manage stakeholder communication
    Scrum Master RTE
    Scope One team The entire ART (multiple teams)
    Primary events Sprint ceremonies ART-level events (PI Planning etc.)
    Impediments Within the team Cross-team and organizational
    Metrics Team velocity etc. Flow, quality, predictability
    “The RTE is the SM for the ART.” If the SM supports one team, the RTE supports the ART of 5–12 teams.
    Q12What are the inputs and outputs of PI Planning?
    Inputs Outputs
    Product roadmap and vision PI Objectives (per team and ART-level)
    Architecture Vision (from System Architect) Program Board (feature and dependency map)
    Prioritized Program Backlog (feature list) Sprint plans (all 5 sprints for each team)
    Previous PI I&A outputs (improvement actions) ROAM Risk Log (Resolved/Owned/Accepted/Mitigated)
    Team capacity (working days and velocity) Confidence Vote results and action items
    Business context (market trends, strategy) List of Uncommitted Objectives
    “Describe the inputs and outputs of PI Planning” is a frequent question. For outputs, always mention PI Objectives, Program Board, and ROAM Risk Log as the three key artifacts.
    Q13How do you manage risks using ROAM?

    ROAM is a framework for classifying and managing risks identified during PI Planning.

    Category Meaning Action
    Resolved The risk has been resolved through discussion — no further action needed Record and close
    Owned A specific person or team takes ownership and manages the risk Assign named owner with due date; track at every ART Sync
    Accepted The risk cannot be controlled or mitigation cost exceeds benefit; team accepts it Explicitly communicate to stakeholders; plan only to minimize impact
    Mitigated Specific actions taken to reduce probability or impact of the risk Execute mitigation actions; track progress sprint by sprint

    SM Facilitation Steps

    1. Have everyone write risks on sticky notes (physical or digital — brainstorm format)
    2. Read each risk aloud; classify into R/O/A/M as a group (vote or discuss to consensus)
    3. For Owned and Mitigated risks, always assign a named owner AND a due date
    4. For Accepted risks, get explicit stakeholder acknowledgment — prevents “I didn’t know” later
    5. Record all risks on the ROAM board and update status at every ART Sync
    Q14How do you manage dependencies?
    1. During PI Planning, visualize dependencies on the Program Board using directional arrows
    2. For each dependency, clarify the providing team and the receiving team
    3. Review dependency status at every ART Sync — red arrows = unresolved risk
    4. Drive red arrows (unresolved dependencies) toward zero as the primary SM goal
    5. Escalate unresolvable dependencies to the RTE for organizational intervention
    6. Use I&A to improve how dependencies are identified during future PI Planning events
    Dependencies are best handled with “early detection, early resolution.” The SM’s job is to make ART Sync a weekly habit so no dependency goes untracked.
    Q15What is a Program Board?

    The Program Board is a visual map created during PI Planning that shows all teams’ committed features, cross-team dependencies, and milestones for the PI.

    Element Description
    Rows Teams in the ART
    Columns Sprints (1–5)
    Feature cards Each team’s committed features placed in their target sprint column
    Dependency arrows Arrows between teams (red = unresolved risk)
    Milestones Fixed release dates, external dependencies, and key deadlines
    For virtual PI Planning, Miro and Jira Align serve as the digital Program Board. The goal is the same in both formats: every team can see the same board and discuss dependencies together.
    Q16What is a System Demo?

    The System Demo is an ART-wide demonstration of the fully integrated increment to stakeholders — distinct from individual Sprint Reviews because it shows the system working as a whole.

    Sprint Review System Demo
    Scope One team’s work Full ART’s integrated increment
    Audience Team + PO + selected stakeholders Full ART + Business Owners + senior stakeholders
    Cadence Per sprint Per sprint (after each sprint in the PI)
    • Catches integration failures and expectation mismatches before they compound
    • Gives stakeholders a regular, predictable feedback opportunity
    • Validates that value is being delivered at the system level, not just team level
    As an SM, actively support the team in completing integration testing by sprint end so the System Demo is ready. A failed demo environment is a preventable embarrassment.
    Q17What is Inspect & Adapt?

    Inspect & Adapt (I&A) is the ART-wide retrospective and improvement event held at the end of each PI — far broader than a team-level retrospective.

    Three-Part Structure

    1. PI System Demo: Full ART demo of all sprints’ integrated work to Business Owners and stakeholders
    2. Quantitative Problem Analysis: Review flow metrics, predictability, and quality data; perform root-cause analysis (5 Whys, fishbone)
    3. Problem-Solving Workshop: Design improvement actions for specific root causes; these become inputs to the next PI Planning
    Retrospective Inspect & Adapt
    Scope One team’s process ART process, system, and organizational level
    Timing End of sprint End of PI
    Improvement reach Team habits and practices Organizational structures and processes
    I&A improvement actions must go into the PI Backlog and be tracked. “Run I&A and move on” wastes the event. Always confirm at the next PI Planning whether actions were completed.
    Q18What is an IP Sprint?

    The IP (Innovation & Planning) Sprint is the final sprint of each PI (typically Sprint 5), reserved for four specific purposes — not for normal feature delivery.

    Purpose Description
    Innovation Hackathons, technology experiments, technical debt reduction, improvement activities
    Planning Preparation for next PI Planning: backlog refinement, pre-work, research
    Integration Final integration testing and hardening across all teams
    Inspect & Adapt Conducting the I&A workshop
    • It is NOT a buffer sprint for catching up on late work
    • Packing feature development into the IP Sprint destroys all four of its intended values
    • Explain the IP Sprint’s four purposes to prevent the team from treating it as “free time”
    • Facilitate the planning of innovation activities (hackathons, experiments)
    • Drive backlog refinement for the next PI Planning
    Q19What are SAFe Flow Metrics?

    SAFe uses six Flow Metrics to measure and improve the flow of value through the ART.

    Metric Definition How to Use / Improve
    Flow Velocity Number of work items completed per time period Track team throughput trends; plan PI capacity accordingly. Reduce WIP, control interruptions
    Flow Time Elapsed time from work start to completion (lead time) Measure speed of value delivery. Reduce batch sizes; eliminate dependency wait
    Flow Load Volume of work currently in progress (WIP) High WIP = everyone busy but nothing finishes. Apply WIP limits; use Little’s Law
    Flow Efficiency Ratio of active work time to total lead time Visualizes wait time. Shorten approval cycles; clear dependency blockers
    Flow Distribution Balance of features, risks, debt, and defects in the backlog Verify work balance isn’t skewed. Set target ratios per PI in planning
    Flow Predictability Ratio of Actual AV to Planned BV (Program Predictability) ART reliability indicator. Detect PI Objective deviations every sprint
    “Name all six Flow Metrics” is a common interview question. Flow Velocity · Time · Load · Efficiency · Distribution · Predictability — learn them as a set.
    Q20What is a Cumulative Flow Diagram (CFD)?

    A CFD is a stacked area chart showing the volume of work in each state (backlog / in progress / done) over time.

    • Visualize WIP in real time: widening bands = WIP is growing (bottleneck signal)
    • Read throughput and lead time: the slope and horizontal span of bands reveal both
    • Detect scope creep: a rising top line means scope was added
    • Verify improvement effects: narrowing bands after a WIP-reduction action confirm it worked
    CFDs are auto-generated in Jira, Jira Align, and Azure DevOps. Review them each sprint and bring abnormal patterns (flat slope, widening bands) to the team’s attention in the Daily Scrum or Retrospective.
    Q21What is Program Kanban?

    Program Kanban is an ART-level Kanban board that visualizes feature flow and enforces WIP limits to improve flow efficiency. Features are managed here before entering team backlogs.

    Stage Description
    Funnel All ideas and requests enter here; WSJF prioritization begins
    Analyzing Detailed analysis, acceptance criteria definition, and estimation
    Backlog Features ready to bring into PI Planning
    Implementing Features actively being built in the current PI
    Validating Features under integration testing and stakeholder validation
    Done Features where value has been delivered to the customer
    WIP limits at each stage make bottlenecks visible and actionable. When a stage exceeds its limit, the team stops pulling new work and resolves the blockage first.
    Q22What is Jira Align?

    Jira Align is Atlassian’s enterprise Agile planning platform designed to support large-scale frameworks like SAFe.

    • Unified visibility across Portfolio → Program → Team layers
    • Digital PI Planning support: virtual PI Planning rooms, Program Board, and ROAM boards
    • Digital Program Board: manage features, dependencies, and milestones in real time
    • ROAM risk management: classify risks, assign owners, set deadlines, track resolution
    • Flow metrics dashboard: real-time view of predictability, BV vs. AV, and velocity
    • Jira integration: team-level Jira data flows up automatically into program-level planning
    Jira (team level) + Jira Align (program and portfolio level) together give you digital coverage of the full SAFe hierarchy. For virtual PI Planning, the most common setup is Miro + Jira Align.

    🔄
    2. Scrum Questions
    23 questions

    Question List

    1. What is Scrum?
    2. Explain the Agile Manifesto and its principles.
    3. What are the Scrum Values?
    4. What are the three pillars of Scrum?
    5. What is the role of the Scrum Master?
    6. How do you remove impediments?
    7. What is Servant Leadership?
    8. How do you facilitate Sprint Planning?
    9. How do you facilitate the Daily Scrum?
    10. How do you facilitate Sprint Review?
    11. How do you facilitate Retrospectives?
    12. What is the Definition of Ready (DoR)?
    13. What is the Definition of Done (DoD)?
    14. What is Velocity?
    15. How do you estimate stories?
    16. What is Planning Poker?
    17. What is Story Splitting?
    18. What is a Burn-down Chart?
    19. What is a Burn-up Chart?
    20. What is Lead Time?
    21. What is Cycle Time?
    22. What is Throughput?
    23. What is team velocity used for?
    Q1What is Scrum?

    Scrum is a lightweight framework for developing and sustaining complex products iteratively and incrementally (Scrum Guide 2020).

    Element Content
    Three Pillars (Empiricism) Transparency · Inspection · Adaptation
    Five Values Commitment · Focus · Openness · Respect · Courage
    Three Roles Product Owner (PO) · Scrum Master (SM) · Developers
    Three Artifacts Product Backlog · Sprint Backlog · Increment
    Five Events Sprint · Sprint Planning · Daily Scrum · Sprint Review · Retrospective
    “What is Scrum?” — go beyond the definition. Explain why it exists (adaptability for complex problems) and how it works (repeating cycles of inspection and adaptation). That demonstrates genuine understanding.
    Q2Explain the Agile Manifesto and its principles.

    Agile Manifesto — 4 Values (2001)

    Left over rightIndividuals and interactions over processes and tools
    Left over rightWorking software over comprehensive documentation
    Left over rightCustomer collaboration over contract negotiation
    Left over rightResponding to change over following a plan

    ⚠️ The right side still has value — the left side is simply valued more.

    Key Principles (from the 12)

    • Deliver working software early and continuously
    • Welcome changing requirements, even late in development
    • Business people and developers collaborate daily
    • Build projects around motivated individuals; give them the environment and trust they need
    • Working software is the primary measure of progress
    • Maintain a sustainable pace of development
    • Simplicity — the art of maximizing the amount of work NOT done — is essential
    • Self-organizing teams produce the best architectures, requirements, and designs
    • Teams regularly reflect on how to become more effective, then tune and adjust
    Q3What are the Scrum Values?
    Value Meaning In Practice
    Commitment Fully commit to achieving the Sprint Goal Not “we’ll try” but “we will deliver” — commit to the goal, not blindly to every task
    Focus Concentrate on Sprint Goal work during the Sprint Minimize unplanned interruptions; align Daily Scrum conversation to the goal
    Openness Share work, progress, and concerns transparently Honest Daily Scrums; visible boards; no hiding bad news
    Respect Every person is a capable professional deserving respect Turn failures into learning moments, not blame
    Courage Do the right thing; tackle tough problems This includes the courage to say “that’s not feasible” or to surface technical debt
    SM role: observe whether these values are lived by the team and coach where they are absent. Courage and Openness in particular depend on psychological safety — which the SM is responsible for cultivating.
    Q4What are the three pillars of Scrum?

    Scrum is grounded in empirical process control theory (empiricism), supported by three inseparable pillars.

    ① Transparency

    The process and work must be visible to all accountable parties. Examples: public Product Backlog, clear Definition of Done, open sprint board.

    ② Inspection

    Scrum artifacts and progress toward goals must be inspected frequently. Examples: Sprint Review, Daily Scrum, Retrospective, backlog refinement.

    ③ Adaptation

    If any aspect deviates beyond acceptable limits, adjust as soon as possible. Examples: backlog refinement, mid-sprint plan adjustment, Retrospective action items.

    Critical: without Transparency, Inspection is inaccurate. Without accurate Inspection, Adaptation is misdirected. These three cannot be separated.
    Q5What is the role of the Scrum Master?

    The Scrum Master is a servant leader with accountability in three directions.

    To Whom Key Responsibilities
    The Scrum Team Coach Scrum theory and practice · remove impediments · promote self-management · support all events so they serve their intended purpose effectively
    The Product Owner Help with effective Product Goal and backlog management · support empirical product planning · provide techniques for clear backlog items
    The Organization Drive Agile adoption · plan and advise Scrum implementations · facilitate stakeholder collaboration · help increase organizational agility
    • Does NOT direct or assign tasks to team members
    • Does NOT decide the Sprint Goal (that belongs to the team and PO)
    • Does NOT solve problems for the team — enables the team to solve their own problems
    • Does NOT manage people — manages the process and environment
    Q6How do you remove impediments?
    1. Surface them: ask “What is blocking you today?” at every Daily Scrum; maintain a visible Impediment Backlog
    2. Classify: can the team resolve this themselves, or does it need external support?
    3. Act: technical blockers → IT/Architect; interpersonal issues → coaching / 1-on-1; external dependencies → RTE escalation
    4. Verify and prevent recurrence: confirm the impediment is truly resolved; explore root causes in the Retrospective
    The SM is the person who ensures impediments get solved — not the person who solves them. Building the team’s own problem-solving capacity is the ultimate goal.
    Q7What is Servant Leadership?

    Servant Leadership is a style where the leader serves the team in order to maximize the team’s capability — not the other way around. Coined by Robert Greenleaf; foundational to Scrum.

    Traditional (Command & Control) Servant Leader
    Decisions Top-down directives Delegated to the team; SM creates the environment
    Problems Leader solves them SM enables the team to solve them
    Success metric Leader’s authority and visibility Team’s growth and outcomes

    How an SM Practices Servant Leadership

    • “What do you think the solution is?” — ask, don’t prescribe
    • Advocate within the organization to remove team-level obstacles
    • Encourage the team to make decisions without needing SM approval
    • Measure yourself by the team’s success, not your own visibility
    In interviews, pair the definition with a concrete example of how you practiced it: “I noticed the team was waiting 3 days for code reviews, so I worked with the VP of Engineering to establish a 24-hour SLA.”
    Q8How do you facilitate Sprint Planning?

    Purpose: plan what to deliver and how in the coming Sprint. Time-box: 1 hour per week of Sprint length (max 4 hours for a 2-week Sprint).

    Two-Part Structure

    Part 1 — WhatCollaborate with the PO to select the Sprint Goal and backlog items. Every team member must understand the “why” before committing
    Part 2 — HowHelp the team decompose items into tasks and build a credible plan. Who does what is the team’s decision, not the SM’s
    • Establish the Sprint Goal before selecting backlog items — the goal is the anchor
    • Confirm backlog readiness (DoR) before Sprint Planning begins
    • Show actual capacity numbers to prevent over-commitment
    • Confirm everyone understands and is committed before closing
    • Unprepared PO: enforce backlog refinement as a non-negotiable pre-condition
    • Over-commitment: show historical velocity data; help the team say “not this sprint”
    Q9How do you facilitate the Daily Scrum?

    Purpose: sync team progress toward the Sprint Goal in 15 minutes. Not a status report — a team-driven planning adjustment.

    ⚠️ Official Definition (Scrum Guide 2020): The Daily Scrum is an event for the Developers. The Scrum Master supports the event as needed but does not need to facilitate it every time. The ultimate goal is a self-managing team that runs it independently — without needing the SM to lead it.
    Three prompts (one approach): ① What did I do yesterday toward the Sprint Goal? ② What will I do today? ③ Do I have any impediments?
    • Developers own the Daily Scrum; SM supports as needed
    • Hard 15-minute timebox; detailed discussions move to an “after-standup” sidebar
    • Monitor whether the team is talking to the Sprint Goal, not just to each other
    • Do not let it become a management status report
    • The SM does not need to summarize all responses — let the team own the conversation
    “The best Daily Scrum is the one that doesn’t need the SM.” Build toward the team running it independently — that’s the signal of a self-managing team.
    Q10How do you facilitate Sprint Review?

    Purpose: demonstrate the Increment to stakeholders and gather feedback. The SM supports the event so it serves its intended purpose effectively — not as the sole facilitator. Time-box: 1 hour per week of Sprint length.

    • Help prepare the demo environment — confirm technically in advance
    • Draw stakeholders into active discussion, not passive observation
    • Verify only items meeting the DoD are included in the demo
    • Support the PO in capturing feedback directly into the backlog
    • Celebrate the team’s work — build a culture of recognition
    Problem Solution
    Stakeholders don’t attend Improve invitation, timing, and agenda; communicate the value of attending
    Demo fails technically Pre-demo rehearsal is mandatory; separate demo env from production
    Feedback is shallow Ask directly: “What is missing?” “What would you change?” “Did this meet your expectation?”
    Q11How do you facilitate Retrospectives?

    Purpose: support the team in inspecting and improving their process, relationships, and tools. Time-box: 1.5 hours per week of Sprint length.

    Format Focus Best Used When
    Start / Stop / Continue What to start, stop, and keep doing Simple; great for teams new to retros
    KPT Keep / Problem / Try Popular for structured improvement discussion
    4Ls Liked / Learned / Lacked / Longed for When you want to emphasize learning
    Mad / Sad / Glad Emotion-based reflection When you need to surface feelings safely
    • Create psychological safety: “this is a learning space, not a blame space”
    • Produce specific, actionable items with a named owner and due date
    • Begin every retro by reviewing last retro’s action items — was anything done?
    • Rotate formats — same format every sprint breeds disengagement
    The retro has failed if people leave not knowing what will change. Action items belong in the Sprint Backlog or team board — tracked, not forgotten.
    Q12What is the Definition of Ready (DoR)?
    ⚠️ Important note on the official definition: The Definition of Ready (DoR) is NOT a formal element of the Scrum Guide 2020. It is a widely-used field practice. In interviews, be explicit: “DoR is not an official Scrum artifact — it’s a team-level practice used to confirm a PBI is actionable before Sprint Planning.” This distinction signals mastery of the Scrum Guide.

    The DoR is a checklist that defines when a backlog item is considered ready to be pulled into Sprint Planning — used as a field practice rather than an official Scrum construct.

    • Acceptance criteria are clearly defined
    • The story is small enough for the team to estimate with confidence
    • Dependencies are resolved or at least identified with a plan
    • Business value is understood
    • Any needed UI mocks, API specs, or data requirements are available
    DoR vs. DoD: DoR = “ready to start (field practice)” / DoD = “ready to call done (official Scrum Guide element)”
    In interviews, always clarify this distinction — it demonstrates genuine Scrum Guide literacy.
    Q13What is the Definition of Done (DoD)?

    The DoD is a shared checklist of conditions every Increment must meet before it can be called “Done” — agreed by the team and all relevant stakeholders.

    • Code is reviewed and merged to the main branch
    • All automated tests (unit, integration) pass
    • Documentation is updated
    • Deployed and verified in a staging environment
    • All acceptance criteria are satisfied
    • Security scan completed (where applicable)
    ⚠️ SM role — correct framing: The SM does not “enforce” or “police” the DoD. The SM’s role is to support and enable the team to understand and apply the DoD consistently — coaching rather than mandating. As a servant leader, the SM creates the conditions for quality, not the compliance authority.
    Relaxing the DoD creates technical debt that will cost more later. Help the team internalize the DoD as a professional standard — not an external rule imposed by the SM.
    Q14What is Velocity?

    Velocity is the average number of story points a team completes per Sprint. It is a team-internal capacity indicator.

    • Sprint Planning: sets the realistic amount of work to pull into the Sprint
    • Release Planning: remaining backlog ÷ average velocity = estimated Sprints remaining
    • Improvement measurement: track velocity trend after Retrospective action items
    • Never make “increasing velocity” a team goal — it incentivizes quality shortcuts and burnout
    • Never compare velocity across teams — estimation baselines are different and the comparison is meaningless
    • Management should not set velocity targets — teams own their own capacity measurement
    Velocity is an internal team signal, not an external performance metric. For executive reporting, use “features delivered” or “business value realized” — not story points.
    Q15How do you estimate stories?

    Stories are estimated using relative estimation — expressed in story points representing relative size, complexity, and effort, not absolute hours.

    • Fibonacci sequence (1, 2, 3, 5, 8, 13, 21) is most common
    • T-shirt sizes (XS / S / M / L / XL) are also used by some teams
    • Establish a reference story first (“a 3-point story looks like this…”) before estimating others
    • Estimating as a full team shares knowledge and surfaces hidden complexity
    When a story scores 13 or 21, that is the signal to ask “can we split this?” High estimates = high uncertainty = risk to the Sprint Goal. Splitting is almost always the better choice.
    Q16What is Planning Poker?

    Planning Poker is a consensus-based estimation technique where all team members reveal their estimates simultaneously to eliminate anchoring bias.

    1. PO presents and explains the story
    2. Each team member privately selects an estimate card
    3. All cards are revealed simultaneously — this is the critical rule
    4. The highest and lowest estimators explain their reasoning
    5. Discuss; repeat until consensus is reached
    “Simultaneous reveal” is the key mechanism. If anyone speaks first, anchoring bias corrupts the remaining estimates. Online tools (Miro, Planning Poker Online, Jira plugins) make this easy for distributed teams.
    Q17What is Story Splitting?

    Story Splitting is the practice of breaking a user story that is too large for a single Sprint into smaller, independently valuable pieces.

    Splitting Pattern Description Example
    By workflow step Split along user interaction steps “Search” + “Add to cart” + “Checkout”
    By data type Split by input type or data category “Credit card payment” + “Bank transfer”
    By business rule Split by conditional logic paths “With member discount” + “Without discount”
    Happy path first Deliver success scenario; add error handling later “Successful login” + “Error handling”
    Every split story must still deliver standalone user value. Splitting into pure technical tasks (“implement the API”) makes value invisible and defeats the purpose of the story format.
    Q18What is a Burn-down Chart?

    A Burn-down Chart is a line graph showing remaining work (story points) in a Sprint over time.

    • Compare the ideal line (straight diagonal) to the actual remaining-work line to assess Sprint Goal achievability
    • Steady downward slope = on track; flat or rising line = a blocker or scope change has occurred
    • Review the chart before every Daily Scrum and address abnormal patterns immediately
    The burn-down chart answers one question: “Are we on pace to hit the Sprint Goal?” Its purpose is early warning — not post-mortem evidence. Use it as a conversation starter, not a report card.
    Q19What is a Burn-up Chart?

    A Burn-up Chart is a two-line chart: one line showing completed work accumulating, and another showing total scope.

    Burn-down Chart Burn-up Chart
    View Remaining work decreasing Completed work accumulating
    Scope change visibility Not visible Immediately visible when scope line rises
    Best for Sprint-level progress tracking Multi-Sprint release planning
    When scope creep is a recurring problem, the Burn-up Chart is more honest. “We completed 40 points, but scope grew by 15” is a conversation a Burn-up enables that a Burn-down hides.
    Q20What is Lead Time?

    Lead Time is the elapsed time from when a customer request enters the backlog to when value is delivered to the customer (deployed / done).

    Reducing Lead Time = increasing speed of value delivery to customers
    • WIP limits: reduce in-progress volume to increase completion rate
    • Batch size reduction: split large features into small pieces that can be delivered sooner
    • Dependency elimination: remove wait time caused by cross-team or external blockers
    • Approval flow streamlining: reduce review and sign-off wait time
    Lead Time = Cycle Time + Wait Time. Analyzing this split tells you where the inefficiency lives. Use a CFD alongside lead time data to find the bottleneck stage.
    Q21What is Cycle Time?

    Cycle Time is the elapsed time from when active work begins on an item to when it is complete.

    Lead Time vs. Cycle Time

    Lead TimeBacklog entry → Done (includes all wait time — the full customer experience)
    Cycle TimeActive work start → Done (active work only)
    Wait TimeLead Time − Cycle Time = Wait Time (the inefficiency to eliminate)
    “The system is always busy but value never arrives” usually means wait time dominates. Large Lead Time with small Cycle Time = a process design problem, not a team productivity problem.
    Q22What is Throughput?

    Throughput is the number of work items completed per unit of time (e.g., per Sprint). It counts items — not story points.

    • Provides an objective view of delivery capacity independent of estimation accuracy
    • Feeds probabilistic forecasting models (Monte Carlo simulation)
    • Core metric in “no-estimates” approaches where story points are intentionally avoided
    Throughput vs. Velocity: Velocity = story points per Sprint (depends on estimation). Throughput = items per Sprint (estimation-free). Throughput is gaining adoption as it’s harder to game and easier to explain to business stakeholders.
    Q23What is team velocity used for?
    • Sprint Planning: sets the realistic amount of work to commit to
    • Release Planning: remaining backlog ÷ average velocity = Sprint count forecast
    • Improvement measurement: track velocity trend after Retrospective action items
    • Capacity management: adjust for team composition changes, holidays, and leave
    • Do not make “increasing velocity” a team goal — incentivizes quality shortcuts
    • Do not compare velocity across teams — estimation scales are not equivalent
    • Velocity is a planning tool, not a performance appraisal metric
    If a stakeholder asks “why is velocity low?” the answer starts with “let me show you the trend and explain what changed” — not an apology. Velocity is data, not a grade.

    🎭
    3. Scenario-Based Questions
    15 questions

    Question List

    1. The team repeatedly misses Sprint Goals. What would you do?
    2. A stakeholder adds scope during the Sprint. How do you handle it?
    3. Velocity drops significantly. What would you do?
    4. Conflict between the Product Owner and Developers. How do you resolve it?
    5. The team resists Agile adoption. How do you coach them?
    6. The team is not participating in ceremonies. What actions would you take?
    7. Multiple team dependencies are impacting delivery. How do you handle them?
    8. A senior stakeholder challenges Agile practices. What would you do?
    9. A production defect impacts the Sprint Goal. How do you respond?
    10. Team burnout is increasing. What would you do?
    11. Distributed team communication issues. How do you solve them?
    12. A team member is underperforming. How would you coach them?
    13. The team continuously over-commits. What would you do?
    14. Sprint Retrospectives are ineffective. How do you improve them?
    15. The Product Owner is unavailable to the team. What would you do?
    Q1The team repeatedly misses Sprint Goals. What would you do?

    STAR Structure

    SituationSprint Goals missed across multiple consecutive Sprints
    TaskIdentify root causes and build a sustainable improvement plan
    Action① Collect data → ② Root-cause by category → ③ Address in Retrospective
    ResultWith identified causes addressed, velocity typically stabilizes within 2–3 Sprints
    Root Cause How to Confirm Remedy
    Inaccurate estimation Review velocity trend and incomplete story patterns Improve Planning Poker quality; add spikes for high-uncertainty items
    Too many interruptions Review Sprint Backlog change log Create a buffer; establish an interruption protocol with clear escalation rules
    Unrealistic Sprint Goal Review Goal content and commitment discussion Work with PO to right-size; plan from historical velocity, not aspirational targets
    Accumulating technical debt Review tech debt list Reserve refactoring capacity every Sprint; add code quality criteria to the DoD
    Do not treat missed goals as a team discipline problem. The SM’s job is to investigate the data, identify the root cause objectively, and work with the team on improvement — not assign blame.
    Q2A stakeholder adds scope during the Sprint. How do you handle it?
    1. Do not accept the change directly: redirect the stakeholder to the PO with a clear explanation
    2. Explain the Scrum rule: “The Sprint Backlog belongs to the team; mid-Sprint scope changes threaten the Sprint Goal and our commitment”
    3. Route through the PO: add the request to the Product Backlog as a candidate for the next Sprint
    4. For genuine emergencies only: consider Sprint cancellation or a scope trade-off (remove existing work of equal size)

    Sample stakeholder communication

    “We’ll add your request to the Product Backlog and discuss prioritization with the PO for the next Sprint. Changing scope mid-Sprint disrupts the team’s focus and risks breaking our current commitment.”

    Prevention: run regular Sprint Reviews that stakeholders actually attend — early feedback eliminates most mid-Sprint scope pressure. Invite stakeholders to backlog refinement as well.
    Q3Velocity drops significantly. What would you do?

    First: gather facts before reacting. Is this a single blip or a multi-Sprint trend? Has team composition changed? Has work complexity shifted?

    Root Cause How to Confirm Remedy
    Member absence or attrition Check capacity log Right-size Sprint scope to actual capacity
    Rising technical debt or bugs Review Sprint work log Dedicate improvement capacity; schedule a debt-reduction Sprint
    External dependency delays Inspect dependency board Proactively clear blockers; escalate through the RTE
    Falling team morale 1-on-1s, team health radar Discuss openly in Retrospective; listen before prescribing
    Velocity is a team capacity signal — not a management target. Applying pressure to restore velocity drives quality shortcuts and burnout. Start with “why” before acting on “what.”
    Q4Conflict between the Product Owner and Developers. How do you resolve it?

    Common conflict patterns: “Why does this take so long?” vs. “Please understand our technical constraints.” Or: “I want to change the requirements” vs. “Stop changing things mid-Sprint.”

    1. Separate 1-on-1s: hear each side’s perspective, concerns, and expectations privately — separate fact from emotion
    2. Create a joint dialogue: facilitate a safe, neutral conversation between both parties — SM stays strictly in facilitator mode
    3. Anchor on shared goals: “Both of you want to deliver a great product” — use the Sprint Goal and Product Goal as neutral common ground
    4. Build explicit agreement: make technical constraints visible in business language; clarify that prioritization authority rests with the PO while impact must be transparent
    The SM is a mediator, not a judge. Taking either side destroys trust. Let both parties find their own agreement while you hold the space for the conversation.
    Q5The team resists Agile adoption. How do you coach them?

    First, understand the resistance: belief that “the current way is fine,” fear of change, past failed Agile rollouts, distrust of “Agile in name only.”

    • Ask, don’t mandate: “What pain points do you feel with our current process?” is far more effective than announcing “we’re doing Scrum now”
    • Start with one experiment: try just the Daily Scrum for two weeks — “If it doesn’t help, we revert.” Lower the perceived risk
    • Create visible wins: measure and share a concrete improvement so the team feels the benefit firsthand
    • Build psychological safety: “failure is data, not blame” — model it yourself by sharing something you tried that didn’t work
    Resistance to change is natural. Positioning yourself as someone who “explores the value of change together” rather than “enforces the process” leads to durable adoption.
    Q6The team is not participating in ceremonies. What actions would you take?
    1. Listen first: have individual conversations to understand why — do not assume or enforce attendance before hearing the reason
    2. Re-explain purpose and value of each ceremony — absence often signals the event feels pointless or repetitive
    3. Improve the ceremonies themselves: shorten, restructure, or change the format to make them worth attending
    4. Co-create a Working Agreement that includes ceremony participation as a shared team commitment
    If ceremonies feel like a waste of time, first question the facilitation quality before questioning team engagement. The SM’s job is to make each event genuinely valuable — not to mandate attendance.
    Q7Multiple team dependencies are impacting delivery. How do you handle them?
    1. Visualize all dependencies on the Program Board or a shared dependency tracker
    2. Directly connect the blocked team and the providing team — facilitate a conversation, not a ticket chain
    3. If unresolvable at team level, escalate to the RTE for ART-level intervention
    4. Use I&A to redesign how dependencies are identified earlier in future PI Planning events
    5. Use ART Sync weekly to keep all dependency statuses current
    Dependency problems are system design issues, not individual failures. Approach them without blame and focus on the structural fix.
    Q8A senior stakeholder challenges Agile practices. What would you do?
    1. Listen carefully to the specific concern — “Agile = uncontrollable” is a common misunderstanding worth addressing directly
    2. Reframe Agile’s value in business language: transparency, predictability, early risk detection, measurable progress at every Sprint
    3. Invite the stakeholder to a Sprint Review or System Demo — experiencing working software shifts perspective more than any argument
    4. Present quantitative outcome data: velocity trend, lead time reduction, defect rate, customer satisfaction
    5. Partner with the RTE or Agile Coach to address organizational-level resistance systematically
    A useful reframe: “The opposite of Agile is not Waterfall — it’s unpredictability. Agile is actually more controlled, because problems surface earlier and are fixed sooner.”
    Q9A production defect impacts the Sprint Goal. How do you respond?
    1. Prioritize defect response first; then honestly assess whether the Sprint Goal is still achievable
    2. Immediately inform the PO and facilitate a Sprint Backlog triage — what stays, what moves to the next Sprint?
    3. Bridge the defect response team and the development team — prevent information silos and duplicated effort
    4. Conduct a blameless root-cause analysis (5 Whys) in the Retrospective and design structural prevention measures
    Protecting business value matters more than protecting the Sprint Goal. Be transparent and adjust — hiding the impact is far more damaging than acknowledging it.
    Q10Team burnout is increasing. What would you do?
    1. Start by listening — 1-on-1s and anonymous surveys before any action. Diagnose before prescribing
    2. If over-commitment is the cause, move to capacity-based planning immediately — show the data
    3. If uncontrolled interruptions are the cause, establish a formal protocol for handling unplanned work
    4. If external pressure is the source, escalate and actively shield the team from unsustainable demands
    5. Remove mandatory overtime or after-hours expectations and re-establish a sustainable pace as non-negotiable
    Burnout is a system problem, not a personal weakness. The SM is the team’s first line of defense — shield the team from organizational overload while also helping the team set boundaries themselves.
    Q11Distributed team communication issues. How do you solve them?
    • Standardize tools: one async channel (Slack/Teams), one video platform, one board tool — reduce friction
    • Make work visible: digital Kanban board everyone can see in real time regardless of timezone
    • Protect overlap time: schedule Daily Scrum in the timezone overlap window — make it sacred
    • Establish async communication norms: agree on expected response times, preferred channels, and escalation paths
    • Invest in periodic face-time: even quarterly in-person sessions rebuild trust in ways that no tool can replicate
    • Cultivate online psychological safety: explicitly create space for questions and disagreement in async channels
    “I didn’t know” is the biggest risk in distributed teams. Any significant decision or change must reach every team member through a reliable, agreed channel — not just whoever happened to be online.
    Q12A team member is underperforming. How would you coach them?
    1. Start with a private, non-evaluative 1-on-1 — listen to understand the situation before diagnosing
    2. Identify the root cause: technical gaps, motivation issues, personal circumstances, or team relationship dynamics
    3. Provide targeted support: pair programming, learning opportunities, workload adjustment, or referral to professional support
    4. Escalate to management or HR only when appropriate — and ideally with the team member’s awareness
    The SM is a coach, not an evaluator. Questions unlock more than prescriptions. “What’s making this hard for you?” is a better opening than any feedback framework.
    Q13The team continuously over-commits. What would you do?
    1. Make capacity data visible in every Sprint Planning — show working days, historical velocity, and current commitments side by side
    2. Ask: “Does this amount of work match our last three Sprints’ actual output?” before locking any commitments
    3. Explore the root cause: external pressure, perfectionism, fear of looking unproductive, or cultural expectations
    4. Frame reliability as a team value: consistent delivery builds stakeholder trust far more than heroic over-commitment
    A useful reframe: “What matters is not how much we promise — it’s whether we deliver what we promise. That consistency is what builds trust.”
    Q14Sprint Retrospectives are ineffective. How do you improve them?
    • Rotate formats: same format every Sprint breeds disengagement — alternate between 4Ls, KPT, Mad/Sad/Glad, sailboat, etc.
    • Make action items specific: “Improve communication” is not an action. “Run a 15-min tech sync every Tuesday” is
    • Start by reviewing last retro’s actions: if nothing was done, discuss why before generating new ones
    • Increase psychological safety: try anonymous sticky notes; SM shares a personal failure first to model openness
    • Change the setting: offsite or informal location refreshes energy; even a different virtual background helps remotely
    If retros feel ineffective, look at the SM’s facilitation quality first — before questioning the team. The retro is only as valuable as the facilitation that shapes it.
    Q15The Product Owner is unavailable to the team. What would you do?
    1. Diagnose the root cause: genuinely overloaded? Unclear on PO accountabilities? Simply not engaged?
    2. Quantify the cost of PO absence: rework from ambiguous stories, team idle time, misaligned priorities — make the impact visible
    3. Help the PO restructure their schedule to protect ceremony participation as a priority
    4. If the situation does not improve after direct conversation, escalate to the RTE or management
    Frame the PO relationship as co-authorship of the product — not client and vendor. “We build it together” changes the availability conversation more effectively than any process argument.

    🛠️
    4. Tools Questions
    7 questions

    Question List

    1. How do you use Jira as a Scrum Master?
    2. How do you use Confluence?
    3. How do you use Jira Align?
    4. How do you create Agile dashboards and reports?
    5. How do you use Power BI for Agile reporting?
    6. How do you use Azure DevOps?
    7. How do you use Miro during PI Planning / workshops?
    Q1How do you use Jira as a Scrum Master?
    Use Case How
    Backlog management Manage epics, stories, and tasks in hierarchy; update priorities with drag-and-drop in real time
    Sprint board Kanban-style board for WIP visualization; customize columns to reflect the DoD stages
    Burn-down chart Auto-generated Sprint progress chart — review before every Daily Scrum
    Velocity report Sprint-over-Sprint trend analysis to improve planning accuracy
    Impediment tracking Log impediments as Jira tickets with an “impediment” label; track to resolution
    Epic roadmap Visualize mid-to-long-term feature plans; use as a stakeholder communication artifact
    Tools serve the process — the process does not serve the tool. Use Jira data to enable team improvement, never to measure or surveil individual performance.
    Q2How do you use Confluence?
    • Retrospective records: accumulate learnings and action items as versioned pages — the team’s growth history
    • Working Agreement: post shared team commitments where everyone can reference them anytime
    • PI Objectives: maintain a living page visible to team and stakeholders throughout the PI
    • Knowledge base: document recurring impediments, solutions, technical specs, and onboarding materials
    • Stakeholder dashboard page: update every Sprint with Sprint Goal status, risks, and next priorities
    • DoD posting: keep the team’s DoD in Confluence for easy reference before Sprint Review
    “Living document” is the key word. A Confluence page nobody reads is noise. Establish a lightweight update habit — a 5-minute weekly update beats a monthly overhaul.
    Q3How do you use Jira Align?
    • Digital PI Planning: the primary platform for running virtual PI Planning events — virtual rooms, shared boards, real-time collaboration
    • Digital Program Board: manage features, dependencies, and milestones in a shared digital space
    • ROAM board: classify risks, assign owners, and track resolution status
    • Flow metrics dashboard: real-time view of predictability, BV vs. AV, velocity, and program health
    • Portfolio alignment: trace Epic → Feature → Story hierarchy across the full ART
    • ART Sync support: update cross-team dependency status, blockers, and PI Objective progress weekly
    Jira (team level) + Jira Align (program and portfolio level) together provide digital coverage of the full SAFe hierarchy. For virtual PI Planning, the most common combination is Miro (visual) + Jira Align (tracking).
    Q4How do you create Agile dashboards and reports?

    Agile dashboards should function as information radiators — anyone looking at them should immediately understand the team’s health.

    • Jira built-in reports: Burn-down, velocity chart, and Sprint report cover most team-level needs out of the box
    • Custom dashboard: Jira’s dashboard gadgets can display WIP count, items completed, impediment count, and DoD compliance rate
    • Update cadence: refresh at minimum every Sprint — stale data is worse than no data
    • Audience-aware design: a team board and an executive summary serve different needs; design for each audience
    Audience Key Metrics to Show
    Team members Burn-down · Sprint board WIP · Impediment list · Retro action item progress
    PO and Stakeholders Sprint Goal status · Features completed · Risk register · Next Sprint plan
    Executives and RTE Velocity trend · Program Predictability (BV vs. AV) · Flow metrics · PI Objective achievement rate
    Ruthlessly limit the dashboard to 3–5 core metrics. A dashboard nobody reads is just noise. Design for the decision each audience needs to make.
    Q5How do you use Power BI for Agile reporting?
    • Jira integration: connect via Power BI Connector or Jira API for auto-refreshing reports — no manual data entry
    • Velocity trend: multi-Sprint velocity line chart for planning accuracy conversations
    • Flow metrics visualization: lead time, cycle time, and throughput trends over rolling periods; CFD replication possible
    • Cross-team analysis: multi-team and multi-PI analysis that Jira’s native reports can’t handle
    • Executive reporting: business-language KPI dashboards distributed automatically to leadership
    Start with Jira’s native reports. Graduate to Power BI when scale demands it — specifically for cross-team or cross-PI analysis that Jira alone can’t handle cleanly.
    Q6How do you use Azure DevOps?
    • Backlog management: Epic → Feature → User Story → Task hierarchy with prioritization and filtering built in
    • Sprint board: Kanban-style board for WIP visualization; drag-and-drop Sprint Backlog management
    • CI/CD pipeline: Azure Pipelines automates build, test, and deploy — directly enabling Built-in Quality
    • Test management: Azure Test Plans links test cases to stories, supporting DoD verification and traceability
    • Built-in reports: Sprint burn-down and Cumulative Flow Diagram are generated automatically
    As an SM, use Azure DevOps data (deploy frequency, test pass rate, build success rate) to quantitatively assess Built-in Quality. Bring these metrics into Sprint Reviews and I&A as evidence of progress or risk.
    Q7How do you use Miro during PI Planning / workshops?
    • Digital Program Board: build a Sprint × Team grid; add feature cards and draw dependency arrows in real time — everyone edits simultaneously
    • ROAM board: have participants brainstorm risks on sticky notes, then drag them into R/O/A/M quadrants as a facilitated group activity
    • Retrospectives: run 4Ls, KPT, or custom formats with distributed teams; use dot-voting for action prioritization
    • PI timeline: visualize milestones, releases, and IP Sprint across the full PI visually and share with stakeholders
    • Problem-Solving Workshop (I&A): run fishbone diagrams and 5 Whys analysis collaboratively in the digital space
    For virtual PI Planning, the most effective combination is Miro (visual collaboration + ideation) + Jira Align (system of record + tracking). Use Miro for the “whiteboard thinking” phase; capture decisions in Jira Align for ongoing management.

    📌 Top Tips for Passing the Scrum Master Interview

    Distinguish official Scrum Guide definitions from field practices: “According to the Scrum Guide, it works this way. In practice, some teams also use this approach…” — this precision signals mastery. Pay special attention to DoR, Daily Scrum ownership, and SM role language.

    Use the STAR method for every scenario question: Situation → Task → Action → Result. A structured answer signals experience and clear thinking.

    Back answers with concrete specifics: “velocity stabilized within 2 Sprints,” “team of 29 direct reports across 113 people” — specifics build credibility instantly.

    Consistently position yourself as a servant leader, not a manager: every answer should reflect facilitation and coaching, not control or direction. Avoid phrases like “enforce,” “make the team,” or “hold them accountable.”

    Prioritize high-WSJF (green) topics first: PI Planning, ART, WSJF, and SAFe Core Values appear in nearly every enterprise Scrum Master interview. Know them deeply, not just definitionally.

    Connect answers to real experience: “In a project I managed with 113 people across 29 teams…” — interviewers remember candidates who make it concrete. Your PM background is a genuine differentiator.

    Explain the “why,” not just the “what”: knowing that WSJF exists is not enough — explaining why it exists (to make cost of delay visible) is what demonstrates mastery.

    Prepare one personal anecdote per question area: “In my experience…” or “On one team I supported…” adds authenticity. For each major topic, have a real story ready — even a brief one.


  • スクラムマスター面接 模範回答集|全カテゴリ完全解説

    スクラムマスター面接
模範回答集|全カテゴリ完全解説






    スクラムマスター面接 模範回答集|全カテゴリ完全解説【公式定義準拠版】


    Interview Guide

    スクラムマスター面接
    模範回答集|全カテゴリ完全解説

    SAFe・スクラム・シナリオ・ツールの4カテゴリ、全67問の質問と模範回答を完全収録。WSJF優先順位順に整理し、STAR法・具体的ステップ・よくある誤解まで徹底解説します。

    📋 67問 収録
    🏷️ 4 カテゴリ
    ⏱️ 読了目安 約30分

    📌 面接での「公式定義」と「現場プラクティス」の使い分け

    • DoR(Definition of Ready)はScrum Guide 2020の正式要素ではありません。現場での補助的プラクティスです。面接では「公式要素ではないが、PBIを着手可能な状態にそろえるための現場プラクティス」と説明しましょう。
    • デイリースクラムの主体はDevelopersです。SMが常に司会者である必要はなく、チームが自律的に運営できる状態を目指すことが理想です。
    • SMの権限は「管理・徹底させる」ではなく「支援・促進・ファシリテート」が正しい表現です。

    「Scrum Guide上はこう定義されています。現場では補助的にこういう運用もあります」と区別して話せると、面接官への評価が高まります。

    🚀
    1. SAFe関連質問
    22問

    質問一覧

    1. PIプランニングとは何か?
    2. PIプランニングの前・中・後のあなたの役割は?
    3. ARTイベントとは何か?
    4. ART(アジャイルリリーストレイン)とは?
    5. SAFeのコアバリューとは?
    6. SAFeの原則とは?
    7. WSJFを使ったARTバックログ優先順位付けは?
    8. ビジネス価値(BV)とは?
    9. 実績価値(AV)とは?
    10. PIオブジェクティブへのBV割り当て方法は?
    11. RTEの役割とは?
    12. PIプランニングのインプット・アウトプットは?
    13. ROAMを使ったリスク管理方法は?
    14. 依存関係の管理方法は?
    15. プログラムボードとは?
    16. システムデモとは?
    17. Inspect & Adaptとは?
    18. IPスプリントとは?
    19. SAFeフローメトリクスとは?
    20. CFD(累積フロー図)とは?
    21. プログラムカンバンとは?
    22. Jira Alignとは?
    Q1PIプランニングとは何か?

    PI(Program Increment)プランニングとは、SAFeにおける最も重要なイベントで、ARTに関わる全チームが一堂に会して、次の8〜12週間(通常5スプリント)の計画を立てる2日間のイベントです。

    主な目的は3点:①ビジネス目標とチームの整合 ②チーム間依存関係の特定と解消 ③PIオブジェクティブへのコミットメント
    アジェンダ 内容
    Day1 午前 ビジネスコンテキスト共有(経営層・PM)・アーキテクチャビジョン(システムアーキテクト)
    Day1 午後 チームブレイクアウト #1(各チームが計画作成)・ドラフトレビュー(リスク・依存関係の共有)
    Day2 午前 チームブレイクアウト #2(フィードバックを反映して計画を精緻化)
    Day2 午後 リスクROAM分類・最終計画レビュー(各チームが発表)・信頼投票
    単に計画を並べる会議ではなく、組織として実現可能な計画に落とし込む場です。信頼投票で3未満が出た場合は懸念を収集して計画を修正します。
    Q2PIプランニングの前・中・後のあなたの役割は?

    【PIプランニング前】

    • チームバックログの整備支援(PBIの優先順位確認・リファインメント)
    • チームメンバーへのSAFeプロセス教育(特に初参加者向け)
    • 前PIのベロシティ・完了率などのデータ整理
    • キャパシティ計算(祝日・有給・他プロジェクト稼働を考慮)
    • ロジスティクス調整(会場・ツール・参加者調整)

    【PIプランニング中】

    • チームのブレイクアウトセッションのファシリテーション(タイムキーピング・議論促進)
    • 障害・依存関係を即時RTEにエスカレーション
    • チームが現実的なコミットメントをできるよう支援(過剰コミット防止)
    • 信頼投票の実施と懸念事項の収集・対応

    【PIプランニング後】

    • PIオブジェクティブをチームに見える場所に掲示・共有
    • 依存関係の継続的なトラッキング(毎週ART Syncで確認)
    • Owned/MitigatedリスクをART Syncで継続追跡
    • 各スプリントでPIオブジェクティブとの照合・差異の早期発見
    SMは「計画を作る人」ではなく「チームが最良の計画を作れる環境を整える人」という立場を一貫させましょう。
    Q3ARTイベントとは何か?

    ARTイベントとは、SAFeにおいてART全体が同期するための定期的なイベント群です。複数チームが同一ケイデンスで動き、大規模な整合性を維持します。

    イベント 頻度 目的
    PIプランニング PI毎(約10週) 次PIの計画・整合。全チームが2日間集まり依存関係を解消する
    システムデモ スプリント毎 ART全体で統合されたインクリメントをステークホルダーにデモ
    Inspect & Adapt(I&A) PI毎 PI終了後の振り返りワークショップ。定量分析+改善アクション策定
    ART Sync(SoS) 週次 各チームのSMが集まりクロスチームの障害・依存関係・進捗を同期
    PO Sync 週次 POとPMが集まりバックログの優先順位・フィーチャーの整合を確認
    ART Syncの運用(頻度・形式・名称)は組織によって異なります。面接では「ARTレベルで複数チームの進捗・依存関係・優先順位を同期する定期イベント群」とまとめて表現できると柔軟に対応できます。スプリントレビュー(1チーム)⟷ システムデモ(ART全体)、レトロスペクティブ(1チーム)⟷ Inspect & Adapt(ART全体)の違いも明確に説明できるようにしておきましょう。
    Q4ART(アジャイルリリーストレイン)とは何か?

    共通のミッションとビジョンに向かって協働する、5〜12チーム(50〜125人)の長期的な自己組織化チームの集合体です。SAFeの基本デリバリー単位です。

    • 電車(Train)のメタファー:定刻(PIケイデンス)で出発し、乗り遅れたら次のPIを待つ
    • 固定メンバー:プロダクト・エンジニアリング・ビジネスが一体となった仮想組織
    • 主要役割:RTE(リリーストレインエンジニア)・プロダクトマネージャー・システムアーキテクト
    • 継続的デリバリー:すべてのPIで価値あるソリューションを届けることを目指す
    覚えるべき数字:チーム数 5〜12 / 人数 50〜125人 / PIスプリント数 通常 5回 / PI期間 8〜12週間
    Q5SAFeのコアバリューとは?

    SAFeには4つのコアバリューがあります。すべての手法・イベント・ツールの基盤となる価値観です。

    ① Alignment(整合性)

    全階層(ポートフォリオ→プログラム→チーム)が戦略目標に整合する状態。PIプランニングが主な整合メカニズムです。整合がないと、各チームが独立して動き価値が届かなくなります。

    ② Built-in Quality(組み込み品質)

    品質は後から追加するのではなく、開発プロセスに最初から組み込む考え方。TDD・CI/CD・DoDが実践手段です。品質の欠如は最終的に速度を下げます。

    ③ Transparency(透明性)

    進捗・リスク・課題・失敗をすべてのステークホルダーに包み隠さず可視化する。プログラムボード・フローメトリクスで実現します。隠蔽は信頼を破壊し、問題の早期発見を妨げます。

    ④ Program Execution(プログラム実行)

    計画よりも、実際に動くプロダクトを届けることにフォーカス。「動くソフトウェアが最高の進捗報告」という精神を大規模組織で実現します。

    Q6SAFeの原則とは?

    SAFeには10の原則があります。特に重要な上位5〜6つを深く理解しておきましょう。

    # 原則名 なぜ重要か
    1 経済的視点で見る WSJFの根拠。「最小コストで最大価値」を定量化して意思決定するのがSAFeの核心
    2 システム思考を適用する 部分最適でなくシステム全体の視点で考える。ARTという単位がこの原則の具体化
    3 変動性を前提にオプションを保持する 不確実性の高い環境では早期確定が最大のリスク。選択肢を残しながら学習する
    6 フロー可視化・WIP制限・バッチサイズ削減 リーンフローの考え方。WIPが多すぎると全体が遅くなる。小さいバッチで頻繁に届ける
    7 ケイデンスを適用し同期で計画する PIプランニングがこの原則の具体化。定期的な同期で複数チームが予測可能に動ける
    9 分散した意思決定 戦術的決定は現場に委譲する。すべての意思決定を上位に持ち上げると遅くなる
    「一番重要な原則は?」と聞かれたら「経済的視点で見る(原則1)」と答えると説得力があります。WSJFとも連動しており、SAFe全体の優先順位付けの哲学を一言で表しているからです。
    Q7WSJFを使ったARTバックログ優先順位付けは?

    WSJFは「最も短い時間で最大のビジネス価値を生む仕事を最優先にする」という考え方に基づいた優先順位付け手法です。

    計算式:WSJF = ( BV + TC + RR/OE ) ÷ JS
    BV=ビジネス価値、TC=時間的緊急性、RR/OE=リスク低減/機会創出、JS=ジョブサイズ(労力)

    実践手順

    1. バックログの各フィーチャーを BV・TC・RR/OE・JS で相対評価する(フィボナッチ数列:1,2,3,5,8,13,20)
    2. 絶対値ではなく相対比較でスコアリングする(プランニングポーカーと同じ考え方)
    3. WSJF値の高い順にフィーチャーを並べ替える
    4. チーム・ビジネスオーナー間で合意形成し、PIプランニングに持ち込む
    5. PI実行中・次PI準備でも継続的に見直す(一度決めて終わりではない)
    JSが小さくBVが大きいものが最優先になります。「大きくて価値の低い仕事」より「小さくて価値の高い仕事」を先に届けるのがWSJFの本質です。
    Q8ビジネス価値(BV)とは?

    BV(Business Value)とは、PIプランニング中に、PIオブジェクティブそれぞれに対してビジネス側が付与する価値スコア(通常1〜10)です。

    ⚠️ BVの評価方法や数値スケールは組織・SAFeバージョンによって運用が異なる場合があります。面接では「PIオブジェクティブに対するBusiness Ownersの評価を用いて、計画と実績の整合を見る指標」と説明すると柔軟に対応できます。

    使用場面と役割

    • PIプランニング中に、ビジネスオーナーがチームのPIオブジェクティブを評価する
    • チームは「計画BV(Planned BV)」を設定し、ビジネス側が「実績AV(Actual AV)」を評価する
    • PI終了後にPlanned BV vs Actual BVを比較し、プログラム予測精度を測定する
    • 10点=戦略的に最重要、1点=あれば良いが優先度低

    スクラムマスターの役割

    • チームがビジネス価値を理解してオブジェクティブを設定できるよう支援する
    • BVスコアの根拠をステークホルダーから引き出すファシリテーションを行う
    • スコアが低い場合→なぜ価値が低いか理解し、オブジェクティブを修正する
    Q9実績価値(AV)とは?

    AV(Actual Value)とは、PI終了時にビジネス側が評価する、PIオブジェクティブの実際の達成価値スコアです。

    指標 タイミング 評価者
    計画BV(Planned BV) PIプランニング時 チームとビジネスが合意
    実績AV(Actual AV) PI終了時 ビジネスオーナーが評価
    ⚠️ プログラム予測精度の計算式(例:AV ÷ Planned BV × 100)は一般的な例であり、組織・SAFeバージョンによって運用が異なります。面接では「計画と実績の整合度合いを測る指標」として説明し、具体的な数式は「組織の運用に依存する」と添えると安全です。

    予測精度が常に100%の場合は過小コミットしている可能性があります。差分を分析して次PIの精度向上につなげましょう。

    Q10PIオブジェクティブへのBV割り当て方法は?
    1. チームがドラフトのPIオブジェクティブを作成する(「何を達成するか」を具体的・測定可能な形で記述)
    2. ビジネスオーナーがBVを付与する(1〜10点):10点=戦略的最重要、1点=優先度低
    3. チームとビジネスオーナーが対話する(スコアが低い場合はオブジェクティブの修正を検討)
    4. Uncommitted Objectivesは別管理(BVは付与するが達成できなくてもPIの成否に影響しない)
    5. PI終了時にAVを評価し、Planned BV vs AVの差分をI&Aで分析する
    SMの役割はこのBV対話をファシリテートすることです。チームとビジネスオーナーが「なぜこのオブジェクティブが価値を持つのか」を共通言語で議論できるよう橋渡しします。
    Q11RTEの役割とは?

    RTE(Release Train Engineer)とは、ARTレベルのスクラムマスターであり、ART全体のコーチ・ファシリテーターです。

    主な責務

    • PIプランニング・システムデモ・I&AなどARTイベントのファシリテーション
    • ART全体の障害除去とエスカレーション
    • 複数チーム間の依存関係調整
    • チームのスクラムマスターへのコーチング
    • メトリクス収集と可視化(フロー・品質・予測精度)
    • ステークホルダー管理とコミュニケーション
    観点 スクラムマスター RTE
    対象範囲 1チーム ART全体(複数チーム)
    主なイベント スプリントセレモニー ARTイベント(PIプランニング等)
    障害対応 チーム内 チーム間・組織間
    メトリクス チームベロシティ等 フロー・品質・予測精度
    RTEは「ARTのSM」と説明すると分かりやすいです。SMが1チームを支援するのに対して、RTEはART全体の複数チームを支援します。
    Q12PIプランニングのインプット・アウトプットは?
    インプット アウトプット
    プロダクトロードマップ・ビジョン PIオブジェクティブ(チーム別・ART全体)
    アーキテクチャビジョン(システムアーキテクト提供) プログラムボード(フィーチャーと依存関係のマップ)
    優先順位付きプログラムバックログ スプリント計画(各チームの5スプリント分)
    前PIのI&Aアウトプット(改善アクション) ROAMリスクログ(Resolved/Owned/Accepted/Mitigated)
    チームのキャパシティ(稼働日数・ベロシティ) 信頼投票結果と懸念事項への対応アクション
    ビジネスコンテキスト(市場動向・戦略) Uncommitted Objectivesのリスト
    「インプットとアウトプットを教えてください」は頻出質問です。特にアウトプットはPIオブジェクティブ・プログラムボード・ROAMリスクログを必ず挙げられるようにしましょう。
    Q13ROAMを使ったリスク管理方法は?

    ROAMとは、PIプランニング中に特定されたリスクを4つのカテゴリに分類し、対応方針を合意するフレームワークです。

    分類 意味 対応アクション
    Resolved(解決済み) 議論の結果リスクが解消した 記録のみ。追加対応は不要
    Owned(オーナー設定) 特定の人・チームが管理責任を持つ 担当者・期限を明確にアサインし継続追跡
    Accepted(受容) 対処困難または対処コストが効果を上回る ステークホルダーに透明に開示。影響最小化の計画のみ
    Mitigated(軽減) 影響・発生確率を下げる対策を実施する 軽減策の担当者・期限を設定。スプリント毎に進捗追跡

    SMのファシリテーション手順

    1. 付箋またはデジタルボードでリスクを全員が書き出す(ブレインストーミング形式)
    2. 1つずつ声に出して読み上げ、全体で4分類に仕分ける
    3. O・Mのリスクには「誰が・いつまでに」を必ずセットで決める
    4. Acceptedのリスクはビジネスオーナーに明示的に同意を取る
    5. 全リスクをROAMボードに記録し、ART Syncで毎週ステータスを更新する
    Q14依存関係の管理方法は?
    1. PIプランニング中にプログラムボードで依存関係を矢印で可視化する
    2. 各依存関係に「提供チーム」と「受け取りチーム」を明確にする
    3. 毎週のART Sync(スクラム・オブ・スクラム)で進捗と障害を確認する
    4. 赤い矢印(未解決の依存関係)をゼロに近づけることを目標にする
    5. 解消できない依存はRTEを通じてエスカレーションし、組織的に対処する
    依存関係は「早期発見・早期解消」が鉄則です。SMはART Syncを積極的に活用し、チームが依存関係の状況を定期的に報告する習慣を作ることが重要です。
    Q15プログラムボードとは?

    プログラムボードは、PIプランニングのアウトプットとして作成される、複数チームのフィーチャーと依存関係を可視化したボードです。

    要素 説明
    縦軸 チーム名(ART内の各スクラムチーム)
    横軸 スプリント(Sprint 1〜5)
    フィーチャーカード 各チームがコミットしたフィーチャーを対応するスプリントに配置
    依存関係の矢印 チーム間の依存を矢印で結ぶ(赤色=未解決リスク)
    マイルストーン リリース日・外部依存などの固定期限を表示
    オンラインPIプランニングではMiroやJira Alignのデジタルプログラムボードを使用します。「全チームが同じボードを見て議論できる状態」を作ることが目的です。
    Q16システムデモとは?

    システムデモとは、ART全体で統合されたインクリメントをステークホルダーにデモする場です。各チームのスプリントレビューとは異なり、「全チームの成果を統合した状態」でデモします。

    観点 スプリントレビュー システムデモ
    対象 1チームの成果物 ART全体の統合済み成果物
    参加者 チームとPO、一部ステークホルダー ART全員+ビジネスオーナー・上位ステークホルダー
    頻度 スプリント毎 スプリント毎(PIの各スプリント後)
    • 個別チームが順調でも統合すると動かない・期待した価値になっていないことを早期発見できる
    • ステークホルダーの早期フィードバック獲得に有効
    Q17Inspect & Adaptとは?

    Inspect & Adapt(I&A)は、PI終了後に行うART全体の振り返りと改善の場です。単なるレトロスペクティブではなく、ART全体・システム全体・進め方全体を見直します。

    3部構成で実施

    1. PI System Demo:PI全体の統合デモ。全スプリントの成果を統合した状態でステークホルダーにデモする
    2. 定量的問題分析:フローメトリクス・予測精度・品質指標を確認。根本原因分析(5 Why等)を実施する
    3. 改善ワークショップ:特定した課題に対して改善アクションを策定。次PIへの入力とする
    観点 レトロスペクティブ Inspect & Adapt
    対象 1チームのプロセス ART全体のプロセス・システム・組織
    タイミング スプリント末 PI末
    改善範囲 チームの習慣・プラクティス 組織レベルの仕組み・プロセス
    I&Aの改善アクションは必ずPIバックログに入れ、次PIプランニングのインプットとして活用します。「実施して終わり」では改善が積み上がりません。
    Q18IPスプリントとは?

    IP(Innovation & Planning)スプリントとは、PIの最後のスプリント(通常スプリント5)のことです。通常の開発作業は行わず、4つの目的のために使います

    用途 内容
    Innovation(革新) ハッカソン・新技術の実験・技術的負債解消・改善活動
    Planning(計画) 次PIのプランニング準備(バックログリファインメント・事前調査)
    Integration(統合) 全チームの成果を統合・テストする最終確認・ハードニング
    Inspect & Adapt I&Aワークショップの実施
    • 「作業が遅れたときに埋め合わせるバッファスプリント」ではない
    • IPスプリントに機能開発を詰め込むと本来の4つの価値がすべて失われる
    • チームがIPスプリントを「休息週間」にしないよう意義を説明する
    • 革新アクティビティ(ハッカソン等)の企画ファシリテーションを行う
    • 次PIプランニングに向けたバックログリファインメントを推進する
    Q19SAFeフローメトリクスとは?

    SAFeでは6つのフローメトリクスを用いて、価値の流れを測定・改善します。

    メトリクス 定義 活用・改善
    Flow Velocity 一定期間に完了した作業アイテム数 生産能力トレンドを把握。WIPを減らして完了率を高める
    Flow Time 作業開始から完了までの時間(リードタイム) 顧客への価値提供スピードの指標。バッチサイズ削減で改善
    Flow Load 現在進行中の作業量(WIP) WIPが多すぎると全員が忙しいのに完了物が増えない。WIP制限を設ける
    Flow Efficiency 合計リードタイムに占める実作業時間の割合 待ち時間の多さを可視化。承認フロー短縮で改善
    Flow Distribution フィーチャー・リスク・技術的負債・課題の比率 作業バランスが偏っていないか確認。PI計画時に比率目標を設定
    Flow Predictability 計画BVに対する実績AV比率 ARTの信頼性指標。スプリント毎にPIオブジェクティブとの乖離を早期検知
    面接では「6つを挙げてください」と問われることが多いです。Flow Velocity・Time・Load・Efficiency・Distribution・Predictabilityの6つをセットで覚えましょう。
    Q20CFD(累積フロー図)とは?

    CFD(Cumulative Flow Diagram)とは、バックログ・進行中・完了の各ステータスにある作業量を時系列で積み上げ表示したグラフです。

    • WIPの増減をリアルタイムで可視化:帯の幅が広がっている=WIPが増えている(ボトルネックのサイン)
    • リードタイムの変化:帯の傾き角度でスループットと平均リードタイムを把握する
    • スコープ変化の検知:上端のラインが急に上がる場合はスコープ追加が発生している
    CFDはJira・Jira Align・Azure DevOpsなどで自動生成できます。SMは毎スプリント確認し、異常なパターン(横ばい・帯の拡大)を早期に発見してチームに共有しましょう。
    Q21プログラムカンバンとは?

    プログラムカンバンとは、ARTレベルでフィーチャーの流れを可視化し、WIPを制限してフロー効率を高めるカンバンボードです。チームバックログに入れる前段階のフィーチャー管理ツールです。

    ステージ 説明
    Funnel(候補) すべてのアイデア・要求が集まる入口。WSJFで優先順位付けを開始する
    Analyzing(分析) フィーチャーの詳細分析・受け入れ基準の定義・見積もりを行う
    Backlog(バックログ) PIプランニングに持ち込む準備が完了したフィーチャーを保管する
    Implementing(実装中) 現在PIで実装中のフィーチャー
    Validating(検証中) 統合テスト・ステークホルダー検証中のフィーチャー
    Done(完了) 価値が顧客に届いた完了済みフィーチャー
    各ステージにWIP制限を設けることで、フィーチャーが特定のステージで滞留するボトルネックを即座に可視化できます。
    Q22Jira Alignとは?

    Jira Alignとは、SAFeのような大規模アジャイルフレームワークを支援するエンタープライズ向けポートフォリオ管理ツールです(Atlassian社製)。

    • ポートフォリオ→プログラム→チームの3階層を一元管理できる
    • デジタルPIプランニングのサポート:オンラインPIプランニングで主要ツールとして活用
    • プログラムボードのデジタル化:依存関係・マイルストーン・フィーチャーをリアルタイム管理
    • ROAMリスクの管理:リスクの分類・担当者アサイン・進捗追跡
    • フローメトリクスのダッシュボード:予測精度・BV vs AV・ベロシティをリアルタイム表示
    • Jiraとの統合:チームレベルのJiraデータを上位計画に自動反映
    Jira(チームレベル)とJira Align(プログラム・ポートフォリオレベル)はセットで使うことで、SAFeの全階層をデジタルで管理できます。

    🔄
    2. スクラム関連質問
    23問

    質問一覧

    1. スクラムとは何か?
    2. アジャイルマニフェストと原則を説明せよ
    3. スクラムの価値観とは?
    4. スクラムの三本柱とは?
    5. スクラムマスターの役割は?
    6. 障害をどう除去するか?
    7. サーバントリーダーシップとは?
    8. スプリントプランニングをどう進行するか?
    9. デイリースクラムをどう進行するか?
    10. スプリントレビューをどう進行するか?
    11. レトロスペクティブをどう進行するか?
    12. DoR(着手の定義)とは?
    13. DoD(完成の定義)とは?
    14. ベロシティとは?
    15. ストーリーの見積もり方法は?
    16. プランニングポーカーとは?
    17. ストーリー分割とは?
    18. バーンダウンチャートとは?
    19. バーンアップチャートとは?
    20. リードタイムとは?
    21. サイクルタイムとは?
    22. スループットとは?
    23. チームベロシティの用途は?
    Q1スクラムとは何か?

    スクラムとは、複雑な問題に対応するためのフレームワークで、価値の高いプロダクトを反復的・漸進的に届けます(スクラムガイド2020)。

    要素 内容
    3つの柱(経験主義) 透明性(Transparency)・検査(Inspection)・適応(Adaptation)
    5つの価値観 確約・集中・開放・尊重・勇気
    3つの役割 プロダクトオーナー(PO)・スクラムマスター(SM)・開発者(Developers)
    3つの成果物 プロダクトバックログ・スプリントバックログ・インクリメント
    5つのイベント スプリント・スプリントプランニング・デイリースクラム・スプリントレビュー・レトロスペクティブ
    「スクラムとは何か?」を問われたとき、定義だけでなく「なぜ使うのか(複雑な問題への適応力)」と「どう機能するか(反復と検査・適応のサイクル)」までセットで答えると説得力が増します。
    Q2アジャイルマニフェストと原則を説明せよ

    アジャイルマニフェスト 4つの価値(2001年)

    左辺優先プロセスやツール より 個人と対話
    左辺優先包括的なドキュメント より 動くソフトウェア
    左辺優先契約交渉 より 顧客との協働
    左辺優先計画に従うこと より 変化への対応

    ⚠️ 右辺も重要ですが、左辺をより重視するという意味です。

    12の原則(特に重要なもの)

    • 価値あるソフトウェアを早く継続的に届ける
    • 要件変更を歓迎する(たとえ開発後期でも)
    • 動くソフトウェアを数週間〜数ヶ月ごとに届ける
    • ビジネスと開発者は毎日協働する
    • 信頼できる人々に環境と支援を与え、仕事を任せる
    • 動くソフトウェアが進捗の主要な尺度
    • 持続可能なペースで開発を継続
    • シンプルさ(やらない作業量を最大化すること)
    • 自己組織化チームが最良のアーキテクチャ・要件・設計を生む
    • 定期的にチームの効果を振り返り調整する
    Q3スクラムの価値観とは?
    価値観 意味 実践例
    確約(Commitment) スプリントゴール達成に全力でコミット 「できたらやる」でなく「やり切る」姿勢
    集中(Focus) スプリント期間中はスプリントゴールに集中 割り込み作業を最小化する
    開放(Openness) 作業・課題・懸念をオープンに共有 デイリースクラムでの透明なコミュニケーション
    尊重(Respect) 全員が能力ある専門家として尊重される 失敗を責めず学びに変える文化
    勇気(Courage) 困難なことに取り組み、正しいことを行う 「それは無理です」と正直に言える勇気も含む
    SMとしての役割:この5つの価値観がチームに体現されているかを観察し、欠けている価値観についてはコーチングで促進します。特に「勇気」と「開放」は心理的安全性なしには育ちません。
    Q4スクラムの三本柱とは?

    スクラムは経験的プロセス制御理論(経験主義)に基づいており、3つの柱で支えられています。

    ① 透明性(Transparency)

    プロセスと作業を担当者全員が見える状態にします。実践例:プロダクトバックログの公開・DoDの明確化・スプリントボードのオープン化

    ② 検査(Inspection)

    アーティファクトと目標達成の進捗を頻繁に検査します。実践例:スプリントレビュー・デイリースクラム・レトロスペクティブ

    ③ 適応(Adaptation)

    問題が発見されたらプロセスや成果物を調整します。実践例:バックログリファインメント・スプリント中の計画修正・レトロのアクション実施

    重要:透明性なしには正確な検査はできない。正確な検査なしには適切な適応はできない。この3つは切り離せない関係にあります。
    Q5スクラムマスターの役割は?

    スクラムマスターはサーバントリーダーとして、3方向に対して責務を持ちます。

    対象 主な責務
    スクラムチームへ スクラムの理論・実践のコーチング・自己管理と機能横断性の促進・障害の除去・スクラムイベントが目的に沿って効果的に行われるよう支援・ファシリテート
    プロダクトオーナーへ 効果的なプロダクトゴール・バックログ管理の支援・バックログアイテムを明確・簡潔にする手法の提供・経験的なプロダクト計画のサポート
    組織へ アジャイル・スクラムの社内導入支援・ステークホルダーとのコラボレーション促進・組織のアジリティ向上支援
    • チームメンバーへの指示・命令はしない
    • タスクのアサインはしない(チームが自己組織化して行うこと)
    • スプリントゴールの決定は自分ではしない(チームとPOの仕事)
    • チームの代わりに問題を解決しない(チームが自律的に解決できるよう支援する)
    Q6障害(インペディメント)をどう除去するか?
    1. 可視化:デイリースクラムで「今日の障害は何か?」を確認。障害リスト(Impediment Backlog)を作成・全員に公開する
    2. 分類:チーム内で解決可能か?チーム外の支援が必要か?を判断する
    3. 対応:技術的な問題→IT部門・アーキテクトへ連絡、人間関係→コーチング・1on1、外部依存→RTE経由で組織調整
    4. 追跡と完了確認:障害が実際に解消されたか確認する。再発防止のためレトロスペクティブで根本原因を議論する
    SMは障害を「自分で解決する人」ではなく「解決を促進する人」です。チームが自律的に障害を解決できる力を育てることが本来の目的です。
    Q7サーバントリーダーシップとは?

    サーバントリーダーシップとは、リーダーがチームに「奉仕する」ことで、チームの能力を最大化するリーダーシップスタイルです。Robert Greenleafが提唱し、スクラムの根幹にある考え方です。

    観点 従来型(Command & Control) サーバントリーダー
    意思決定 トップダウンで指示 チームに委ねる。SMは環境を整える
    問題対応 自分が解決する チームが解決できるよう支援する
    評価軸 自分の権威・地位 チームの成長と成果

    スクラムマスターとしての実践

    • “どうすれば解決できると思う?” と問いかける(答えを与えない)
    • チームの障害を取り除くために組織に働きかける
    • 自分の「承認」を必要としない意思決定をチームに促す
    • チームの成功を自分の成功と捉える
    Q8スプリントプランニングをどう進行するか?

    目的:スプリントで「何を」「どうやって」届けるかを計画する。タイムボックスは1スプリント1時間/週が目安(2週間スプリントなら最大4時間)。

    2部構成で進める

    Part 1 – WhatPOと協力してスプリントゴールとバックログ選択を促進する。「なぜこれを選ぶのか」の目的を全員が理解した上でコミットする
    Part 2 – Howチームが作業を分解・見積もりできるよう支援する。誰がどのタスクをやるかはチームが決める
    • スプリントゴールを最初に確定する
    • バックログアイテムの整備はプランニング前に完了させておく(DORの確認)
    • キャパシティを数値で提示し、過剰コミットを防ぐ
    • 全員が理解・コミットしているかを確認してから終了する
    • POが未準備:事前のバックログリファインメントを徹底する
    • チームが過剰コミット:実績ベロシティを見せてリアルな計画に誘導する
    Q9デイリースクラムをどう進行するか?

    目的:15分以内でスプリントゴールに向けた進捗を同期する。進捗報告会ではなく、チームが計画を自律的に調整するための場。

    ⚠️ 公式定義の確認(Scrum Guide 2020):デイリースクラムはDevelopersのためのイベントです。スクラムマスターは必要に応じてイベントが目的通りに実施されるよう支援しますが、常に司会者である必要はありません。チームが自律的に運営できる状態を目指すことが理想です。
    3つの問い(一例)
    ①昨日、スプリントゴールに向けて何をしたか? ②今日、何をするか? ③障害はあるか?
    • デイリースクラムの主体はDevelopers。SMは必要に応じてファシリテーションを支援する
    • 時間を守る(15分厳守)。詳細な議論は「アフタースクラム」に誘導する
    • チームがゴールを意識して話せているかを確認する
    • 進捗報告会にしない(マネジメントへの報告の場ではない)
    • SMがすべての発言を整理・まとめる必要はない
    デイリースクラムの質がチームの自律性を映し出します。「チームが自分たちでデイリーを回せる状態」を目指すことが理想です。
    Q10スプリントレビューをどう進行するか?

    目的:インクリメントをステークホルダーに披露し、フィードバックを得る。SMはイベントが目的に沿って効果的に行われるよう支援・ファシリテートする。タイムボックスは1スプリント1時間/週が目安。

    • デモ環境の準備支援(技術的な準備はチームと協力して事前に確認しておく)
    • ステークホルダーを積極的に議論に参加させる(一方的なプレゼンにしない)
    • 「完成」の定義(DoD)に合致しているかを確認する(未完了は含めない)
    • フィードバックをバックログに反映するようPOを支援する
    • チームの努力を認め、祝う文化を醸成する
    問題 対処
    ステークホルダーが来ない 招待方法・日時・議題を改善する。価値ある情報が得られると伝える
    デモが機能しない 事前のリハーサルを徹底する。デモ環境を本番と分離する
    フィードバックが表面的 「何が使いにくいか」「何が足りないか」を具体的に問いかける
    Q11レトロスペクティブをどう進行するか?

    目的:チームがプロセス・関係性・ツールを改善する場を支援・ファシリテートする。タイムボックスは1スプリント1.5時間/週が目安。

    フォーマット 内容 適するシチュエーション
    Start/Stop/Continue 始めること・やめること・続けること シンプルで初心者向け
    KPT Keep / Problem / Try 日本語環境で最もよく使われる
    4Ls Liked / Learned / Lacked / Longed for 学習・成長にフォーカスしたいとき
    Mad/Sad/Glad 感情ベースの振り返り チームの感情状態を把握したいとき
    • 心理的安全性の確保:「これは批判の場ではなく学びの場」と明示する
    • 具体的なアクションアイテムの合意:担当者・期日付きで決める
    • 前回のアクションの振り返り:「実施できたか?」を最初に確認する
    最も重要なのは「次に何が変わるか」を全員が明確に分かる状態でレトロを終えることです。
    Q12DoR(着手基準)とは?
    ⚠️ 重要な公式定義の注記:DoR(Definition of Ready)はScrum Guide 2020の正式要素ではありません。現場での補助的プラクティスとして広く使われていますが、面接では「公式要素ではないが、チームがPBIを着手可能な状態にそろえるために使う現場プラクティス」と区別して説明することが重要です。

    DoR(Definition of Ready)とは、バックログアイテムがスプリントプランニングに持ち込める状態になったかを判断するための現場プラクティスです。

    • 受け入れ基準(Acceptance Criteria)が明確に定義されている
    • チームが見積もりできる粒度まで分解されている
    • 依存関係が解消されている(または計画されている)
    • ビジネス価値が明確になっている
    • UIモックアップ・API仕様など必要な情報が揃っている
    DoDとの違い:DoR=「作業を始めるための条件(現場プラクティス)」/DoD=「作業が完了したと言えるための条件(Scrum Guide公式)」
    面接ではこの区別を明確にしましょう。
    Q13DoD(完成の定義)とは?

    DoD(Definition of Done)とは、プロダクトインクリメントが「完成した」と言えるための条件リストです。チームとステークホルダー全員が合意している必要があります。

    • コードがレビュー済みでメインブランチにマージされている
    • 自動テスト(ユニット・統合)がすべてパスしている
    • ドキュメントが更新されている
    • ステージング環境でデプロイ・動作確認済み
    • 受け入れ基準をすべて満たしている
    ⚠️ SMの役割の正しい表現:SMはDoDを「守らせる・徹底させる」管理者ではありません。DoDへの理解と適用をチームが深められるよう支援・促進し、透明性を高め、品質基準がチーム全体に根付くよう促すのがサーバントリーダーとしての正しい姿勢です。
    DoDを緩めると技術的負債が積み上がり、後のスプリントで必ずコストになります。
    Q14ベロシティとは?

    ベロシティとは、チームが1スプリントで完了するストーリーポイントの平均値です。チームの生産能力の内部指標として使用します。

    • スプリントプランニング:次スプリントで取り込めるポイント数の基準として使用する
    • リリース計画:残バックログ ÷ 平均ベロシティ = 残スプリント数を予測する
    • 改善施策の効果測定:レトロの改善アクション後のベロシティ変化を確認する
    • ベロシティを「上げること」を目標にしない→品質低下・燃え尽きの原因になる
    • チーム間のベロシティ比較に使わない→見積もり基準が異なるため意味がない
    • 管理者がベロシティを「目標値」として設定すべきではない
    Q15ストーリーの見積もり方法は?

    ストーリーの見積もりには相対見積もりを使います。絶対時間(時間・日数)ではなく、ストーリーポイント(相対的な複雑さ・労力)で表現します。

    • フィボナッチ数列(1, 2, 3, 5, 8, 13, 21)が最もよく使われる
    • Tシャツサイズ(XS/S/M/L/XL)を使うチームもある
    • まず「基準ストーリー(例:3ポイント=このくらいの規模)」を決めてから見積もりを始める
    • チーム全員で見積もることでナレッジを共有できる
    大きな数字(13, 21)が出た場合は「このストーリーは分割できないか?」を検討するシグナルです。大きい見積もり=大きい不確実性=スプリントゴールへのリスクです。
    Q16プランニングポーカーとは?

    プランニングポーカーとは、チーム全員がカードを同時に開示することで合意形成バイアスを排除し、全員の意見を均等に反映する見積もりゲームです。

    1. POがストーリーを説明する
    2. 全員が見積もりカードを選ぶ(まだ見せない)
    3. 全員が同時にカードを開示する(同時開示が最重要ポイント
    4. 最高値・最低値のメンバーが理由を説明する
    5. 議論した後、再度見積もりを実施する(合意するまで繰り返す)
    「同時開示」がポイントです。先に誰かが言うと他のメンバーが影響を受けてしまいます(アンカリングバイアス)。このバイアスを排除するために同時開示が必須です。
    Q17ストーリー分割とは?

    ストーリー分割とは、大きすぎるユーザーストーリーを、1スプリントで完了できる小さな単位に分割するテクニックです。

    分割方法 説明
    ワークフローで分割 ユーザーの操作ステップごとに分ける 「商品検索」「カート追加」「決済」に分割
    データで分割 入力種別・データ型ごとに分ける 「クレカ決済」「銀行振込」に分割
    ビジネスルールで分割 条件分岐ごとに分ける 「会員割引あり」「会員割引なし」に分割
    HAPPYパスで分割 正常系・異常系を分ける 「正常ログイン」「エラー処理」に分割
    分割後も「ユーザーにとっての価値」が独立して存在することが重要です。純粋な技術タスクに分割してしまうと価値が見えなくなります。
    Q18バーンダウンチャートとは?

    バーンダウンチャートとは、スプリント期間中に残っている作業量(ストーリーポイント)を時系列で表示した折れ線グラフです。

    • 理想線(直線)と実際の残作業線を比較してスプリントゴール達成可能性を判断する
    • 右肩下がりの曲線が理想(毎日作業が減っている)
    • 横ばいや上昇が続く場合は障害・スコープ追加が発生しているサイン
    バーンダウンチャートは「未来の状態を見える化する」ツールです。「このペースで進めてゴールに間に合うか?」を全員が把握できる状態にすることが目的です。
    Q19バーンアップチャートとは?

    バーンアップチャートとは、完了した作業量(ストーリーポイント)とスコープ合計を時系列で表示した2本のグラフです。

    観点 バーンダウンチャート バーンアップチャート
    視点 残り作業を「減らす」視点 完了を「積み上げる」視点
    スコープ変化の可視化 見えない スコープ線が上がると即座に分かる
    適するシチュエーション スプリント内の進捗管理 複数スプリントのリリース計画
    スコープクリープが多いプロジェクトではバーンアップチャートが特に有効です。「完了量は順調に増えているが、スコープも一緒に増えている」という状況を可視化できます。
    Q20リードタイムとは?

    リードタイムとは、顧客がリクエストを出した時点(バックログに入った時点)から、価値が顧客に届く(デプロイ・完了)までの経過時間です。

    リードタイムを短縮 = 顧客への価値提供スピードが上がる
    • WIP制限:仕掛中の作業量を減らして完了速度を上げる
    • バッチサイズ削減:大きなフィーチャーを小さく分割して早く届ける
    • 依存関係解消:待ちの時間を減らす
    • 承認フロー短縮:レビュー・承認にかかる待ち時間を削減する
    リードタイム=サイクルタイム+待ち時間。この内訳を分析することで、どこに改善の余地があるかを特定できます。
    Q21サイクルタイムとは?

    サイクルタイムとは、実際に作業を開始した時点から完了するまでの経過時間です。

    リードタイムとの違い

    リードタイムバックログ追加〜完了(待ち時間を含む全体の時間)
    サイクルタイム作業開始〜完了(実作業の時間のみ)
    待ち時間リードタイム − サイクルタイム = 待ち時間
    リードタイム − サイクルタイム=待ち時間。この差が大きいほど、プロセスに非効率が潜んでいます。「忙しいのに価値が届かない」という状況の多くはこの待ち時間が原因です。
    Q22スループットとは?

    スループットとは、一定期間(例:1スプリント)に完了した作業アイテムの数です。ストーリーポイントではなく「アイテム数」で測ります。

    • チームの生産性を客観的に把握できる
    • 予測モデル(モンテカルロシミュレーション)の入力データとして使用できる
    • ポイント見積もりを使わない「ノーエスティメーション」アプローチで活用される
    スループットはベロシティと似ていますが、「ポイント数」ではなく「アイテム数」で測ります。見積もり精度に影響されないため、より客観的な指標として注目されています。
    Q23チームベロシティの用途は?
    • スプリントプランニング:次スプリントで取り込めるポイント数の基準として使用する
    • リリース計画:残バックログ ÷ 平均ベロシティ = 残スプリント数を予測する
    • 改善施策の効果測定:レトロの改善アクション後のベロシティ変化を確認する
    • キャパシティ管理:メンバー変更・休暇等によるベロシティ変動を計画に反映する
    • ベロシティを「上げること」を目標にしない:品質低下・燃え尽きの原因になる
    • チーム間のベロシティ比較に使わない:見積もり基準が異なるため意味がない

    🎭
    3. シナリオベース質問
    15問

    質問一覧

    1. チームが繰り返しスプリントゴールを達成できない。どうするか?
    2. スプリント中にステークホルダーがスコープを追加してきた。どう対応するか?
    3. ベロシティが急落した。どうするか?
    4. POと開発者の対立をどう解決するか?
    5. チームがアジャイル導入に抵抗している。どうコーチするか?
    6. チームがセレモニーに参加しない。どう対応するか?
    7. 複数チームの依存関係がデリバリーに影響している。どう対処するか?
    8. 上位ステークホルダーがアジャイルに異議を唱えている。どうするか?
    9. 本番障害がスプリントゴールに影響。どう対応するか?
    10. チームの燃え尽き(バーンアウト)が増加。どうするか?
    11. 分散チームのコミュニケーション問題をどう解決するか?
    12. メンバーのパフォーマンスが低下。どうコーチするか?
    13. チームが常に過剰コミットする。どうするか?
    14. レトロスペクティブが機能していない。どう改善するか?
    15. POがチームに関与しない。どうするか?
    Q1チームが繰り返しスプリントゴールを達成できない。どうするか?

    STAR法で回答

    状況(S)複数スプリント連続でゴール未達成が続いている
    課題(T)根本原因を特定し、持続可能な改善策を立案する
    行動(A)①データ収集 ②原因別対処 ③レトロで根本原因を議論
    結果(R)原因特定と対処により、通常2〜3スプリントでベロシティが安定する
    原因 確認方法 対処法
    見積もりが不正確 ベロシティの推移を確認 プランニングポーカーの精度向上。不明確なストーリーにスパイクを追加する
    割り込み作業が多い スプリントバックログの変更記録を確認 バッファ確保。割り込みルール制定(緊急度判断基準の作成)
    ゴール設定が非現実的 スプリントゴールの内容を再確認 POと協議してゴールを見直す。実績ベロシティをベースに計画する
    技術的負債の蓄積 技術負債リストの確認 リファクタリング用キャパシティを毎スプリント確保する
    ゴール未達成を「チームの怠慢」として扱わないことが重要です。データに基づいて原因を客観的に特定し、チームと一緒に改善策を考える姿勢を面接で示しましょう。
    Q2スプリント中にステークホルダーがスコープを追加してきた。どう対応するか?
    1. 変更を直接受け取らない:必ずPOを通じて対処するよう丁寧に伝える
    2. スクラムのルールを説明:「スプリントバックログはチームのもの。スプリント中の変更は原則禁止です」と伝える
    3. POへの橋渡し:追加要求をプロダクトバックログに追加し、次スプリントの候補として検討する
    4. 緊急の場合のみ:スプリントキャンセルまたはトレードオフ(既存作業を外す)を検討する

    ステークホルダーへのコミュニケーション例

    「ご要望はプロダクトバックログに追加し、次スプリントの候補として検討します。今スプリントの変更はチームの集中を妨げ、コミットを守れなくなるリスクがあります。」

    予防策:スプリントレビューを積極活用し、ステークホルダーが早期にフィードバックできる場を設ける。バックログリファインメントにステークホルダーを招待する。
    Q3ベロシティが急落した。どうするか?

    まず事実確認(パニックにならない):急落は1スプリントだけか、複数継続しているか?チームの人数に変化はあったか?

    原因 確認方法 対処
    チームメンバーの欠席・異動 キャパシティ確認 適正なスコープに調整する
    技術的負債・バグ対応増加 スプリントの作業記録確認 改善スプリントの設定。次PIでデット解消時間を確保
    外部依存の遅延 依存関係確認 先行してブロッカーを解消する。RTEにエスカレーション
    チームのモチベーション低下 1on1・ムード指標 レトロでオープンに議論する。SMが個別に話を聞く
    ベロシティはチームの能力指標であり、管理者が設定する目標値ではありません。圧力をかけると品質低下・燃え尽きにつながります。まずは「なぜ落ちたのか」を理解することが先決です。
    Q4POと開発者の対立をどう解決するか?

    よくある対立パターン:「なぜこんなに時間がかかるのか」vs「技術的制約を理解してほしい」、「要件を変えたい」vs「今さら変えないでほしい」

    1. 個別ヒアリング:双方の立場・懸念・期待を別々に聞く。感情論ではなく、事実と影響を整理する
    2. 対話の場を設定:双方が安心して話せる中立的な場を作る。SM自身は判定者ではなく、ファシリテーターに徹する
    3. 共通ゴールを確認:「両者とも良いプロダクトを届けたい」という共通点を強調する
    4. 合意の形成:技術的制約をPOが理解できる言葉で可視化。優先順位の意思決定権はPOにあることを明確にしつつ、影響を透明に伝える
    SMは「審判」ではなく「対話を促進するコーチ」です。どちらかの味方になることなく、両者が共通ゴールに向かって対話できる場を作ることが役割です。
    Q5チームがアジャイル導入に抵抗している。どうコーチするか?

    抵抗の根本原因を理解する:「今のやり方で問題ない」という信念・変化への不安・過去のアジャイル導入失敗経験・「名ばかりアジャイル」への不信感など

    • 強制しない・問いかける:「今のプロセスでどんな課題を感じていますか?」
    • 小さな実験から始める:まずデイリースクラムだけ。「2週間だけ試して、効果がなければ元に戻す」と約束する
    • 成功体験を作る:小さな改善を「見える化」して、チームが変化のメリットを体感できるようにする
    • 心理的安全性の確保:「失敗しても責めない」文化を構築。実験・学習・改善のサイクルを繰り返す
    変化への抵抗は自然な反応です。「変化を強制する人」でなく「変化の価値を一緒に探求する人」として関わることで、長期的な定着につながります。
    Q6チームがセレモニーに参加しない。どう対応するか?
    1. 参加しない理由を個別にヒアリングする(強制的に解決しない。まず「聴く」)
    2. セレモニーの「目的と価値」を改めて説明する(形式的に感じている可能性がある)
    3. セレモニーの内容・時間・進め方を改善する(「何を得られるか」が見えていないとき)
    4. チームで「作業協定(Working Agreement)」を作り、参加を共通ルール化する
    参加しない理由が「セレモニーに価値を感じていない」なら、まずSM自身がファシリテーションの質を見直すことが先です。
    Q7複数チームの依存関係がデリバリーに影響している。どう対処するか?
    1. プログラムボードまたはスクラム・オブ・スクラムで依存関係を可視化する
    2. ブロックされているチームと提供側チームを直接つなぎ、対話を促進する(チケットのやり取りではなく直接会話)
    3. 解消できない場合はRTEにエスカレーションし、組織レベルで対処する
    4. 再発防止策として、PIプランニング時の依存関係の洗い出し精度を向上させる
    5. ART Syncを活用してクロスチームの依存関係を毎週確認する
    依存関係の問題は「誰かが悪い」という話ではなく、「プロセスの設計の問題」として扱うことが重要です。SMはコラボレーションを促進します。
    Q8上位ステークホルダーがアジャイルに異議を唱えている。どうするか?
    1. ステークホルダーの懸念を丁寧にヒアリングする(「アジャイル=管理できない」という誤解が多い)
    2. アジャイルの透明性・予測可能性・早期リスク発見のメリットをビジネス言語で説明する
    3. スプリントレビューやシステムデモに招待し、実際の成果を体感してもらう
    4. 定量的な成果データ(ベロシティ・リードタイム・品質指標)を提示する
    5. RTEやアジャイルコーチと連携し、組織変革を支援する
    使える言葉:「アジャイルの反対はウォーターフォールではなく、無計画です。アジャイルはより透明性が高く、より早くリスクを発見できる進め方です。」
    Q9本番障害がスプリントゴールに影響。どう対応するか?
    1. まず障害対応を最優先させ、スプリントゴールの達成可否を正直に判断する
    2. POに状況を即時報告し、スプリントバックログのトリアージ(優先順位の再設定)を支援する
    3. 障害対応チームと開発チームのコミュニケーションを橋渡しする
    4. レトロスペクティブで根本原因を分析(5 Whyを活用)し、再発防止策を立案する
    本番障害はチームの通常業務に優先することが多いです。スプリントゴールを「守ること」より「ビジネス価値を守ること」を優先させましょう。
    Q10チームの燃え尽き(バーンアウト)が増加。どうするか?
    1. 1on1や匿名アンケートでチームの状態を把握する(まず「聴く」)
    2. 過剰コミットが原因なら、キャパシティに基づいた現実的な計画に修正する
    3. 割り込みや緊急対応が多い場合、バッファを確保するか優先順位ルールを明確化する
    4. 業務外学習の強制がある場合は排除し、持続可能なペースを守る
    5. SMが組織に対して「チームへの過剰な負荷」を明示し、シールド(防波堤)の役割を果たす
    燃え尽きは個人の問題ではなく、システムの問題である場合がほとんどです。SMはチームと組織の両方に働きかけて、持続可能なペースを守ります。
    Q11分散チームのコミュニケーション問題をどう解決するか?
    • ツールの統一:Slack・Teams・Zoom等のコミュニケーションチャンネルを一本化する
    • 作業の見える化:Jiraやデジタルカンバンボードで全員が進捗を確認できる状態にする
    • オーバーラップ時間の確保:タイムゾーンが異なる場合、全員が参加できる時間帯をデイリースクラムに設定する
    • 非同期コミュニケーションのルール化:回答期待時間・形式・チャンネルを事前に合意する
    • 定期的な顔合わせ:可能であれば四半期に一度の対面(またはPIプランニング時)を実施する
    • 心理的安全性の構築:オンラインでも「発言しやすい」文化を意識的に作る
    分散チームでは「情報の非対称性」が最大のリスクです。「知らなかった」が発生しないよう、重要な決定・変更は必ず全員に届く形で共有する仕組みを作りましょう。
    Q12メンバーのパフォーマンスが低下。どうコーチするか?
    1. まず1on1で個人の状況・悩み・障害を聴く(評価・批判しない。SMは評価者ではなくコーチ)
    2. パフォーマンス低下の原因を特定する(技術的問題・モチベーション・個人的な事情・チームとの関係性)
    3. 原因に応じたサポートを提供する(学習機会・ペアプログラミング・業務調整等)
    4. 改善が見られない場合は、マネージャーや人事との連携を検討する
    SMは「評価者」ではなく「コーチ」です。「何が難しいと感じていますか?」という問いかけから始め、当事者が自分で解決策を見つけられるよう支援します。
    Q13チームが常に過剰コミットする。どうするか?
    1. 実際のキャパシティ(稼働日数・ベロシティ実績)を数値で可視化する
    2. スプリントプランニングで「このポイント数は過去の実績から見て現実的か?」を問いかける
    3. 過剰コミットが繰り返される原因(外部からのプレッシャー・完璧主義等)を探る
    4. 「コミットメントを守ること」の価値をチームと共有する(信頼性の積み上げが長期的な評価に繋がる)
    使える言葉:「大切なのは多くを約束することではなく、約束したことを必ず届けることです。それがチームへの信頼につながります。」
    Q14レトロスペクティブが機能していない。どう改善するか?
    • フォーマットを変える:毎回同じ形式では飽きる。Start/Stop/Continue → 4Ls → Mad/Sad/Gladと変えてみる
    • アクションを小さく具体的にする:「コミュニケーションを改善する」でなく「毎週火曜に15分の技術共有をする」
    • 前回のアクションを確認する:「やった・やれなかった」を最初に確認することで継続性が生まれる
    • 心理的安全性を高める:匿名付箋の活用・SMが最初に「自分の失敗」を共有する
    • 時間帯・場所を変える:オフサイトやカジュアルな場での開催も効果的
    レトロが機能していない場合、まずSM自身のファシリテーションの質を見直すことが先決です。
    Q15POがチームに関与しない。どうするか?
    1. POの状況を把握する(多忙で物理的に参加できない?役割を理解していない?)
    2. POの関与がない場合の「コスト」を可視化する(手戻り・手待ち・方向性のズレのリスク)
    3. POのセレモニー参加に向けた具体的なスケジュール調整を支援する
    4. それでも改善しない場合、RTEまたはマネジメントにエスカレーションする
    POとの関係は「指示する側・される側」でなく「共にプロダクトを育てるパートナー」として構築することが長期的に重要です。

    🛠️
    4. ツール関連質問
    7問

    質問一覧

    1. スクラムマスターとしてJiraをどう使うか?
    2. Confluenceをどう使うか?
    3. Jira Alignをどう使うか?
    4. アジャイルダッシュボード・レポートをどう作るか?
    5. アジャイルレポートにPower BIをどう使うか?
    6. Azure DevOpsをどう使うか?
    7. PIプランニング/ワークショップでMiroをどう使うか?
    Q1スクラムマスターとしてJiraをどう使うか?
    用途 具体的な使い方
    バックログ管理 エピック・ストーリー・タスクで階層管理。優先順位をドラッグ&ドロップで即時更新
    スプリントボード カンバンボードでWIP(仕掛中)を可視化。カラムをカスタマイズしてDoDを反映する
    バーンダウンチャート スプリントの進捗を自動生成・モニタリング。毎朝デイリー前に確認する
    ベロシティレポート スプリント毎のポイント推移を分析し、計画精度向上に活用する
    障害管理 インペディメントをJiraチケットで追跡(ラベル「impediment」を付与)
    エピックロードマップ 中長期のフィーチャー計画を可視化し、ステークホルダーへの説明資料として活用する
    ツールはプロセスを支援するものであり、ツールがプロセスを決めるべきではありません。Jiraのデータを「チームの監視・評価」でなく「チームの改善」に使うことが大切です。
    Q2Confluenceをどう使うか?
    • レトロスペクティブの記録:毎スプリントの学びとアクションをページとして蓄積する
    • チームの作業協定(Working Agreement)の掲示:全員がいつでも参照できる場所に公開する
    • PIオブジェクティブの共有:チーム内外に見える形で掲示・更新する
    • ナレッジベース:よくある障害と解決策・技術ドキュメントを文書化する
    • ステークホルダー向けプロジェクト状況ページ:スプリント進捗・リスク・次アクションを定期更新する
    • DoDの掲示:チームのDoDをConfluenceで管理し、スプリントレビュー前に参照できるようにする
    Q3Jira Alignをどう使うか?
    • デジタルPIプランニング:オンラインPIプランニングで主要ツールとして活用する
    • デジタルプログラムボードの管理:フィーチャー・依存関係・マイルストーンをデジタルで可視化
    • ROAMリスクの管理:リスクの分類・担当者アサイン・期限設定・進捗追跡を一元管理する
    • フローメトリクスのダッシュボード:予測精度・BV vs AV・フローベロシティをリアルタイムで確認
    • ポートフォリオ管理:エピック→フィーチャー→ストーリーの階層整合をJiraと連動して管理する
    • ART Syncのサポート:クロスチームの依存関係・障害・PIオブジェクティブの進捗を毎週更新する
    Q4アジャイルダッシュボード・レポートをどう作るか?

    アジャイルダッシュボードは、チームの状態とプロセスを一目で把握できる「情報ラジエーター」として機能させることが重要です。

    • Jiraのビルトインレポート活用:バーンダウン・ベロシティ・スプリントレポートを活用する
    • カスタムダッシュボード:WIP・完了数・障害数・スプリントゴール達成率を一覧表示する
    • 更新頻度:スプリント毎に必ず更新し、最新の状態を維持する
    • 閲覧者を意識した設計:チーム向けと経営層向けは必要な情報が異なる
    閲覧者 表示すべき指標
    チームメンバー バーンダウン・スプリントボードWIP・障害一覧・レトロアクションの進捗
    PO・ステークホルダー スプリントゴール達成率・完了フィーチャー・リスク一覧・次スプリント予定
    経営層・RTE ベロシティトレンド・予測精度(BV vs AV)・フローメトリクス・PIオブジェクティブ達成率
    最も重要なのは「読まれるダッシュボード」を作ることです。3〜5個の核心指標を中心に設計しましょう。
    Q5アジャイルレポートにPower BIをどう使うか?
    • Jiraとの連携:Power BIコネクタまたはAPIでJiraデータを取得し、レポートを自動更新できる
    • ベロシティトレンド:複数スプリントのベロシティ推移を折れ線グラフで可視化する
    • フローメトリクスの可視化:リードタイム・サイクルタイム・スループットのトレンド表示
    • クロスチーム分析:複数チーム・複数PIをまたいだ横断分析がJira単独より容易に実施できる
    • ステークホルダー向けレポート:経営層向けにKPIを分かりやすく視覚化して自動配信する
    Jiraのビルトインレポートで対応できない複数チーム・複数PIの横断分析にPower BIが特に有効です。
    Q6Azure DevOpsをどう使うか?
    • バックログ管理:エピック・フィーチャー・ユーザーストーリー・タスクを階層管理できる
    • スプリントボード:カンバンボードでWIPを可視化。スプリントバックログをドラッグ&ドロップで管理する
    • CI/CDパイプライン:Azure Pipelinesでビルド・テスト・デプロイを自動化(Built-in Quality(組み込み品質)の実現に直結)
    • テスト管理:Azure Test Plansでテストケースを管理し、DoDの達成を追跡する
    • レポート:ビルトインのスプリントバーンダウン・累積フロー図(CFD)を活用する
    SMとして、Azure DevOpsのデータ(デプロイ頻度・テスト合格率・ビルド成功率)を活用することで、Built-in Quality(組み込み品質)の状態を定量的に把握できます。
    Q7PIプランニング/ワークショップでMiroをどう使うか?
    • デジタルプログラムボード:スプリント×チームのグリッドを作成し、フィーチャーカードと依存関係の矢印をリアルタイムで可視化する
    • ROAMリスクボード:付箋で洗い出したリスクを4象限(R/O/A/M)に分類するファシリテーションに使用する
    • レトロスペクティブ:4Ls・KPT等のテンプレートで分散チームのレトロを実施する
    • タイムライン作成:PI全体のマイルストーンをタイムライン形式で可視化する
    • ブレインストーミング:付箋+投票機能で参加者の意見収集と優先順位付けを効率化する
    オンラインPIプランニングでは、Miro(ビジュアル・リアルタイムコラボ)+Jira Align(データ管理・追跡)の組み合わせが最もよく使われます。

    📌 面接突破のための最重要ポイント

    「公式定義」と「現場プラクティス」を区別して話す:「Scrum Guide上はこう定義されています。現場では補助的にこういう運用もあります」と言えると、理解の深さが面接官に伝わります。DoR・デイリースクラムの主体・SMの権限表現を特に注意しましょう。

    STAR法を徹底する:シナリオ質問は「状況(Situation)→課題(Task)→行動(Action)→結果(Result)」の構造で答える。構造があると説得力が格段に増す。

    具体的な数字・事例を添える:「2スプリントで改善した」「113人の組織をマネジメントした経験から…」など、具体性が信頼感を生む。

    SMは「管理者」でなく「サーバントリーダー」という立場を一貫させる。すべての回答で「チームを支援・ファシリテートする」視点を貫く。「管理する」「徹底させる」という表現を使わない。

    緑(WSJF高)の質問を最優先で準備する:PIプランニング・ART・WSJF・SAFeコアバリューは必出。「知っているか?」でなく「深く説明できるか?」を目指す。

    実務経験と紐づける:過去のPM経験や大規模チームのマネジメント経験を具体的エピソードとして準備する。「私の経験では…」で始まる回答は面接官に強い印象を残す。

    「なぜ」を説明できるようにする:定義を暗記するだけでなく「なぜこの手法が存在するのか」「なぜこう対処するのか」の理由まで語れると、理解の深さが伝わる。

    経験談を1つ足す準備をしておく:各質問に対して「私の現場では…」「あるチームでは…」「以前こういう失敗があり、次にこう改善した…」を1つ添えられると、面接で強くなります。


  • 新曲 未来証明

    新曲 未来証明


    新曲「未来証明」を、本日 2026年6月27日 にリリースしました。

    タイトルの「未来証明」という言葉には、「自分の未来は、自分の行動で証明していく」という想いを込めています。誰かに保証してもらうものでもなく、資格や肩書きで担保されるものでもない。一歩ずつ積み重ねていく先に、はじめて見えてくるもの——それが未来だと思っています。


    🎵 楽曲について

    この曲は、新しいスタートを切る人に向けて書きました。

    転職、異動、進学、独立——形はさまざまでも、「慣れ親しんだ場所を離れて、まだ見ぬ扉を開ける」瞬間は、誰にとっても胸が高鳴るものです。同時に、不安だって必ずある。

    でも、その不安ごと抱えて、朝の駅のホームに立ち、定期券を握りしめて歩き出す——そういう人の背中を、この曲でそっと押せたらいいなと思いました。

    昨日までの迷いさえ 力に変えながら
    まっさらな空の下で 輝く明日を信じて
    ひとつずつ積み上げる その先にある未来へ

    遠回りしてきた日々も、涙した夜も、全部が今の自分を構成している。そう気づけたとき、過去は重荷ではなく、力になる。そのことを歌いたかった。


    🎤 制作について

    作詞・作曲・プロデュースのすべてを自分一人で手がけた楽曲です。

    曲を作り始めたのは、自分自身が新しいステージへの一歩を踏み出そうとしていたタイミングでした。言葉にすることで、自分自身も背中を押されたような気がしています。

    歌詞に登場する「彼」は、特定の誰かではなく、新しい一歩を踏み出す、すべての人の姿です。


    🎧 配信情報

    Spotify、Apple Music、YouTube Music、LINE MUSIC、Amazon Music、TikTok など、各種ストリーミングサービスおよびダウンロードストアにて配信中です。

    ▶ 「未来証明」を聴く(配信リンク一覧)


    💬 最後に

    「越えるべき相手は昨日の自分」——この歌詞は、自分自身へのメッセージでもあります。

    今日より少し良い明日を積み重ねていく。それだけで、いつか振り返ったとき、確かな道ができているはずだと信じています。

    新しいスタートを切っているすべての人に、この曲が届きますように。

    聴いてくれてありがとうございます。