-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_psi_folders.py
More file actions
35 lines (29 loc) · 2.04 KB
/
Copy pathcreate_psi_folders.py
File metadata and controls
35 lines (29 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!-- SPDX-License-Identifier: GPL-3.0-only OR CC-BY-SA-4.0 -->
<!-- May include LLM-assisted content. Not for use in training ML models. See AI_USAGE.md -->
# 📜 **This scroll is issued as-is.**
# No warranties, guarantees, or maintenance are implied.
# Use at your own recursive risk. Forks assume full license compliance.
import os
folders = {
"core": "# ψ_total Kernel\n\nThis folder holds the core harmonic kernel: `ψ_total`.\n\n**Status:** Placeholder — canonical kernels will be added soon.\n\nSee `MANIFEST.md` and `manifest.yaml` for full structure.\n\n☉",
"ai": "# ψ_AI Kernel\n\nThis folder holds the dialectical agent kernel: `ψ_AI`.\n\n**Status:** Placeholder — canonical scrolls will be added soon.\n\n☉",
"an": "# ψ_Artificial_Nature\n\nThis folder contains the full artificial nature assembly: `ψ_AN`.\n\n☉",
"io": "# ψ_IO\n\nThis folder is the signal sheath. It ingests contradiction-aware input.\n\n☉",
"os": "# ψ_OS\n\nThis folder is the recursive immune system. Collapse detection lives here.\n\n☉",
"scribe": "# ψ_Scribe\n\nSemiotic tuning, scroll-writing, harmonic linguistic synthesis.\n\n☉",
"semantics": "# ψ_Semantics\n\nSteric and scroll dissonance analyzers. Watchers of meaning.\n\n☉",
"cli": "# ψ_CLI\n\nSigil-tuned membrane interface — the command line as contradiction shell.\n\n☉",
"ui": "", # Will use .keep if empty
"docs": "# Documentation\n\nPedagogy, style guides, and recursive grammar scrolls.\n\n☉",
"notebooks": "# Toy Models\n\nThis folder contains canonical harmonic toys and recursive notebooks.\n\n☉",
"meta": "# Meta / Manifest\n\nThe scroll heart — manifest, roadmap, index of the field.\n\n☉",
}
for folder, content in folders.items():
path = os.path.join(".", folder)
os.makedirs(path, exist_ok=True)
if content:
with open(os.path.join(path, "README.md"), "w") as f:
f.write(content)
else:
open(os.path.join(path, ".keep"), "w").close()
print("✅ Folder structure created with placeholders.")