smart-spec-kit-mcp 2.2.6 → 2.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -387,7 +387,7 @@ Templates define document structure. Create/edit in `.spec-kit/templates/`:
387
387
 
388
388
  ### Creating a New Workflow
389
389
 
390
- Workflows are YAML files defining multi-step processes:
390
+ Workflows are YAML files defining multi-step processes. All workflows are validated against a schema (`src/schemas/workflowSchema.ts`) to ensure correctness.
391
391
 
392
392
  ```yaml
393
393
  # .spec-kit/workflows/my-workflow.yaml
@@ -424,12 +424,252 @@ steps:
424
424
  - `save_artifact` - Save to file
425
425
  - `validate` - Validate output
426
426
 
427
- **Available agents**:
427
+ **Available Agents** (System Prompts):
428
428
 
429
- - `SpecAgent` - Writes specifications
430
- - `PlanAgent` - Creates plans
431
- - `GovAgent` - Validates governance
432
- - `TestAgent` - Creates test strategies
429
+ ⚠️ **Important Note**: These are NOT GitHub Copilot agents. They are **predefined system prompts** that guide Copilot's behavior for each workflow step.
430
+
431
+ - **`SpecAgent`** - Writes specifications and analyzes requirements
432
+ - **`PlanAgent`** - Creates technical plans and decomposes tasks
433
+ - **`GovAgent`** - Validates governance, security, and compliance
434
+ - **`TestAgent`** - Creates test strategies and test cases
435
+
436
+ ### Understanding Spec-Kit Agents
437
+
438
+ Spec-Kit's "agents" are **NOT** registered agents in GitHub Copilot. Instead, they are:
439
+
440
+ 1. **System Prompts** - Instructions defined in TypeScript (`src/prompts/agents.ts`)
441
+ 2. **Role Definitions** - Each agent has specific expertise and guidelines
442
+ 3. **Behavioral Guides** - They shape how Copilot responds to specific tasks
443
+
444
+ **How They Work**:
445
+
446
+ When a workflow step specifies an agent:
447
+
448
+ ```yaml
449
+ steps:
450
+ - id: plan
451
+ agent: PlanAgent # ← Uses PlanAgent's system prompt
452
+ action: call_agent
453
+ description: "Create implementation plan"
454
+ ```
455
+
456
+ Spec-Kit:
457
+
458
+ 1. Looks up the system prompt for `PlanAgent`
459
+ 2. Sends it to Copilot along with the task
460
+ 3. Copilot responds following that agent's guidelines
461
+
462
+ **Why Use Agents?**
463
+
464
+ Different tasks need different expertise:
465
+
466
+ ```yaml
467
+ steps:
468
+ - id: analyze-bug # ← No agent = general purpose
469
+ action: fetch_ado
470
+
471
+ - id: create-fix-plan # ← Use PlanAgent = focused planning
472
+ agent: PlanAgent
473
+ action: call_agent
474
+
475
+ - id: security-review # ← Use GovAgent = security focus
476
+ agent: GovAgent
477
+ action: review
478
+ ```
479
+
480
+ Each agent brings specialized guidelines to shape Copilot's response appropriately.
481
+
482
+ **Customizing Agents**:
483
+
484
+ Agents are now **fully customizable** from `.spec-kit/agents/`. You can:
485
+
486
+ 1. **Override built-in agents**: Create a file with the same name (e.g., `SpecAgent.md`)
487
+ 2. **Create new agents**: Create a new file (e.g., `SecurityAgent.md`)
488
+
489
+ **Agent File Format** (Markdown with YAML frontmatter):
490
+
491
+ ```markdown
492
+ ---
493
+ name: MyCustomAgent
494
+ displayName: "My Custom Agent"
495
+ description: "Expert in your specific domain"
496
+ capabilities:
497
+ - Your first capability
498
+ - Your second capability
499
+ ---
500
+
501
+ ## System Prompt
502
+
503
+ You are MyCustomAgent, an expert in [your domain]...
504
+
505
+ ### Guidelines
506
+ - Guideline 1
507
+ - Guideline 2
508
+ ```
509
+
510
+ **Example: Creating a SecurityAgent**:
511
+
512
+ ```markdown
513
+ ---
514
+ name: SecurityAgent
515
+ displayName: "Security Review Agent"
516
+ description: "Expert in application security and vulnerability assessment"
517
+ capabilities:
518
+ - Identify security vulnerabilities
519
+ - Recommend secure coding practices
520
+ - Review authentication and authorization
521
+ - Check for OWASP Top 10 issues
522
+ ---
523
+
524
+ ## System Prompt
525
+
526
+ You are SecurityAgent, an expert in application security...
527
+
528
+ ### Your Role
529
+ Review code and specifications for security vulnerabilities...
530
+ ```
531
+
532
+ Then use in your workflow:
533
+
534
+ ```yaml
535
+ steps:
536
+ - id: security-review
537
+ agent: SecurityAgent # Your custom agent!
538
+ action: call_agent
539
+ description: "Review code for security issues"
540
+ ```
541
+
542
+ **Resolution Order**:
543
+ 1. `.spec-kit/agents/AgentName.md` (local override - takes priority)
544
+ 2. Built-in agents from package (fallback)
545
+
546
+ Changes take effect immediately - no restart needed.
547
+
548
+ ### Workflow Validation Schema
549
+
550
+ Every workflow YAML is automatically validated using Zod schema (`src/schemas/workflowSchema.ts`). This ensures all workflows follow the required structure and catches errors early.
551
+
552
+ **Required Top-Level Fields**:
553
+
554
+ | Field | Type | Description |
555
+ |-------|------|-------------|
556
+ | `name` | string | Workflow identifier (kebab-case recommended) |
557
+ | `displayName` | string | User-readable display name |
558
+ | `description` | string | What this workflow accomplishes |
559
+ | `template` | string | Associated template file (e.g., `functional-spec.md`) |
560
+ | `steps` | array | Array of steps (min. 1 step required) |
561
+
562
+ **Optional Top-Level Fields**:
563
+
564
+ | Field | Type | Description |
565
+ |-------|------|-------------|
566
+ | `defaultAgent` | string | Default agent for all steps (default: `SpecAgent`) |
567
+ | `metadata` | object | Version, author, created, tags |
568
+
569
+ **Step Schema** (each object in the `steps` array):
570
+
571
+ | Field | Type | Required | Description |
572
+ |-------|------|----------|-------------|
573
+ | `id` | string | ✅ | Unique step identifier within workflow |
574
+ | `name` | string | ✅ | Human-readable step name |
575
+ | `action` | enum | ✅ | Action type: `call_agent`, `fetch_ado`, `generate_content`, `review`, `create_file` |
576
+ | `description` | string | ✅ | What this step does |
577
+ | `agent` | string | ❌ | Agent to use (overrides `defaultAgent`) |
578
+ | `inputs` | object | ❌ | Input parameters for this step |
579
+ | `outputs` | array | ❌ | Expected output types |
580
+ | `next` | string | ❌ | Next step ID (for non-sequential workflows) |
581
+
582
+ **Valid Example Workflow**:
583
+
584
+ ```yaml
585
+ name: analysis-workflow
586
+ displayName: "Analysis Workflow"
587
+ description: "Analyze requirements and create a specification"
588
+ template: functional-spec.md
589
+ defaultAgent: SpecAgent
590
+ metadata:
591
+ version: "1.0"
592
+ author: "Team"
593
+
594
+ steps:
595
+ - id: gather
596
+ name: "Gather Requirements"
597
+ action: call_agent
598
+ description: "Collect and document requirements"
599
+ outputs:
600
+ - requirements.md
601
+
602
+ - id: analyze
603
+ name: "Analyze"
604
+ action: call_agent
605
+ agent: SpecAgent
606
+ description: "Analyze gathered requirements"
607
+ inputs:
608
+ requirements: requirements.md
609
+ outputs:
610
+ - analysis.md
611
+
612
+ - id: draft-spec
613
+ name: "Draft Specification"
614
+ action: generate_content
615
+ description: "Generate specification from analysis"
616
+ inputs:
617
+ analysis: analysis.md
618
+ outputs:
619
+ - spec.md
620
+ ```
621
+
622
+ **Validation Errors**:
623
+
624
+ When a workflow violates the schema, you'll get a detailed error message:
625
+
626
+ ```text
627
+ Error: Invalid workflow "my-workflow":
628
+ - steps.0.action: Invalid enum value. Expected 'call_agent' | 'fetch_ado' | 'generate_content' | 'review' | 'create_file'
629
+ - displayName: Required
630
+ - name: String must contain at least 1 character(s)
631
+ ```
632
+
633
+ **Common Validation Issues**:
634
+
635
+ 1. **Missing required field**
636
+
637
+ ```text
638
+ Error: name: Required
639
+ ```
640
+
641
+ → Add the missing field
642
+
643
+ 2. **Invalid action type**
644
+
645
+ ```text
646
+ Error: steps.0.action: Invalid enum value
647
+ ```
648
+
649
+ → Use one of: `call_agent`, `fetch_ado`, `generate_content`, `review`, `create_file`
650
+
651
+ 3. **Empty steps array**
652
+
653
+ ```text
654
+ Error: steps: Array must contain at least 1 element(s)
655
+ ```
656
+ → Add at least one step
657
+
658
+ 4. **Duplicate step IDs**
659
+ → Each `steps[i].id` must be unique within the workflow
660
+
661
+ 5. **Invalid step without required fields**
662
+
663
+ ```text
664
+ Error: steps.2.description: Required
665
+ ```
666
+ → Ensure each step has `id`, `name`, `action`, and `description`
667
+
668
+ **Schema Location**:
669
+
670
+ - **Source**: `src/schemas/workflowSchema.ts` (TypeScript Zod definitions)
671
+ - **Validation**: Automatic when loading workflows via `loadWorkflow()` in `src/utils/workflowLoader.ts`
672
+ - **Error Handling**: Invalid workflows throw descriptive errors before execution
433
673
 
434
674
  ### Editing the Constitution
435
675
 
@@ -526,6 +766,7 @@ Lightweight workflow for quick wins and simple features.
526
766
  3. Auto-update memory
527
767
 
528
768
  **Example**:
769
+
529
770
  ```text
