vault backup: 2025-10-21 17:03:44

This commit is contained in:
2025-10-21 17:03:45 -04:00
parent b17a17aed2
commit 558d6afb95
28 changed files with 638 additions and 62 deletions
+41
View File
@@ -0,0 +1,41 @@
---
id:
aliases: []
tags:
- destiny/fleeting
- occupational
- status/incomplete
- type/task
title: Refactor System Scripts
---
# 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.