create-specment 0.3.0 → 0.4.1

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.
package/README.md CHANGED
@@ -1,13 +1,37 @@
1
1
  # create-specment
2
2
 
3
- [![NPM Package](.github/images/icons/npm-badge.svg)](https://www.npmjs.com/package/@plenarc/create-specment)
4
- [![MIT License](.github/images/icons/license-badge.svg)](LICENSE)
3
+ [![npm version][npm-image]][npm-url]
4
+ [![npm downlads][npm-downloads-image]][npm-url]
5
+ [![License][license-image]][license-url]
5
6
 
6
7
  [English](README.md) | [日本語](README-jp.md)
7
8
 
8
9
  Demo: https://plenarc.github.io/specment/
9
10
 
10
- Interactive project generator specialized for creating Docusaurus-based specification documentation
11
+ 1. 'specification' + 'document' => Specment
12
+ 1. A site generation tool specializing in creating specification documents based on Docusaurus
13
+
14
+ <div align="center">
15
+ <table>
16
+ <tr>
17
+ <td align="center">
18
+ <img src=".github/images/screenshots/overview.png" alt="Project Overview" width="250" />
19
+ <br>
20
+ <em>Example: Project Overview</em>
21
+ </td>
22
+ <td align="center">
23
+ <img src=".github/images/screenshots/as-is.png" alt="As-Is Current State Analysis" width="250" />
24
+ <br>
25
+ <em>Example: As-Is Current State Analysis</em>
26
+ </td>
27
+ <td align="center">
28
+ <img src=".github/images/screenshots/redoc.png" alt="As-Is Current State Analysis" width="250" />
29
+ <br>
30
+ <em>Example: Redoc (OpenAPI)</em>
31
+ </td>
32
+ </tr>
33
+ </table>
34
+ </div>
11
35
 
12
36
  ## Overview
13
37
 
@@ -16,7 +40,7 @@ Interactive project generator specialized for creating Docusaurus-based specific
16
40
  ## Features
17
41
 
18
42
  1. 🚀 **Interactive Setup**: Generate projects by simply answering questions
19
- 1. 📋 **4 Specialized Templates**: Choose optimal templates based on your use case
43
+ 1. 📋 **5 Specialized Templates**: Choose optimal templates based on your use case
20
44
  1. 🔧 **Feature Selection**: Select PlantUML, Redoc, search, multilingual support, and more
21
45
  1. 📝 **Variable Substitution**: Automatically replace project names and author information
22
46
  1. 🎨 **Docusaurus Compatible**: Fully compatible with the existing Docusaurus ecosystem
@@ -37,15 +61,22 @@ The following software must be installed:
37
61
  ```
38
62
 
39
63
  1. **mise (development environment management tool)**
40
-
41
- ```bash
42
- # Install mise (Linux/macOS/WSL)
43
- curl https://mise.run | sh
44
-
45
- # Update shell configuration
46
- echo 'eval "$(mise activate bash)"' >> ~/.bashrc
47
- source ~/.bashrc
48
- ```
64
+ 1. Linux/macOS/WSL
65
+ ```bash
66
+ curl https://mise.run | sh
67
+
68
+ # Update shell configuration
69
+ echo 'eval "$(mise activate bash)"' >> ~/.bashrc
70
+ source ~/.bashrc
71
+ ```
72
+ 1. brew
73
+ ```bash
74
+ brew install mise
75
+ ```
76
+ 1. Version check
77
+ ```bash
78
+ mise --version
79
+ ```
49
80
 
50
81
  1. **Node.js (LTS or higher recommended, installation via mise recommended)**
51
82
 
@@ -70,143 +101,197 @@ The following software must be installed:
70
101
 
71
102
  ### Installation Methods
72
103
 
104
+ 1. For details on each option, see [Option Details](#option-details)
105
+
73
106
  #### Method 1: Using ni (Recommended)
74
107
 
75
108
  ```bash
76
- # Create project using ni
77
- nlx create-specment@latest my-docs
78
- cd my-docs
109
+ # Create project using ni (interactive setup will start)
110
+ nlx create-specment@latest
111
+ ```
79
112
 
80
- # Install dependencies using ni
81
- ni
113
+ After execution, the following options will be displayed, so select the necessary documents and features:
82
114
 
83
- # Start development server using ni
84
- nr start
115
+ ```bash
116
+ ◆ Please select display language / 表示言語を選択してください:
117
+ │ ● English
118
+ │ ○ 日本語
119
+
120
+
121
+ ┌ 🚀 Welcome to create-specment!
122
+ Creating a new Docusaurus-based specification documentation project...
123
+
124
+ ◆ Enter folder name (project name):
125
+ │ _
126
+
127
+
128
+ ◆ Which templates would you like to use? (Multiple selection)
129
+ │ ◻ Project Analysis
130
+ │ ◻ Requirements Specification
131
+ │ ◻ External Design
132
+ │ ◻ Internal Design
133
+ │ ◻ API (Using Redocusaurus)
134
+
135
+
136
+ ◆ Which additional features would you like to include?
137
+ │ ◻ PlantUML
138
+ │ ◻ Mermaid
139
+
85
140
  ```
86
141
 
87
- #### Method 2: Using npx
142
+ Once creation is complete, change to the folder and start in development mode after installation:
88
143
 
89
144
  ```bash
90
- # Create project using the latest version
91
- npx create-specment@latest my-docs
92
-
93
- # Specify a specific template
94
- npx create-specment@latest my-docs --template api-spec
145
+ cd <folder-name> && ni && nr start
95
146
  ```
96
147
 
97
- #### Method 3: Global Installation
148
+ #### Method 2: Using npx
98
149
 
99
150
  ```bash
100
- # Install globally
101
- npm install -g create-specment
102
-
103
- # Create project
104
- create-specment my-docs
151
+ # Start setup
152
+ npx create-specment@latest
105
153
  ```
106
154
 
107
- ### Basic Usage
155
+ 1. For option details, see Method 1
108
156
 
109
- 1. **Create Project**
157
+ ## Interactive Setup
110
158
 
111
- ```bash
112
- nlx create-specment@latest my-docs
113
- cd my-docs
114
- ```
159
+ When you run `create-specment`, the following options will be displayed sequentially:
115
160
 
116
- 1. **Interactive Setup**
161
+ ### 1. Display Language Selection
117
162
 
118
- Configure your project by answering the following questions:
163
+ ```
164
+ ◆ Please select display language / 表示言語を選択してください:
165
+ │ ● English
166
+ │ ○ 日本語
167
+ ```
119
168
 
120
- 1. **Language Selection**: Choose display language (English/Japanese)
121
- 1. **Project Name**: Name of your documentation site
122
- 1. **Template Selection**: Choose templates based on your use case (multiple selection)
123
- 1. **Feature Selection**: Select the features you need
169
+ 1. Select the display language for the interface
170
+ 1. Subsequent questions will be displayed in the selected language
124
171
 
125
- 1. **Start Development Server**
172
+ ### 2. Project Name Input
126
173
 
127
- ```bash
128
- # Install dependencies (if not automatically executed)
129
- ni
174
+ ```
175
+ Enter folder name (project name):
176
+ │ _
177
+ ```
130
178
 
131
- # Start development server
132
- nr start
133
- ```
179
+ 1. Enter the folder name for the project to be created
180
+ 1. This name will become the project directory name
134
181
 
135
- 1. **Build and Deploy**
182
+ ### 3. Template Selection (Multiple selection possible)
136
183
 
137
- ```bash
138
- # Production build
139
- nr build
184
+ ```
185
+ Which templates would you like to use? (Multiple selection)
186
+ ◻ Project Analysis (Provides structure for understanding project overview)
187
+ │ ◻ Requirements Specification
188
+ │ ◻ External Design
189
+ │ ◻ Internal Design
190
+ │ ◻ API (Using Redocusaurus)
191
+ ```
140
192
 
141
- # Local preview
142
- nr serve
143
- ```
193
+ 1. Multiple templates can be selected simultaneously
194
+ 1. Each template is generated as an independent section
195
+ 1. At least one template must be selected
144
196
 
145
- ## Template List
197
+ #### Project Analysis
146
198
 
147
- ### 1. Classic Specification (classic-spec)
148
- General-purpose specification template. Provides basic document structure.
199
+ Project overview and analysis template. Provides structure for understanding the overall picture of the project.
149
200
 
150
201
  **Use Cases**:
151
- 1. General technical specifications
152
- 1. Product specifications
153
- 1. Basic documentation creation
202
+ 1. Project proposals
203
+ 1. Current state analysis reports
204
+ 1. SWOT analysis documents
154
205
 
155
- ### 2. API Specification (api-spec)
156
- API specification template. Specialized for API documentation and OpenAPI specifications.
206
+ #### Requirements Specification
207
+ Requirements specification template. Allows systematic organization of functional and non-functional requirements.
157
208
 
158
209
  **Use Cases**:
159
- 1. REST API documentation
160
- 1. OpenAPI specifications
161
- 1. API reference guides
210
+ 1. System requirements specifications
211
+ 1. Functional specifications
212
+ 1. EARS format requirement descriptions
213
+
214
+ #### External Design
162
215
 
163
- ### 3. Technical Specification (technical-spec)
164
- Technical specification template. Focused on detailed technical documentation and system design.
216
+ External design specification template. Specialized for interface design with external systems.
165
217
 
166
218
  **Use Cases**:
167
- 1. System requirements documentation
168
- 1. Functional specifications
169
- 1. EARS format requirement descriptions
219
+ 1. System architecture design documents
220
+ 1. API design documents
221
+ 1. UI/UX design documents
222
+
223
+ #### Internal Design
170
224
 
171
- ### 4. Enterprise Specification (enterprise-spec)
172
- Enterprise specification template. Designed for large-scale enterprise documentation with comprehensive structure.
225
+ Internal design specification template. Specialized for detailed internal system design and algorithms.
173
226
 
174
227
  **Use Cases**:
175
- 1. Enterprise system architecture documentation
176
- 1. Comprehensive project documentation
177
- 1. Multi-stakeholder documentation
228
+ 1. Detailed design documents
229
+ 1. Database design documents
230
+ 1. Algorithm specifications
178
231
 
179
- ## Feature Selection
232
+ #### API
180
233
 
181
- ### PlantUML Integration
182
- Easily create UML diagrams and sequence diagrams.
234
+ 1. Using [Redocusaurus](https://github.com/rohit-gohri/redocusaurus), you can display YAML format files written in OpenAPI specifications
183
235
 
184
- ```plantuml
185
- @startuml
186
- Alice -> Bob: Hello
187
- Bob -> Alice: Hi!
188
- @enduml
236
+ ### 4. Additional Feature Selection
237
+
238
+ ```
239
+ Which additional features would you like to include?
240
+ │ ◻ PlantUML (PlantUML diagram integration (UML diagrams and flowcharts))
241
+ │ ◻ Mermaid
189
242
  ```
190
243
 
191
- ### Redoc Integration
192
- Beautifully display OpenAPI specifications.
244
+ 1. **PlantUML**: Adds functionality to create UML diagrams and flowcharts
245
+ 1. **Mermaid**: Adds functionality to create diagrams within Markdown
246
+ 1. Both can be selected
247
+
248
+ #### PlantUML
249
+
250
+ 1. You can use [PlantUML](https://plantuml.com/) for UML diagrams and sequence diagrams
251
+ 1. Uses the Docusaurus theme [create-specment](https://www.npmjs.com/package/create-specment)
252
+ 1. ※ Please refer to the README at the link for usage and precautions
253
+
254
+ #### Mermaid
255
+
256
+ 1. Uses the Docusaurus theme [theme-mermaid](https://docusaurus.io/docs/api/themes/@docusaurus/theme-mermaid)
193
257
 
194
- ### Multilingual Support
195
- Support for creating documentation in multiple languages.
258
+ #### Multilingual Support
259
+
260
+ TBD: Plans to support document creation in multiple languages (if requested)
196
261
 
197
262
  ## Command Line Options
198
263
 
199
264
  ```bash
200
265
  create-specment [project-name] [options]
201
266
 
267
+ Arguments:
268
+ project-name Folder name for the project to be created (optional)
269
+ When specified: Skip folder name input
270
+
202
271
  Options:
203
- --template <template> Template to use (classic-spec|api-spec|technical-spec|enterprise-spec)
272
+ -t, --template <template> Template to use (project-analysis|requirements|external-design|internal-design|api-spec)
204
273
  --skip-install Skip dependency installation
205
274
  --verbose Show detailed logs
206
275
  -h, --help Show help
207
276
  -V, --version Show version
208
277
  ```
209
278
 
279
+ ### Usage Examples
280
+
281
+ ```bash
282
+ # Complete interactive setup (all options will be displayed)
283
+ create-specment
284
+
285
+ # Specify folder name and interactive setup (skip folder name input)
286
+ create-specment my-docs
287
+
288
+ # Completely non-interactive (skip folder name and template selection)
289
+ create-specment my-docs --template requirements
290
+
291
+ # Specify template only (folder name input will be displayed)
292
+ create-specment --template api-spec
293
+ ```
294
+
210
295
  ## Troubleshooting
211
296
 
212
297
  ### Common Issues
@@ -269,28 +354,6 @@ nr start -- --port 3001
269
354
  1. The combination of mise + ni minimizes environment differences
270
355
  1. Running as a Linux environment within WSL provides an experience equivalent to macOS/Linux
271
356
 
272
- ## Development Environment Setup
273
-
274
- To participate in project development:
275
-
276
- ```bash
277
- # Clone repository
278
- git clone https://github.com/plenarc/create-specment.git
279
- cd create-specment
280
-
281
- # Install dependencies
282
- ni
283
-
284
- # Run in development mode
285
- nr dev
286
-
287
- # Run tests
288
- nr test
289
-
290
- # Build
291
- nr build
292
- ```
293
-
294
357
  ## License
295
358
 
296
359
  MIT License - See the [LICENSE](LICENSE) file for details.
@@ -305,10 +368,16 @@ We welcome contributions to the project! See [CONTRIBUTING.md](CONTRIBUTING.md)
305
368
  1. 💡 **Feature Requests**: [GitHub Discussions](https://github.com/plenarc/create-specment/discussions)
306
369
  1. 📖 **Documentation**: [Official Documentation](https://create-specment.dev)
307
370
 
308
- ## Related Projects
371
+ ## 関連プロジェクト
309
372
 
310
373
  1. [Docusaurus](https://docusaurus.io/) - Static site generator
311
374
  1. [mise](https://mise.jdx.dev/) - Development environment management tool
312
375
  1. [ni](https://github.com/antfu/ni) - Package manager unification tool
313
376
  1. [PlantUML](https://plantuml.com/) - UML diagram creation tool
314
377
  1. [Redoc](https://redocly.github.io/redoc/) - OpenAPI specification display tool
378
+
379
+ [npm-image]: https://img.shields.io/npm/v/create-specment.svg
380
+ [npm-url]: https://www.npmjs.com/package/create-specment
381
+ [npm-downloads-image]: https://img.shields.io/npm/dw/create-specment.svg
382
+ [license-image]: https://img.shields.io/github/license/plenarc/create-specment.svg
383
+ [license-url]: https://github.com/plenarc/create-specment/blob/main/LICENSE
@@ -52,27 +52,21 @@ export class InteractiveSetup {
52
52
  }
53
53
  }
54
54
  async getProjectName(initialName) {
55
- // Non-interactive mode with template option - still validate the name
56
- if (initialName && this.options.template) {
55
+ // If initialName is provided, validate and use it directly (skip prompt)
56
+ if (initialName) {
57
57
  // Validate the provided name
58
58
  if (!/^[a-zA-Z0-9-_]+$/.test(initialName)) {
59
59
  throw new Error(`Invalid project name: ${initialName}. Only alphanumeric characters, hyphens, and underscores are allowed`);
60
60
  }
61
61
  return initialName;
62
62
  }
63
- // If initialName is provided but no template, still validate
64
- if (initialName) {
65
- if (!/^[a-zA-Z0-9-_]+$/.test(initialName)) {
66
- throw new Error(`Invalid project name: ${initialName}. Only alphanumeric characters, hyphens, and underscores are allowed`);
67
- }
68
- }
69
63
  const isEn = this.selectedLanguage === LANG.EN.code;
70
64
  const folderName = await text({
71
65
  message: isEn ? 'Enter folder name (project name):' : '作成先のフォルダー名(プロジェクト名)を入力してください:',
72
- defaultValue: initialName || 'docs',
66
+ defaultValue: 'docs',
73
67
  validate: (value) => {
74
68
  if (!value.trim()) {
75
- return isEn ? 'Folder name is required' : 'フォルダー名';
69
+ return isEn ? 'Folder name is required' : 'フォルダー名が必要です';
76
70
  }
77
71
  if (!/^[a-zA-Z0-9-_]+$/.test(value)) {
78
72
  return isEn
@@ -1 +1 @@
1
- {"version":3,"file":"interactive-setup.js","sourceRoot":"","sources":["../../src/core/interactive-setup.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"interactive-setup.js","sourceRoot":"","sources":["../../src/core/interactive-setup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAOlF,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,IAAI,EAAiB,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAExD,MAAM,OAAO,gBAAgB;IAG3B,YAAoB,OAA8B;QAA9B,YAAO,GAAP,OAAO,CAAuB;QAF1C,qBAAgB,GAAa,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;IAEG,CAAC;IAEtD,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,gBAAgB,CAAC;IAC/B,CAAC;IAED,KAAK,CAAC,GAAG,CAAC,kBAA2B;QACnC,qBAAqB;QACrB,MAAM,IAAI,CAAC,cAAc,EAAE,CAAC;QAE5B,UAAU;QACV,IAAI,CAAC,WAAW,EAAE,CAAC;QAEnB,6BAA6B;QAC7B,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC;QAClE,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,oBAAoB,EAAE,CAAC;QACpD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;QAE5D,OAAO;YACL,WAAW;YACX,SAAS;YACT,QAAQ;SACT,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,cAAc;QAC1B,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC;YAC5B,OAAO,EAAE,iDAAiD;YAC1D,OAAO,EAAE;gBACP,EAAE,KAAK,EAAE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE;gBAC7C,EAAE,KAAK,EAAE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE;aAC9C;SACF,CAAC,CAAC;QAEH,IAAI,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;YACvB,MAAM,IAAI,kBAAkB,EAAE,CAAC;QACjC,CAAC;QAED,IAAI,CAAC,gBAAgB,GAAG,QAAoB,CAAC;IAC/C,CAAC;IAEO,WAAW;QACjB,OAAO,CAAC,GAAG,EAAE,CAAC;QACd,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;QACpD,IAAI,IAAI,EAAE,CAAC;YACT,KAAK,CAAC,gCAAgC,CAAC,CAAC;YACxC,OAAO,CAAC,GAAG,CAAC,0EAA0E,CAAC,CAAC;QAC1F,CAAC;aAAM,CAAC;YACN,KAAK,CAAC,0BAA0B,CAAC,CAAC;YAClC,OAAO,CAAC,GAAG,CAAC,0CAA0C,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,cAAc,CAAC,WAAoB;QAC/C,yEAAyE;QACzE,IAAI,WAAW,EAAE,CAAC;YAChB,6BAA6B;YAC7B,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;gBAC1C,MAAM,IAAI,KAAK,CACb,yBAAyB,WAAW,sEAAsE,CAC3G,CAAC;YACJ,CAAC;YACD,OAAO,WAAW,CAAC;QACrB,CAAC;QAED,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;QACpD,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC;YAC5B,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,mCAAmC,CAAC,CAAC,CAAC,+BAA+B;YACrF,YAAY,EAAE,MAAM;YACpB,QAAQ,EAAE,CAAC,KAAa,EAAE,EAAE;gBAC1B,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC;oBAClB,OAAO,IAAI,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,aAAa,CAAC;gBAC1D,CAAC;gBACD,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;oBACpC,OAAO,IAAI;wBACT,CAAC,CAAC,oEAAoE;wBACtE,CAAC,CAAC,0BAA0B,CAAC;gBACjC,CAAC;YACH,CAAC;SACF,CAAC,CAAC;QAEH,IAAI,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;YACzB,MAAM,IAAI,kBAAkB,EAAE,CAAC;QACjC,CAAC;QAED,OAAO,UAAU,CAAC;IACpB,CAAC;IAEO,KAAK,CAAC,oBAAoB;QAChC,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;YAC1B,MAAM,SAAS,GAAG,qBAAqB,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;YAC/D,MAAM,QAAQ,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;YACzE,IAAI,CAAC,QAAQ,EAAE,CAAC;gBACd,MAAM,IAAI,KAAK,CAAC,aAAa,IAAI,CAAC,OAAO,CAAC,QAAQ,aAAa,CAAC,CAAC;YACnE,CAAC;YACD,OAAO,CAAC,QAAQ,CAAC,CAAC;QACpB,CAAC;QAED,MAAM,SAAS,GAAG,qBAAqB,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAE/D,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC3B,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;QAC5C,CAAC;QAED,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;QACpD,MAAM,qBAAqB,GAAG,MAAM,WAAW,CAAC;YAC9C,OAAO,EAAE,IAAI;gBACX,CAAC,CAAC,6DAA6D;gBAC/D,CAAC,CAAC,yBAAyB;YAC7B,OAAO,EAAE,SAAS,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;gBACpC,KAAK,EAAE,QAAQ,CAAC,IAAI;gBACpB,KAAK,EAAE,QAAQ,CAAC,WAAW;gBAC3B,IAAI,EAAE,QAAQ,CAAC,WAAW;aAC3B,CAAC,CAAC;YACH,QAAQ,EAAE,IAAI;SACf,CAAC,CAAC;QAEH,IAAI,QAAQ,CAAC,qBAAqB,CAAC,EAAE,CAAC;YACpC,MAAM,IAAI,kBAAkB,EAAE,CAAC;QACjC,CAAC;QAED,MAAM,iBAAiB,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;QAC1F,IAAI,iBAAiB,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACnC,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC3C,CAAC;QAED,qDAAqD;QACrD,MAAM,WAAW,GAAG,IAAI,GAAG,EAAU,CAAC;QACtC,KAAK,MAAM,QAAQ,IAAI,iBAAiB,EAAE,CAAC;YACzC,KAAK,MAAM,OAAO,IAAI,QAAQ,CAAC,QAAQ,EAAE,CAAC;gBACxC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;YAC3B,CAAC;QACH,CAAC;QAED,IAAI,CACF,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC;aACpB,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,KAAK,OAAO,EAAE,CAAC;aAChC,IAAI,CAAC,IAAI,CAAC,EACb,IAAI;YACF,CAAC,CAAC,2CAA2C;YAC7C,CAAC,CAAC,sBAAsB,CAC3B,CAAC;QAEF,OAAO,iBAAiB,CAAC;IAC3B,CAAC;IAEO,KAAK,CAAC,oBAAoB,CAAC,SAAyB;QAC1D,MAAM,iBAAiB,GAAG,oBAAoB,EAAE,CAAC;QAEjD,yDAAyD;QACzD,MAAM,oBAAoB,GAAG,IAAI,GAAG,EAAU,CAAC;QAC/C,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE,CAAC;YACjC,KAAK,MAAM,OAAO,IAAI,QAAQ,CAAC,QAAQ,EAAE,CAAC;gBACxC,oBAAoB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;YACpC,CAAC;QACH,CAAC;QAED,2BAA2B;QAC3B,MAAM,cAAc,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,UAAU,CAAC,CAAC;QAChF,MAAM,mBAAmB,GAAG,IAAI,GAAG,EAAU,CAAC;QAE9C,IAAI,cAAc,EAAE,CAAC;YACnB,sCAAsC;YACtC,mBAAmB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QACnC,CAAC;QAED,qBAAqB;QACrB,MAAM,iBAAiB,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,EAAE,CAC7D,oBAAoB,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CACjF,CAAC;QAEF,IAAI,iBAAiB,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACnC,OAAO,iBAAiB,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;gBACzC,GAAG,OAAO;gBACV,OAAO,EAAE,mBAAmB,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC;aAC/C,CAAC,CAAC,CAAC;QACN,CAAC;QAED,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;QACpD,MAAM,gBAAgB,GAAG,MAAM,WAAW,CAAC;YACzC,OAAO,EAAE,IAAI;gBACX,CAAC,CAAC,sDAAsD;gBACxD,CAAC,CAAC,eAAe;YACnB,OAAO,EAAE,iBAAiB,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;gBAC3C,KAAK,EAAE,OAAO,CAAC,IAAI;gBACnB,KAAK,EAAE,OAAO,CAAC,WAAW;gBAC1B,IAAI,EAAE,OAAO,CAAC,WAAW;aAC1B,CAAC,CAAC;YACH,QAAQ,EAAE,KAAK;SAChB,CAAC,CAAC;QAEH,IAAI,QAAQ,CAAC,gBAAgB,CAAC,EAAE,CAAC;YAC/B,MAAM,IAAI,kBAAkB,EAAE,CAAC;QACjC,CAAC;QAED,OAAO,iBAAiB,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;YACzC,GAAG,OAAO;YACV,OAAO,EAAE,gBAAgB,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,mBAAmB,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC;SAC1F,CAAC,CAAC,CAAC;IACN,CAAC;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-specment",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Interactive CLI tool for creating Docusaurus-based specification documentation projects",
5
5
  "type": "module",
6
6
  "author": "Plenarc",
@@ -3,7 +3,7 @@ sidebar_position: 4
3
3
  tags:
4
4
  - As-Is
5
5
  ---
6
- import TBD from '@site/src/components/TBD';
6
+ import { TBD } from '@site/src/components/TBD';
7
7
 
8
8
  # As-Is - 現状分析
9
9
 
@@ -3,7 +3,7 @@ sidebar_position: 99
3
3
  tags:
4
4
  - Glossary
5
5
  ---
6
- import TBD from '@site/src/components/TBD';
6
+ import { TBD } from '@site/src/components/TBD';
7
7
 
8
8
  # Glossary - 用語集
9
9
 
@@ -14,8 +14,8 @@ TBDの使い方
14
14
  -->
15
15
 
16
16
  ## 使い方ガイド {#how-to-use}
17
- 1. 用語は **アルファベット順 → かな順 → その他** の順番で並べる
18
- 1. 別名・略語は `(別名: xxx)` と括弧書きで追記
17
+ 1. 用語は **アルファベット順 → かな順 → その他** の順番で並べる
18
+ 1. 別名・略語は `(別名: xxx)` と括弧書きで追記
19
19
 
20
20
  ## 用語一覧 {#glossary-list}
21
21
 
@@ -34,8 +34,8 @@ TBDの使い方
34
34
 
35
35
  ### BPMN
36
36
  1. Business Process Model and Notation。業務プロセス図の標準表記
37
- 1. PlantUML 等で描画可能
37
+ 1. PlantUML 等で描画可能
38
38
 
39
39
  ### キャパシティプランニング {#capacity-planning}
40
- 1. 将来の負荷増加を見越した資源計画
41
- 1. CPU / メモリ / IOPS など
40
+ 1. 将来の負荷増加を見越した資源計画
41
+ 1. CPU / メモリ / IOPS など
@@ -0,0 +1,303 @@
1
+ <svg host="65bd71144e" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="447px" height="342px" viewBox="-0.5 -0.5 447 342" content="&lt;mxfile&gt;&lt;diagram name=&quot;SWOT分析&quot; id=&quot;swot-analysis&quot;&gt;7VpRj6MqGP01JHvfBJTCozp2NzfZ7E26yTxbpdWslcYy25n76y9YaGtlZmfvqu0knYcOHkDKOXwH/CzA8eb5c5Nui68i5xVAXv4M8ANAaMaw+tTAywGgs+AArJsyP0DwBCzKf7kBPYM+lTnfdRpKISpZbrtgJuqaZ7KDpU0j9t1mK1F1R92ma94DFlla9dHHMpeFmQWanfAvvFwXdmRI2KFmk9rGZia7Is3F/gzCCcBxI4Q8lDbPMa80d5aXQ7/5K7XHL9bwWr6nAzp0+JlWT2Zu5nvJFzvZRjzVOdftPYCjfVFKvtimma7dK3UVVshNpa6gKq7KqopFJZq2L16tVijLFL6TjfjBz2pysiQBOdZYGhUBUX8OZlo/eSP58xlk5vSZiw2XzYtqYmuJ4dcsMGj53p/kQp7BinOpAgOmZomsj/c+sagKhkg3qXhcUvOU05WTVJJRvlyNRSq+Kqn+yKQGnOa+i1SKlphMtlLRbEpSg5HDn2bcHf5LGviBN9VKnZZU0ic1CUAUg2gGEgwoBNEcIFKpMaNlo0prXfq0kGrGa1ns/uppoKYtu0R3Ca1FzS/YN1BaletaXWaKTK7wSJNYqp0sNBWbMs/1ME5lu9qvRC3NXgyJvTZfEprrebopK836l7RWc4jVzq/+/f2PqT5bAV77N4ze6m5dZ8J9vYlDbjyA2rOe2ovb18+nr+h3JtADIgwmIwnkCEiXQP4AAlFHOM4Ai0CYgISAkALGQMJ0XDJfI1QhnonUMNKxG/ogtLFLH2zBEcQgoSBCIGyHoHE7RNtYD6EKCNDIFpAdIrn99QLRyAHsXRi242hxPG4MHcHsVb+Gb/n1I09/1Hy343fD/m29/Ssatn2IPNP78fYFfI9jw4R58/lICk3o2BD2FPody05cvqxMvO1o7PhovhYJw7tBv7UcrmnQ0JGl0MuAATYHia+tmoUOh/623YpGPtWlLO8m/eeHNkQnNOl+DuXb7Qv4HpNWNEZooOfcS4WwIypHM2lHQubkxCo0A/u8i1q79fUpiuLeefhDuuyVAvLChLFjTx7PhB25IvW0Q31Ag3Z7pVrFvgl/Lxqeyrv9/vEJbFL77eewvt++gO/KasTQV/MfRaFJ7befd3rTfp3n3w9/2r1SZF7Vh135LKx3VjYzhdBurhHTFq2EV7qqFaAfoLwPoK5/Ecbe/1CbkHigKD/ufPZldV9sNpbWrtTUQevESBz6BqHhXfThRPeh9yvRoesF0hCqW+e4SEhS0p60WBvhtE2IKLG91tqRBj+mxo2QqSyFvqt+TfdL0fOy4ZnpwNOdHHcdwAurhxMewpArDda+jGDkvg4mFB3b9+TDi64uTz/2aevOfjGFk/8A&lt;/diagram&gt;&lt;/mxfile&gt;">
2
+ <defs/>
3
+ <g>
4
+ <rect x="45" y="40" width="200" height="150" fill="#fff2cc" stroke="#d6b656" stroke-width="2" pointer-events="all"/>
5
+ <rect x="245" y="40" width="200" height="150" fill="#dae8fc" stroke="#6c8ebf" stroke-width="2" pointer-events="all"/>
6
+ <rect x="45" y="190" width="200" height="150" fill="#d5e8d4" stroke="#82b366" stroke-width="2" pointer-events="all"/>
7
+ <rect x="245" y="190" width="200" height="150" fill="#f8cecc" stroke="#b85450" stroke-width="2" pointer-events="all"/>
8
+ <rect x="115" y="50" width="60" height="30" fill="none" stroke="none" pointer-events="all"/>
9
+ <g transform="translate(-0.5 -0.5)">
10
+ <switch>
11
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
12
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 65px; margin-left: 116px;">
13
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
14
+ <div style="display: inline-block; font-size: 16px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
15
+ 強み
16
+ <br/>
17
+ (Strengths)
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </foreignObject>
22
+ <text x="145" y="70" fill="#000000" font-family="Han Code JP" font-size="16px" text-anchor="middle" font-weight="bold">
23
+ 強み(Streng...
24
+ </text>
25
+ </switch>
26
+ </g>
27
+ <rect x="115" y="90" width="60" height="40" fill="none" stroke="none" pointer-events="all"/>
28
+ <g transform="translate(-0.5 -0.5)">
29
+ <switch>
30
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
31
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 110px; margin-left: 116px;">
32
+ <div data-drawio-colors="color: #D2691E; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
33
+ <div style="display: inline-block; font-size: 48px; font-family: Helvetica; color: rgb(210, 105, 30); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
34
+ S
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </foreignObject>
39
+ <text x="145" y="124" fill="#D2691E" font-family="Helvetica" font-size="48px" text-anchor="middle" font-weight="bold">
40
+ S
41
+ </text>
42
+ </switch>
43
+ </g>
44
+ <rect x="85" y="140" width="120" height="30" fill="none" stroke="none" pointer-events="all"/>
45
+ <g transform="translate(-0.5 -0.5)">
46
+ <switch>
47
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
48
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 155px; margin-left: 86px;">
49
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
50
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
51
+ 目標達成に大きく
52
+ <br/>
53
+ 貢献するもの
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </foreignObject>
58
+ <text x="145" y="159" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">
59
+ 目標達成に大きく
60
+ 貢献するもの
61
+ </text>
62
+ </switch>
63
+ </g>
64
+ <rect x="315" y="50" width="60" height="30" fill="none" stroke="none" pointer-events="all"/>
65
+ <g transform="translate(-0.5 -0.5)">
66
+ <switch>
67
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
68
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 65px; margin-left: 316px;">
69
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
70
+ <div style="display: inline-block; font-size: 16px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
71
+ 弱み
72
+ <br/>
73
+ (Weaknesses)
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </foreignObject>
78
+ <text x="345" y="70" fill="#000000" font-family="Han Code JP" font-size="16px" text-anchor="middle" font-weight="bold">
79
+ 弱み(Weakne...
80
+ </text>
81
+ </switch>
82
+ </g>
83
+ <rect x="315" y="90" width="60" height="40" fill="none" stroke="none" pointer-events="all"/>
84
+ <g transform="translate(-0.5 -0.5)">
85
+ <switch>
86
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
87
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 110px; margin-left: 316px;">
88
+ <div data-drawio-colors="color: #1E90FF; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
89
+ <div style="display: inline-block; font-size: 48px; font-family: Helvetica; color: rgb(30, 144, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
90
+ W
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </foreignObject>
95
+ <text x="345" y="124" fill="#1E90FF" font-family="Helvetica" font-size="48px" text-anchor="middle" font-weight="bold">
96
+ W
97
+ </text>
98
+ </switch>
99
+ </g>
100
+ <rect x="285" y="140" width="120" height="30" fill="none" stroke="none" pointer-events="all"/>
101
+ <g transform="translate(-0.5 -0.5)">
102
+ <switch>
103
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
104
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 155px; margin-left: 286px;">
105
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
106
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
107
+ 目標達成の
108
+ <br/>
109
+ 妨げとなるもの
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </foreignObject>
114
+ <text x="345" y="159" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">
115
+ 目標達成の
116
+ 妨げとなるもの
117
+ </text>
118
+ </switch>
119
+ </g>
120
+ <rect x="115" y="200" width="60" height="30" fill="none" stroke="none" pointer-events="all"/>
121
+ <g transform="translate(-0.5 -0.5)">
122
+ <switch>
123
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
124
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 215px; margin-left: 116px;">
125
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
126
+ <div style="display: inline-block; font-size: 16px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
127
+ 機会
128
+ <br/>
129
+ (Opportunities)
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </foreignObject>
134
+ <text x="145" y="220" fill="#000000" font-family="Han Code JP" font-size="16px" text-anchor="middle" font-weight="bold">
135
+ 機会(Opport...
136
+ </text>
137
+ </switch>
138
+ </g>
139
+ <rect x="115" y="240" width="60" height="40" fill="none" stroke="none" pointer-events="all"/>
140
+ <g transform="translate(-0.5 -0.5)">
141
+ <switch>
142
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
143
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 260px; margin-left: 116px;">
144
+ <div data-drawio-colors="color: #228B22; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
145
+ <div style="display: inline-block; font-size: 48px; font-family: Helvetica; color: rgb(34, 139, 34); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
146
+ O
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </foreignObject>
151
+ <text x="145" y="274" fill="#228B22" font-family="Helvetica" font-size="48px" text-anchor="middle" font-weight="bold">
152
+ O
153
+ </text>
154
+ </switch>
155
+ </g>
156
+ <rect x="85" y="290" width="120" height="30" fill="none" stroke="none" pointer-events="all"/>
157
+ <g transform="translate(-0.5 -0.5)">
158
+ <switch>
159
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
160
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 305px; margin-left: 86px;">
161
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
162
+ <div style="display: inline-block; font-size: 12px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
163
+ 成長を促すもの
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </foreignObject>
168
+ <text x="145" y="309" fill="#000000" font-family="Han Code JP" font-size="12px" text-anchor="middle">
169
+ 成長を促すもの
170
+ </text>
171
+ </switch>
172
+ </g>
173
+ <rect x="315" y="200" width="60" height="30" fill="none" stroke="none" pointer-events="all"/>
174
+ <g transform="translate(-0.5 -0.5)">
175
+ <switch>
176
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
177
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 215px; margin-left: 316px;">
178
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
179
+ <div style="display: inline-block; font-size: 16px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
180
+ 脅威
181
+ <br/>
182
+ (Threats)
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </foreignObject>
187
+ <text x="345" y="220" fill="#000000" font-family="Han Code JP" font-size="16px" text-anchor="middle" font-weight="bold">
188
+ 脅威(Threat...
189
+ </text>
190
+ </switch>
191
+ </g>
192
+ <rect x="315" y="240" width="60" height="40" fill="none" stroke="none" pointer-events="all"/>
193
+ <g transform="translate(-0.5 -0.5)">
194
+ <switch>
195
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
196
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 260px; margin-left: 316px;">
197
+ <div data-drawio-colors="color: #DC143C; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
198
+ <div style="display: inline-block; font-size: 48px; font-family: Helvetica; color: rgb(220, 20, 60); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">
199
+ T
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </foreignObject>
204
+ <text x="345" y="274" fill="#DC143C" font-family="Helvetica" font-size="48px" text-anchor="middle" font-weight="bold">
205
+ T
206
+ </text>
207
+ </switch>
208
+ </g>
209
+ <rect x="285" y="290" width="120" height="30" fill="none" stroke="none" pointer-events="all"/>
210
+ <g transform="translate(-0.5 -0.5)">
211
+ <switch>
212
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
213
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 305px; margin-left: 286px;">
214
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
215
+ <div style="display: inline-block; font-size: 12px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
216
+ 成長を妨げるもの
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </foreignObject>
221
+ <text x="345" y="309" fill="#000000" font-family="Han Code JP" font-size="12px" text-anchor="middle">
222
+ 成長を妨げるもの
223
+ </text>
224
+ </switch>
225
+ </g>
226
+ <rect x="100" y="0" width="90" height="30" fill="none" stroke="none" pointer-events="all"/>
227
+ <g transform="translate(-0.5 -0.5)">
228
+ <switch>
229
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
230
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 15px; margin-left: 101px;">
231
+ <div data-drawio-colors="color: #0066CC; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
232
+ <div style="display: inline-block; font-size: 14px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 102, 204); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
233
+ プラス要因
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </foreignObject>
238
+ <text x="145" y="19" fill="#0066CC" font-family="Han Code JP" font-size="14px" text-anchor="middle">
239
+ プラス要因
240
+ </text>
241
+ </switch>
242
+ </g>
243
+ <rect x="295" y="0" width="100" height="30" fill="none" stroke="none" pointer-events="all"/>
244
+ <g transform="translate(-0.5 -0.5)">
245
+ <switch>
246
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
247
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 15px; margin-left: 296px;">
248
+ <div data-drawio-colors="color: #0066CC; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
249
+ <div style="display: inline-block; font-size: 14px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 102, 204); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
250
+ マイナス要因
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </foreignObject>
255
+ <text x="345" y="19" fill="#0066CC" font-family="Han Code JP" font-size="14px" text-anchor="middle">
256
+ マイナス要因
257
+ </text>
258
+ </switch>
259
+ </g>
260
+ <rect x="-15" y="100" width="60" height="30" fill="none" stroke="none" transform="rotate(270,15,115)" pointer-events="all"/>
261
+ <g transform="translate(-0.5 -0.5)rotate(270 15 115)">
262
+ <switch>
263
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
264
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 115px; margin-left: -14px;">
265
+ <div data-drawio-colors="color: #0066CC; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
266
+ <div style="display: inline-block; font-size: 14px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 102, 204); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
267
+ 内部環境
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </foreignObject>
272
+ <text x="15" y="119" fill="#0066CC" font-family="Han Code JP" font-size="14px" text-anchor="middle">
273
+ 内部環境
274
+ </text>
275
+ </switch>
276
+ </g>
277
+ <rect x="-15" y="245" width="60" height="30" fill="none" stroke="none" transform="rotate(270,15,260)" pointer-events="all"/>
278
+ <g transform="translate(-0.5 -0.5)rotate(270 15 260)">
279
+ <switch>
280
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
281
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 260px; margin-left: -14px;">
282
+ <div data-drawio-colors="color: #0066CC; " style="box-sizing: border-box; font-size: 0px; text-align: center;">
283
+ <div style="display: inline-block; font-size: 14px; font-family: &quot;Han Code JP&quot;; color: rgb(0, 102, 204); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
284
+ 外部環境
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </foreignObject>
289
+ <text x="15" y="264" fill="#0066CC" font-family="Han Code JP" font-size="14px" text-anchor="middle">
290
+ 外部環境
291
+ </text>
292
+ </switch>
293
+ </g>
294
+ </g>
295
+ <switch>
296
+ <g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/>
297
+ <a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank">
298
+ <text text-anchor="middle" font-size="10px" x="50%" y="100%">
299
+ Text is not SVG - cannot display
300
+ </text>
301
+ </a>
302
+ </switch>
303
+ </svg>
@@ -19,12 +19,14 @@ tags:
19
19
  ```text
20
20
  01-overview/
21
21
  ├ index.mdx ← このファイル
22
+ ├ project-proposal.mdx ← プロジェクト企画書
22
23
  ├ project-charter.mdx ← 上位ビジョン・非ゴール
23
24
  ├ odsc.mdx ← 目的(o)・成果物(d)・成功基準(sc)
24
25
  ├ as-is.mdx ← 現状分析
26
+ ├ swot-analysis.mdx ← SWOT分析
25
27
  ├ to-be.mdx ← 目指すべき姿
26
28
  ├ scope.mdx ← 機能・非機能スコープ
27
- ├ business-context.mdx ← 市場・ユーザ・背景
29
+ ├ business-context.mdx ← 市場・ユーザー・背景
28
30
  ├ stakeholders.mdx ← 役割責任表・RACI
29
31
  ├ assumptions-constraints.mdx ← 前提条件・制約
30
32
  ├ gap-analysis.mdx ← ギャップ分析
@@ -3,7 +3,7 @@ sidebar_position: 3
3
3
  tags:
4
4
  - ODSC
5
5
  ---
6
- import TBD from '@site/src/components/TBD';
6
+ import { TBD } from '@site/src/components/TBD';
7
7
 
8
8
  # ODSC
9
9
 
@@ -0,0 +1,146 @@
1
+ ---
2
+ sidebar_position: 2
3
+ tags:
4
+ - Overview
5
+ ---
6
+ # プロジェクト企画書
7
+
8
+ ## プロジェクト概要
9
+
10
+ ### プロジェクト名
11
+
12
+ :::tip
13
+ プロジェクトの正式名称を記載
14
+ :::
15
+
16
+ ### プロジェクトの目的
17
+ :::tip
18
+ このプロジェクトを実施する理由と期待される成果を記載
19
+ :::
20
+
21
+ ### プロジェクトの背景
22
+ :::tip
23
+ プロジェクトが必要となった背景や課題を記載
24
+ :::
25
+
26
+ ## プロジェクトスコープ
27
+
28
+ ### 対象範囲
29
+ :::tip
30
+ プロジェクトで取り組む範囲を明確に定義
31
+ :::
32
+
33
+ ### 対象外範囲
34
+ :::tip
35
+ プロジェクトで取り組まない範囲を明確に定義
36
+ :::
37
+
38
+ ## 成果物
39
+
40
+ ### 主要成果物
41
+ :::tip
42
+ プロジェクトで作成・提供する主要な成果物をリスト化
43
+ :::
44
+
45
+ 1. 成果物1
46
+ 1. 成果物2
47
+ 1. 成果物3
48
+
49
+ ### 品質基準
50
+ :::tip
51
+ 成果物の品質基準や受入条件を記載
52
+ :::
53
+
54
+ ## プロジェクト体制
55
+
56
+ ### プロジェクトチーム
57
+ :::tip
58
+ プロジェクトメンバーの役割と責任を記載
59
+ :::
60
+
61
+ | 役割 | 担当者 | 責任範囲 |
62
+ |------|--------|----------|
63
+ | プロジェクトマネージャー | | |
64
+ | システムアーキテクト | | |
65
+ | 開発リーダー | | |
66
+ | 品質管理責任者 | | |
67
+
68
+ ### ステークホルダー
69
+ :::tip
70
+ プロジェクトに関わる関係者を記載
71
+ :::
72
+
73
+ ## スケジュール
74
+
75
+ ### マイルストーン
76
+ :::tip
77
+ 主要なマイルストーンと期日を記載
78
+ :::
79
+
80
+ | マイルストーン | 予定日 | 成果物 |
81
+ |----------------|--------|--------|
82
+ | 要件定義完了 | yyyy-mm-dd | 要件定義書 |
83
+ | 基本設計完了 | yyyy-mm-dd | 基本設計書 |
84
+ | 詳細設計完了 | yyyy-mm-dd | 詳細設計書 |
85
+ | 開発完了 | yyyy-mm-dd | システム |
86
+ | テスト完了 | yyyy-mm-dd | テスト結果報告書 |
87
+ | 本稼働開始 | yyyy-mm-dd | 運用開始 |
88
+
89
+ ### 重要な依存関係
90
+ :::tip
91
+ 他のプロジェクトやシステムとの依存関係を記載
92
+ :::
93
+
94
+ ## 予算
95
+
96
+ ### 概算費用
97
+ :::tip
98
+ プロジェクトの概算費用を記載
99
+ :::
100
+
101
+ | 項目 | 金額 | 備考 |
102
+ |------|------|------|
103
+ | 人件費 | ¥X,XXX,XXX | |
104
+ | 外部委託費 | ¥X,XXX,XXX | |
105
+ | ハードウェア費 | ¥X,XXX,XXX | |
106
+ | ソフトウェア費 | ¥X,XXX,XXX | |
107
+ | その他 | ¥X,XXX,XXX | |
108
+ | **合計** | **¥X,XXX,XXX** | |
109
+
110
+ ## リスクと対策
111
+
112
+ ### 主要リスク
113
+ :::tip
114
+ プロジェクトの主要なリスクと対策を記載
115
+ :::
116
+
117
+ | リスク | 影響度 | 発生確率 | 対策 |
118
+ |--------|--------|----------|------|
119
+ | 要件変更 | 高 | 中 | 変更管理プロセスの確立 |
120
+ | 技術的課題 | 高 | 低 | 技術検証の実施 |
121
+ | リソース不足 | 中 | 中 | 早期のリソース確保 |
122
+
123
+ ## 成功基準
124
+
125
+ ### KPI (Key Performance Indicators)
126
+ :::tip
127
+ プロジェクトの成功を測る指標を記載
128
+ :::
129
+
130
+ 1. スケジュール遵守率: XX%以上
131
+ 1. 予算遵守率: XX%以内
132
+ 1. 品質目標達成率: XX%以上
133
+ 1. ステークホルダー満足度: XX点以上
134
+
135
+ ## 承認
136
+
137
+ ### 承認者
138
+ :::tip
139
+ プロジェクト企画書の承認者を記載
140
+ :::
141
+
142
+ | 役職 | 氏名 | 承認日 | 署名 |
143
+ |------|------|--------|------|
144
+ | 事業部長 | | | |
145
+ | IT部長 | | | |
146
+ | プロジェクトスポンサー | | | |
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 12
2
+ sidebar_position: 7
3
3
  tags:
4
4
  - Overview
5
5
  - Roadmap
@@ -0,0 +1,199 @@
1
+ ---
2
+ sidebar_position: 5
3
+ tags:
4
+ - Overview
5
+ ---
6
+ # SWOT分析
7
+
8
+ ## 分析概要
9
+
10
+ ### 分析対象
11
+
12
+ :::tip
13
+ SWOT分析の対象となるプロジェクト、システム、組織などを記載
14
+ :::
15
+
16
+ ### 分析目的
17
+
18
+ :::tip
19
+ SWOT分析を実施する目的を記載
20
+ :::
21
+
22
+ ### 分析実施日
23
+
24
+ :::tip
25
+ 分析を実施した日付を記載
26
+ :::
27
+
28
+ ## SWOT分析フレームワーク
29
+
30
+ ![SWOT分析図](./img/swot.drawio.svg)
31
+
32
+ SWOT分析は、内部環境と外部環境をプラス要因とマイナス要因で分類し、4つの象限で分析するフレームワークです。
33
+
34
+ 1. **Strengths (強み)**: 内部環境のプラス要因 - 目標達成に大きく貢献するもの
35
+ 1. **Weaknesses (弱み)**: 内部環境のマイナス要因 - 目標達成の妨げとなるもの
36
+ 1. **Opportunities (機会)**: 外部環境のプラス要因 - 成長を促すもの
37
+ 1. **Threats (脅威)**: 外部環境のマイナス要因 - 成長を妨げるもの
38
+
39
+ ## SWOT分析結果
40
+
41
+ ### Strengths (強み)
42
+ <!-- 内部環境のプラス要因 -->
43
+
44
+ 1. **技術力**
45
+ 1. 高度な技術スキルを持つエンジニアチーム
46
+ 1. 最新技術への対応力
47
+ 1. **組織力**
48
+ 1. 効率的なプロジェクト管理体制
49
+ 1. チーム間の連携が良好
50
+ 1. **リソース**
51
+ 1. 十分な開発リソース
52
+ 1. 安定した予算確保
53
+ 1. **経験・実績**
54
+ 1. 類似プロジェクトの成功実績
55
+ 1. 豊富なドメイン知識
56
+
57
+ ### Weaknesses (弱み)
58
+ <!-- 内部環境のマイナス要因 -->
59
+
60
+ 1. **技術面**
61
+ 1. 特定技術領域での経験不足
62
+ 1. レガシーシステムとの連携課題
63
+ 1. **組織面**
64
+ 1. 新技術への対応体制不足
65
+ 1. ドキュメント化の不備
66
+ 1. **リソース面**
67
+ 1. 特定スキルを持つ人材不足
68
+ 1. 開発環境の制約
69
+ 1. **プロセス面**
70
+ 1. 品質管理プロセスの未整備
71
+ 1. 変更管理の仕組み不足
72
+
73
+ ### Opportunities (機会)
74
+ <!-- 外部環境のプラス要因 -->
75
+
76
+ 1. **市場環境**
77
+ 1. デジタル化需要の拡大
78
+ 1. 新しい技術トレンドの活用機会
79
+ 1. **技術環境**
80
+ 1. クラウドサービスの普及
81
+ 1. オープンソース技術の充実
82
+ 1. **ビジネス環境**
83
+ 1. 業界標準化の進展
84
+ 1. パートナー企業との連携機会
85
+ 1. **規制・制度**
86
+ 1. 政府のDX推進政策
87
+ 1. 業界ガイドラインの整備
88
+
89
+ ### Threats (脅威)
90
+ <!-- 外部環境のマイナス要因 -->
91
+
92
+ 1. **競合環境**
93
+ 1. 競合他社の技術力向上
94
+ 1. 新規参入企業の増加
95
+ 1. **技術環境**
96
+ 1. 技術の急速な変化
97
+ 1. セキュリティリスクの増大
98
+ 1. **市場環境**
99
+ 1. 経済情勢の悪化
100
+ 1. 顧客ニーズの変化
101
+ 1. **規制・制度**
102
+ 1. 新しい規制の導入
103
+ 1. コンプライアンス要求の厳格化
104
+
105
+ ## 戦略マトリックス
106
+
107
+ ### SO戦略 (強み × 機会)
108
+ <!-- 強みを活かして機会を捉える戦略 -->
109
+
110
+ 1. **技術力を活かした新サービス展開**
111
+ 1. 高度な技術力を活用してデジタル化需要に対応
112
+ 1. 最新技術トレンドを取り入れた革新的ソリューション提供
113
+ 1. **組織力を活かした市場拡大**
114
+ 1. 効率的なプロジェクト管理体制で迅速な市場対応
115
+ 1. パートナー企業との連携強化
116
+
117
+ ### WO戦略 (弱み × 機会)
118
+ <!-- 弱みを改善して機会を捉える戦略 -->
119
+
120
+ 1. **スキル強化による競争力向上**
121
+ 1. 新技術研修の実施
122
+ 1. 外部パートナーとの技術連携
123
+ 1. **プロセス改善による品質向上**
124
+ 1. 品質管理プロセスの標準化
125
+ 1. ドキュメント化の推進
126
+
127
+ ### ST戦略 (強み × 脅威)
128
+ <!-- 強みを活かして脅威を回避する戦略 -->
129
+
130
+ 1. **技術力による差別化**
131
+ 1. 競合他社との技術的差別化
132
+ 1. セキュリティ対策の強化
133
+ 1. **組織力による安定性確保**
134
+ 1. リスク管理体制の強化
135
+ 1. 顧客との長期的関係構築
136
+
137
+ ### WT戦略 (弱み × 脅威)
138
+ <!-- 弱みと脅威を最小化する戦略 -->
139
+
140
+ 1. **リスク軽減策の実施**
141
+ 1. 技術リスクの早期発見・対応
142
+ 1. コンプライアンス体制の整備
143
+ 1. **基盤強化による安定化**
144
+ 1. 人材育成の強化
145
+ 1. プロセス標準化の推進
146
+
147
+ ## アクションプラン
148
+
149
+ ### 短期施策 (3ヶ月以内)
150
+ <!-- 短期的に実施すべき施策 -->
151
+
152
+ 1. **技術スキル強化**
153
+ 1. 新技術研修の計画・実施
154
+ 1. 外部セミナーへの参加
155
+ 1. **プロセス改善**
156
+ 1. 品質管理プロセスの見直し
157
+ 1. ドキュメントテンプレートの整備
158
+
159
+ ### 中期施策 (6ヶ月以内)
160
+ <!-- 中期的に実施すべき施策 -->
161
+
162
+ 1. **組織体制強化**
163
+ 1. 専門チームの設立
164
+ 1. 人材採用計画の実行
165
+ 1. **パートナーシップ構築**
166
+ 1. 技術パートナーとの連携強化
167
+ 1. 新規パートナーの開拓
168
+
169
+ ### 長期施策 (1年以内)
170
+ <!-- 長期的に実施すべき施策 -->
171
+
172
+ 1. **戦略的投資**
173
+ 1. 新技術への投資
174
+ 1. 人材育成プログラムの確立
175
+ 1. **市場展開**
176
+ 1. 新市場への参入
177
+ 1. サービスラインナップの拡充
178
+
179
+ ## 評価・見直し
180
+
181
+ ### 評価指標
182
+ <!-- SWOT分析結果の評価指標 -->
183
+
184
+ 1. **技術力指標**
185
+ 1. 新技術習得率
186
+ 1. 技術的課題解決率
187
+ 1. **組織力指標**
188
+ 1. プロジェクト成功率
189
+ 1. チーム満足度
190
+ 1. **市場対応力指標**
191
+ 1. 新規案件獲得率
192
+ 1. 顧客満足度
193
+
194
+ ### 見直しサイクル
195
+ <!-- SWOT分析の見直し頻度とタイミング -->
196
+
197
+ 1. **四半期レビュー**: 戦略の進捗確認
198
+ 1. **半期レビュー**: SWOT要素の再評価
199
+ 1. **年次レビュー**: 全面的な分析見直し
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 13
2
+ sidebar_position: 8
3
3
  tags:
4
4
  - Overview
5
5
  - Architecture
@@ -1,9 +1,9 @@
1
1
  ---
2
- sidebar_position: 5
2
+ sidebar_position: 6
3
3
  tags:
4
4
  - To-Be
5
5
  ---
6
- import TBD from '@site/src/components/TBD';
6
+ import { TBD } from '@site/src/components/TBD';
7
7
 
8
8
  # To‑Be - 目指すべき姿
9
9
 
@@ -14,13 +14,13 @@ TBDの使い方
14
14
  -->
15
15
 
16
16
  ## 概要 {#target-overview}
17
- 1. 本章で示す「理想状態」と As‑Is との差分を概観する
17
+ 1. 本章で示す「理想状態」と As‑Is との差分を概観する
18
18
  1. ビジネス価値・ユーザ価値・システム観点を 1‒2 文でまとめる
19
19
 
20
20
  ## 改善後業務フロー {#business-flow}
21
21
 
22
22
  :::tip
23
- 1. BPMN やスイムレーン図で将来の業務プロセスを可視化
23
+ 1. BPMN やスイムレーン図で将来の業務プロセスを可視化
24
24
  1. PlantUML を直接埋め込むか、drawio・外部リンクでも可
25
25
  :::
26
26
 
@@ -88,11 +88,11 @@ Rel(web, cd, "HTTPS (static assets)")
88
88
 
89
89
  ## 移行方針・ロードマップ {#migration-strategy}
90
90
 
91
- 1. **フェーズ1: MVP**
91
+ 1. **フェーズ1: MVP**
92
92
  1. カタログ閲覧 + 決済 (限定 SKU)
93
- 1. **フェーズ2: Full Launch**
93
+ 1. **フェーズ2: Full Launch**
94
94
  1. 全 SKU 移行・レコメンド ON
95
- 1. **フェーズ3: Continuous Improvement**
95
+ 1. **フェーズ3: Continuous Improvement**
96
96
  1. A/B テスト・パフォーマンス最適化
97
97
 
98
98
  ## 期待効果・成功要因 {#expected-effects}