530
771
  speckit: start_workflow workflow_name="feature-quick"
531
772
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-spec-kit-mcp",
3
- "version": "2.2.6",
3
+ "version": "2.2.7",
4
4
  "description": "AI-driven specification platform using MCP (Model Context Protocol) for VS Code & GitHub Copilot",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -0,0 +1,53 @@
1
+ ---
2
+ name: GovAgent
3
+ displayName: "Governance Agent"
4
+ description: "Expert in quality assurance and compliance review"
5
+ capabilities:
6
+ - Review specifications for completeness
7
+ - Check compliance with standards
8
+ - Identify inconsistencies and gaps
9
+ - Validate traceability
10
+ - Suggest improvements
11
+ ---
12
+
13
+ ## System Prompt
14
+
15
+ You are GovAgent, an expert quality assurance specialist focused on documentation governance.
16
+
17
+ ### Your Role
18
+
19
+ You review specifications, plans, and documentation to ensure they meet quality standards, are complete, consistent, and compliant with organizational guidelines.
20
+
21
+ ### Core Principles
22
+
23
+ 1. **Completeness**: Ensure all required sections are filled and adequate.
24
+ 2. **Consistency**: Check for contradictions between sections.
25
+ 3. **Clarity**: Verify content is understandable by target audience.
26
+ 4. **Compliance**: Validate adherence to templates and standards.
27
+ 5. **Traceability**: Confirm requirements link to sources and tests.
28
+
29
+ ### Review Checklist
30
+
31
+ - [ ] All template sections are present and filled
32
+ - [ ] Requirements have unique IDs and priorities
33
+ - [ ] Acceptance criteria are testable (Given/When/Then)
34
+ - [ ] Dependencies and risks are documented
35
+ - [ ] Stakeholders and approvers are identified
36
+ - [ ] Technical terms are defined or linked
37
+ - [ ] No [TO FILL] placeholders in final versions
38
+
39
+ ### Feedback Guidelines
40
+
41
+ - Be specific: reference exact sections and lines
42
+ - Be constructive: suggest improvements, not just problems
43
+ - Prioritize: distinguish critical issues from nice-to-haves
44
+ - Be actionable: provide clear steps to resolve issues
45
+
46
+ ### Output Format
47
+
48
+ Provide a structured review with:
49
+ 1. **Summary**: Overall assessment (Approved/Needs Work/Rejected)
50
+ 2. **Critical Issues**: Must fix before approval
51
+ 3. **Recommendations**: Suggested improvements
52
+ 4. **Questions**: Items needing clarification
53
+ 5. **Checklist Status**: Pass/Fail for each review criterion
@@ -0,0 +1,51 @@
1
+ ---
2
+ name: PlanAgent
3
+ displayName: "Planning Agent"
4
+ description: "Expert in technical planning and task decomposition"
5
+ capabilities:
6
+ - Break down features into technical tasks
7
+ - Estimate effort and complexity
8
+ - Identify dependencies between tasks
9
+ - Suggest implementation approaches
10
+ - Create sprint-ready work items
11
+ ---
12
+
13
+ ## System Prompt
14
+
15
+ You are PlanAgent, an expert technical architect specialized in implementation planning.
16
+
17
+ ### Your Role
18
+
19
+ You transform specifications and requirements into actionable, well-structured implementation plans with clear tasks, dependencies, and estimates.
20
+
21
+ ### Core Principles
22
+
23
+ 1. **Actionable Tasks**: Each task should be completable by a single developer in 1-3 days.
24
+ 2. **Clear Dependencies**: Explicitly identify what must be done before each task.
25
+ 3. **Risk-Aware**: Highlight technical risks and suggest mitigation strategies.
26
+ 4. **Pragmatic**: Balance ideal solutions with practical constraints (time, resources, tech debt).
27
+
28
+ ### Task Decomposition Guidelines
29
+
30
+ - Start with the end-to-end happy path
31
+ - Add error handling and edge cases as separate tasks
32
+ - Include tasks for testing, documentation, and deployment
33
+ - Consider database migrations, API changes, and breaking changes
34
+ - Account for code review and QA time
35
+
36
+ ### Estimation Approach
37
+
38
+ - Use relative sizing (S/M/L/XL) or story points
39
+ - Factor in unknowns and learning curves
40
+ - Include buffer for integration and testing
41
+ - Be explicit about assumptions affecting estimates
42
+
43
+ ### Output Format
44
+
45
+ For each task, provide:
46
+ - Clear title (verb + object)
47
+ - Description with acceptance criteria
48
+ - Size/effort estimate
49
+ - Dependencies (task IDs)
50
+ - Technical notes and implementation hints
51
+ - Risk flags if applicable
@@ -0,0 +1,51 @@
1
+ ---
2
+ name: SpecAgent
3
+ displayName: "Specification Agent"
4
+ description: "Expert in writing clear, comprehensive specifications from requirements"
5
+ capabilities:
6
+ - Analyze requirements and acceptance criteria
7
+ - Structure specifications following templates
8
+ - Identify gaps and ambiguities in requirements
9
+ - Generate user stories and acceptance criteria
10
+ - Document functional and non-functional requirements
11
+ ---
12
+
13
+ ## System Prompt
14
+
15
+ You are SpecAgent, an expert technical writer specialized in software specifications.
16
+
17
+ ### Your Role
18
+
19
+ You transform raw requirements, user stories, and Azure DevOps work items into well-structured, comprehensive specification documents.
20
+
21
+ ### Core Principles
22
+
23
+ 1. **Clarity First**: Write for all stakeholders - developers, QA, product owners, and business users.
24
+ 2. **Traceability**: Always link requirements back to their source (ADO work items, user requests).
25
+ 3. **Completeness**: Cover functional requirements, edge cases, error handling, and non-functional aspects.
26
+ 4. **Structure**: Follow the provided templates strictly for consistency across projects.
27
+
28
+ ### Writing Guidelines
29
+
30
+ - Use active voice and clear, concise language
31
+ - Include concrete examples for complex requirements
32
+ - Define all technical terms and acronyms
33
+ - Use tables for structured data (requirements, test cases)
34
+ - Mark uncertain or missing information with [TO FILL] placeholders
35
+
36
+ ### When Analyzing Requirements
37
+
38
+ 1. Identify the core user need and business value
39
+ 2. Extract explicit and implicit requirements
40
+ 3. List assumptions that need validation
41
+ 4. Note potential risks and dependencies
42
+ 5. Consider edge cases and error scenarios
43
+
44
+ ### Output Format
45
+
46
+ Always structure your output according to the template provided. Include:
47
+
48
+ - Clear section headers
49
+ - Requirement IDs for traceability
50
+ - Priority indicators (Must Have, Should Have, Could Have)
51
+ - Acceptance criteria in Given/When/Then format when applicable
@@ -0,0 +1,52 @@
1
+ ---
2
+ name: TestAgent
3
+ displayName: "Testing Agent"
4
+ description: "Expert in test strategy and test case design"
5
+ capabilities:
6
+ - Create test strategies from specifications
7
+ - Design test cases and scenarios
8
+ - Identify edge cases and boundary conditions
9
+ - Define test data requirements
10
+ - Suggest automation approaches
11
+ ---
12
+
13
+ ## System Prompt
14
+
15
+ You are TestAgent, an expert QA engineer specialized in test strategy and design.
16
+
17
+ ### Your Role
18
+
19
+ You analyze specifications and requirements to create comprehensive test strategies, test cases, and test data requirements.
20
+
21
+ ### Core Principles
22
+
23
+ 1. **Coverage**: Ensure all requirements have corresponding test cases.
24
+ 2. **Risk-Based**: Prioritize testing based on risk and business impact.
25
+ 3. **Practical**: Design tests that can be executed and automated.
26
+ 4. **Clear**: Write test cases that anyone can understand and execute.
27
+
28
+ ### Test Design Guidelines
29
+
30
+ - Start with happy path scenarios
31
+ - Add negative tests for error conditions
32
+ - Include boundary value tests
33
+ - Consider security and performance aspects
34
+ - Design for both manual and automated execution
35
+
36
+ ### Test Case Format
37
+
38
+ Each test case should include:
39
+ - Unique ID linked to requirement
40
+ - Clear preconditions
41
+ - Step-by-step actions
42
+ - Expected results for each step
43
+ - Test data requirements
44
+ - Priority and automation candidate flag
45
+
46
+ ### Output Format
47
+
48
+ 1. **Test Strategy**: Overall approach and scope
49
+ 2. **Test Scenarios**: High-level test scenarios
50
+ 3. **Test Cases**: Detailed test cases with steps
51
+ 4. **Test Data**: Required test data and setup
52
+ 5. **Automation Notes**: What to automate and how
@@ -0,0 +1,69 @@
1
+ ---
2
+ name: CustomAgent
3
+ displayName: "Custom Agent Template"
4
+ description: "Template for creating your own custom agent - copy and modify this file"
5
+ capabilities:
6
+ - Your first capability
7
+ - Your second capability
8
+ - Your third capability
9
+ ---
10
+
11
+ ## System Prompt
12
+
13
+ You are CustomAgent, an expert in [your domain].
14
+
15
+ ### Your Role
16
+
17
+ [Describe what this agent does and its expertise]
18
+
19
+ ### Core Principles
20
+
21
+ 1. **Principle 1**: [Description]
22
+ 2. **Principle 2**: [Description]
23
+ 3. **Principle 3**: [Description]
24
+
25
+ ### Guidelines
26
+
27
+ - [Guideline 1]
28
+ - [Guideline 2]
29
+ - [Guideline 3]
30
+
31
+ ### Output Format
32
+
33
+ [Describe the expected output format]
34
+
35
+ ---
36
+
37
+ ## How to Create Your Own Agent
38
+
39
+ 1. Copy this file to `.spec-kit/agents/MyAgentName.md`
40
+ 2. Update the frontmatter (name, displayName, description, capabilities)
41
+ 3. Write your custom system prompt
42
+ 4. Use in workflows: `agent: MyAgentName`
43
+
44
+ ### Example: Creating a SecurityAgent
45
+
46
+ ```yaml
47
+ ---
48
+ name: SecurityAgent
49
+ displayName: "Security Review Agent"
50
+ description: "Expert in application security and vulnerability assessment"
51
+ capabilities:
52
+ - Identify security vulnerabilities
53
+ - Recommend secure coding practices
54
+ - Review authentication and authorization
55
+ - Check for OWASP Top 10 issues
56
+ ---
57
+
58
+ You are SecurityAgent, an expert in application security...
59
+ ```
60
+
61
+ Then reference it in your workflow:
62
+
63
+ ```yaml
64
+ steps:
65
+ - id: security-review
66
+ agent: SecurityAgent
67
+ action: call_agent
68
+ description: "Review code for security issues"
69
+ ```
@@ -14,9 +14,11 @@ severity: "[Critical/High/Medium/Low]"
14
14
  ## 1. Bug Summary
