Skip to content

Commit c0e5a38

Browse files
[Docs] Add _config.yml to explicitly include .well-known directory
Create _config.yml file in site directory to ensure Jekyll includes the .well-known directory. This complements the .nojekyll file and ensures the skills discovery infrastructure is properly deployed. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 52f705f commit c0e5a38

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/docs/hooks.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ def on_post_build(config):
116116
with open(nojekyll_path, "w") as f:
117117
f.write("")
118118

119+
# Create _config.yml to explicitly include .well-known directory
120+
# This ensures Jekyll (if it runs) includes the .well-known directory
121+
config_yml_path = os.path.join(site_dir, "_config.yml")
122+
with open(config_yml_path, "w") as f:
123+
f.write('include: [".well-known"]\n')
124+
119125
for root, _, files in os.walk(docs_dir):
120126
for file in files:
121127
if not file.endswith(".md"):

0 commit comments

Comments
 (0)