From 5454a98f96b34b3bf2a1fb9812098bd948001ef7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 21:57:45 +0000 Subject: [PATCH 1/2] Initial plan From 5c450ea90743d1775b240fd48b91811e9be8e868 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 21:59:00 +0000 Subject: [PATCH 2/2] doc: add wiki enable instructions to agentic-wiki-writer and agentic-wiki-coder docs Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com> --- docs/agentic-wiki-coder.md | 7 ++++++- docs/agentic-wiki-writer.md | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/agentic-wiki-coder.md b/docs/agentic-wiki-coder.md index c40553e..c6e416b 100644 --- a/docs/agentic-wiki-coder.md +++ b/docs/agentic-wiki-coder.md @@ -55,7 +55,12 @@ It does **not** open a PR for typo fixes, formatting changes, or clarifications ### Setup -This workflow requires your repository to have a wiki enabled. It pairs naturally with [Agentic Wiki Writer](agentic-wiki-writer.md) to create a full bidirectional documentation loop. +This workflow requires your repository to have a wiki enabled and initialized: + +1. **Enable the wiki**: Go to your repository's **Settings** → **Features** and check the **Wikis** checkbox. +2. **Initialize the wiki**: Go to the **Wiki** tab and create a blank page (e.g. "Home"). GitHub does not create the underlying wiki git repository until at least one page exists. + +It pairs naturally with [Agentic Wiki Writer](agentic-wiki-writer.md) to create a full bidirectional documentation loop. After editing the workflow file, run `gh aw compile` to update the compiled workflow and commit all changes to the default branch. diff --git a/docs/agentic-wiki-writer.md b/docs/agentic-wiki-writer.md index d8ed4bc..239ebca 100644 --- a/docs/agentic-wiki-writer.md +++ b/docs/agentic-wiki-writer.md @@ -7,7 +7,9 @@ The [Agentic Wiki Writer workflow](../workflows/agentic-wiki-writer.md?plain=1) keeps your project's GitHub wiki synchronized with the codebase. Once a day (if any pull requests were merged to the default branch), it reads a `PAGES.md` template to understand what to document, then writes wiki pages directly from the source code. You can also trigger it manually on demand. > [!WARNING] -> **The repository wiki must be initialized before running this workflow.** GitHub does not create the wiki git repository until at least one page exists. Go to your repository's **Wiki** tab and create a blank page (e.g. "Home") to initialize it. The workflow will fail with a git clone error if this step is skipped. +> **The repository wiki must be enabled and initialized before running this workflow.** +> 1. **Enable the wiki**: Go to your repository's **Settings** → **Features** and check the **Wikis** checkbox. +> 2. **Initialize the wiki**: Go to the **Wiki** tab and create a blank page (e.g. "Home"). GitHub does not create the underlying wiki git repository until at least one page exists. The workflow will fail with a git clone error if this step is skipped. ## Installation