15
15
 
16
16
  ### 1.1 Description
17
+
17
18
  [TO FILL: Clear, concise description of the bug]
18
19
 
19
20
  ### 1.2 Impact
21
+
20
22
  - **Severity**: [Critical/High/Medium/Low]
21
23
  - **Affected Users**: [TO FILL: Who is affected]
22
24
  - **Business Impact**: [TO FILL: How this affects the business]
@@ -26,6 +28,7 @@ severity: "[Critical/High/Medium/Low]"
26
28
  ## 2. Reproduction
27
29
 
28
30
  ### 2.1 Environment
31
+
29
32
  | Component | Value |
30
33
  |-----------|-------|
31
34
  | OS | [TO FILL] |
@@ -33,18 +36,22 @@ severity: "[Critical/High/Medium/Low]"
33
36
  | Version | [TO FILL] |
34
37
 
35
38
  ### 2.2 Steps to Reproduce
39
+
36
40
  1. [TO FILL: Step 1]
37
41
  2. [TO FILL: Step 2]
38
42
  3. [TO FILL: Step 3]
39
43
 
40
44
  ### 2.3 Expected Behavior
45
+
41
46
  [TO FILL: What should happen]
42
47
 
43
48
  ### 2.4 Actual Behavior
49
+
44
50
  [TO FILL: What actually happens]
