We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f765bce commit b596b8aCopy full SHA for b596b8a
README.md
@@ -74,7 +74,7 @@ Each folder in `loop/Week-X/` should contain a `pacer.yaml` or markdown journal
74
→ Serve `outputs/` as public-facing artifacts
75
76
3. **Loop Structure**
77
- - New loop via CLI (Recommend) `python scripts/smos.py week-01 --topic="Memory & Pointers"`
+ - New loop via CLI (Recommend) `python scripts/smos.py week-01-c --topic="Memory & Pointers"`
78
- Drop notes into `docs/`
79
- Write blockers / insight logs in `logs/`
80
- Launch a loop via `loop/week-01/pacer.yaml`, `loop/week-01/claim.md`, `loop/week-01/reflect.md`
scripts/smos.py
@@ -61,14 +61,13 @@ def init_loop(loop_id, topic):
61
os.makedirs("docs", exist_ok=True)
62
os.makedirs("logs", exist_ok=True)
63
os.makedirs("outputs", exist_ok=True)
64
+ os.makedirs(f"outputs/{loop_id}", exist_ok=True)
65
66
create_file(
67
f"docs/{loop_id}.md",
68
TEMPLATE_NOTE.format(loop_id=loop_id, topic=topic),
69
)
- create_file(
70
- f"logs/{today}-{loop_id}-log.md", TEMPLATE_LOG.format(today=today)
71
- )
+ create_file(f"logs/{today}-{loop_id}.md", TEMPLATE_LOG.format(today=today))
72
73
f"loop/{loop_id}/pacer.yaml",
TEMPLATE_PACER.format(loop_id=loop_id, topic=topic, today=today),
@@ -82,7 +81,7 @@ def init_loop(loop_id, topic):
82
81
TEMPLATE_REFLECT.format(loop_id=loop_id, topic=topic),
83
84
85
- f"outputs/{loop_id}-output.md",
+ f"outputs/{loop_id}/{loop_id}-output.md",
86
TEMPLATE_OUTPUT.format(loop_id=loop_id, topic=topic, today=today),
87
88
0 commit comments