Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions design-docs/design-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
# Design: _Title here_
(Sub-Title: _one line description_)

---
* Author Name(s):
* Author Date:
* Feedback Due Date:
---

## Problem Statement

```
Clearly and succinctly write the problem statement. What problem is this design proposing to
solve and who is the intended audience / recipient of the benefit of the solution.

Describe WHY we need this. Briefly describe the need for this proposed feature to be
built and work be done for it.

This section focuses on the importance of an idea rather than on whether it is interesting. An
interesting idea is good, but not good enough. This method operates in terms of whether the
idea to be developed is sufficiently important.
```

---

## Stakeholders
```
Explicitly identify the stakeholders. Who does this project directly impact? Who has asked that
this work be done? This can range from product managers to other community projects.
Use “personas” and identify an accountable human(usu. PM).
Be as specific as possible. Consult with your stakeholders, get feedback from them.
These are the people who will have to agree on the acceptance criteria (below).

```
| Stakeholder | How are they impacted |
Comment on lines +34 to +35
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add blank line before the table.

The table should be surrounded by blank lines for proper Markdown rendering. Add a blank line between the closing code fence and the table.

📝 Proposed fix
 

| Stakeholder | How are they impacted |

</details>

<!-- suggestion_start -->

<details>
<summary>📝 Committable suggestion</summary>

> ‼️ **IMPORTANT**
> Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

```suggestion

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 35-35: Tables should be surrounded by blank lines

(MD058, blanks-around-tables)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@design-docs/design-template.md` around lines 34 - 35, Add a blank line
between the closing code fence (the ``` line) and the table header "|
Stakeholder    | How are they impacted |" in design-template.md so the Markdown
table is rendered correctly; locate the closing ``` immediately above that table
and insert a single empty line before the table row.

| -------------- | --------------------- |
| | |

---

## Acceptance Criteria

```
The definition of “done”. What are the specific criteria that when met mean that this feature is
implemented. This must be a very specific goal state or set of definitive verifiable goal states that
define the successful implementation of this feature.
(Think about this as the playbook of the final demonstration showing the desired functionality of this work)
```

---


## Solution Design and Architecture

```
How do you intend on addressing the need? Describe your main design proposal here and the rationale
behind the decisions you propose. Then lay out the plan of execution, in rough order of how the
execution should take place. Include the rollout plan as well. (This is usually the longest section
of this document!)

Hint: don’t be afraid of posting arch diagram/other illustrations! The level of detail here has to be
enough to give the reader a clear understanding of the solution - it is up to the writer to decide.
Further detail can be addressed to satisfy comments and increase clarity.
```

---

## Benefit

```
What are the benefits / merits of your proposed design? Tie the benefit directly back into the
solution of the Problem Statement. How does this benefit the client / user? How does the unique approach
yield unique customer benefits? Be specific. Remember, here you are communicating the value
of your proposed design.
```

---

## Competition (alternatives)

```
What other design options were considered? Give an honest treatment of why these alternatives were
not (as) satisfactory. Identify the competition and demonstrate that the competition is clearly
understood. Always consider, what if we do nothing (what are the true / probable consequences)?
```

---

## Non-goals

```
What are you not attempting to do? What is this proposal not about? What is explicity out-of-scope?
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix typo: "explicity" → "explicitly".

There's a spelling error in the guidance text.

✏️ Proposed fix
-What are you not attempting to do? What is this proposal not about? What is explicity out-of-scope? 
+What are you not attempting to do? What is this proposal not about? What is explicitly out-of-scope? 
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
What are you not attempting to do? What is this proposal not about? What is explicity out-of-scope?
What are you not attempting to do? What is this proposal not about? What is explicitly out-of-scope?
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@design-docs/design-template.md` at line 92, Replace the misspelled word
"explicity" with the correct spelling "explicitly" in the guidance string "What
are you not attempting to do? What is this proposal not about? What is explicity
out-of-scope?" so the sentence reads "...What is explicitly out-of-scope?";
locate that exact text in design-template.md and update the token.

```

---

## Key Dependencies and Open Questions

```
What are the open questions that may need to be explored? Be explicit and honest about any
“elephants in the room” and perhaps yet unstated assumptions made.
```
Loading