Initial wiki scaffold
5c00efa63adb wikihub 2026-04-10 6 files
5c00efa63adb83d897a852e8de1539b21f6a0318
new file mode 100644
index 0000000..8ad04bd
@@ -0,0 +1,16 @@
+# wikihub ACL — declarative access control for this wiki.
+#
+# Rules are glob patterns. Most-specific pattern wins. Default is private.
+#
+# Visibility: private | public | public-edit | unlisted | unlisted-edit
+# Grants: @user:read | @user:edit
+#
+# Examples:
+# * private # everything private (the default)
+# wiki/** public # publish the wiki/ subtree
+# wiki/secret.md private # override: this one stays private
+# wiki/collab.md public-edit # anyone can edit this page
+# drafts/** unlisted # accessible by URL, not indexed
+#
+
+* private
new file mode 100644
index 0000000..f07c22c
@@ -0,0 +1,3 @@
+# ideas
+
+welcome to your wiki.
new file mode 100644
index 0000000..7137c34
@@ -0,0 +1,3 @@
+# log
+
+chronological updates and decisions.
new file mode 100644
index 0000000..e69de29
new file mode 100644
index 0000000..9ba9192
@@ -0,0 +1,17 @@
+# schema
+
+this wiki has no imposed structure. pages are markdown files with optional YAML frontmatter.
+
+## frontmatter
+
+```yaml
+---
+title: Page Title
+visibility: public | private | unlisted
+tags: [topic1, topic2]
+---
+```
+
+## wikilinks
+
+link pages with `[[page-name]]` or `[[page-name|Display Text]]`. links resolve by filename — `[[linear-algebra]]` finds `wiki/courses/linear-algebra.md`.
new file mode 100644
index 0000000..e69de29