this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

zsh: tn (new task) script: simple scaffolding for the task file

+11 -1
+11 -1
zsh/zshenv
··· 62 62 task_dir="$TASKS_DIR/${task_desc}" 63 63 mkdir -p "$task_dir" 64 64 65 - touch "$task_dir/TASK.md" 65 + cat >"$task_dir/TASK.md" <<'EOF' 66 + ## Background 67 + 68 + ## Goals 69 + 70 + # Non-Goals 71 + 72 + ## Questions 73 + 74 + ## Progress 75 + EOF 66 76 cd "$task_dir" || { 67 77 echo "failed to cd: ${task_dir}" 68 78 return 1