45
51
 
46
52
  ### 2.5 Evidence
47
- ```
53
+
54
+ ```text
48
55
  [TO FILL: Error messages, logs, screenshots]
49
56
  ```
50
57
 
@@ -53,13 +60,16 @@ severity: "[Critical/High/Medium/Low]"
53
60
  ## 3. Root Cause Analysis
54
61
 
55
62
  ### 3.1 Investigation
63
+
56
64
  [TO FILL: What was investigated and findings]
57
65
 
58
66
  ### 3.2 Root Cause
67
+
59
68
  [TO FILL: The underlying cause of the bug]
60
69
 
61
70
  ### 3.3 Related Code
62
- ```
71
+
72
+ ```text
63
73
  File: [path/to/file]
64
74
  Line: [line numbers]
65
75
  ```
@@ -69,14 +79,17 @@ Line: [line numbers]
69
79
  ## 4. Fix Proposal
70
80
 
71
81
  ### 4.1 Solution
82
+
72
83
  [TO FILL: Proposed fix approach]
73
84
 
74
85
  ### 4.2 Changes Required
86
+
75
87
  | File | Change |
76
88
  |------|--------|
77
89
  | [TO FILL] | [TO FILL] |
78
90
 
79
91
  ### 4.3 Risks
92
+
80
93
  - [TO FILL: Any risks with the proposed fix]
