# Design Docs
[残業も減らせる!? 上級エンジニアになるためのDesign Doc超入門:プロジェクト成功確率向上の近道とは?(3)(1/3 ページ) - @IT](https://atmarkit.itmedia.co.jp/ait/articles/1606/21/news016.html)
## Design Docs + Cursor
[CursorとDesign Docで実現する漸進的なアーキテクチャ改善 - LayerX エンジニアブログ](https://tech.layerx.co.jp/entry/chocoyama/2024/12/23)
`.cursor/settings.json` の custom instructions と project context で Design Docs を指定しておく。
```json
{
"customInstructions": {
"includeFiles": [
"docs/*.md",
"README.md"
],
"projectContext": {
"documentationPaths": [
"docs/",
"README.md"
]
}
}
}
```