44 lines
817 B
Markdown
44 lines
817 B
Markdown
---
|
|
id:
|
|
aliases: []
|
|
tags:
|
|
- destiny/fleeting
|
|
- occupational
|
|
- type/task
|
|
- topic/meta
|
|
title: Refactor System Scripts
|
|
dg-publish: true
|
|
---
|
|
# Refactor System Scripts
|
|
|
|
Currently, each system script is structured as follows:
|
|
|
|
```markdown
|
|
# System
|
|
## Info
|
|
## Sequence
|
|
### 1. Preparation
|
|
### 2. Takeoff
|
|
### 3. Review
|
|
```
|
|
|
|
This structure is flawed
|
|
because it separates prep and review by system,
|
|
which is at odds with optimal workflow.
|
|
|
|
The structure to implement is as follows:
|
|
|
|
```markdown
|
|
# System
|
|
## Info
|
|
## Takeoff
|
|
```
|
|
|
|
with useful and unique content from `### 1. Preparation` and `### 3. Review`
|
|
consolidated in [[pre-takeoff-research]] and [[takeoff-review]] respectively.
|
|
|
|
It should be considered if `## Info` can also be removed,
|
|
replaced with callouts and embeds in the script.
|
|
|
|
![[pdi-estimating-systems]]
|