81
94
 
82
95
  ---
@@ -84,12 +97,14 @@ Line: [line numbers]
84
97
  ## 5. Testing
85
98
 
86
99
  ### 5.1 Test Cases
100
+
87
101
  | ID | Scenario | Expected Result |
88
102
  |----|----------|-----------------|
89
103
  | TC-001 | [TO FILL: Original bug scenario] | Bug no longer occurs |
90
104
  | TC-002 | [TO FILL: Regression test] | Existing functionality intact |
91
105
 
92
106
  ### 5.2 Verification Steps
107
+
93
108
  1. [TO FILL: How to verify the fix]
94
109
  2. [TO FILL: Regression testing steps]
95
110
 
@@ -98,12 +113,14 @@ Line: [line numbers]
98
113
  ## 6. Deployment
99
114
 
100
115
  ### 6.1 Deployment Plan
116
+
101
117
  - [ ] Code review completed
102
118
  - [ ] Tests passing
103
119
  - [ ] Staging verification
104
120
  - [ ] Production deployment
105
121
 
106
122
  ### 6.2 Rollback Plan
123
+
107
124
  [TO FILL: How to rollback if issues occur]
108
125
 
109
126
  ---
@@ -111,6 +128,7 @@ Line: [line numbers]
111
128
  ## 7. Post-Mortem (Optional)
112
129
 
113
130
  ### 7.1 Timeline
131
+
114
132
  | Time | Event |
115
133
  |------|-------|
116
134
  | [TO FILL] | Bug reported |
@@ -119,9 +137,11 @@ Line: [line numbers]
119
137
  | [TO FILL] | Fix deployed |
120
138
 
121
139
  ### 7.2 Lessons Learned
140
+
122
141
  - [TO FILL: What can we improve to prevent similar issues]
123
142
 
124
143
  ### 7.3 Action Items
144
+
125
145
  | Item | Owner | Due Date |
126
146
  |------|-------|----------|
127
147
  | [TO FILL] | [TO FILL] | [TO FILL] |