-
Notifications
You must be signed in to change notification settings - Fork 2
DeepWiki Mirror
| Source | URL |
|---|---|
| Private Devin Wiki | https://app.devin.ai/org/timerloggedout-spec/wiki/timerloggedout-spec/termux-monorepo |
| Public DeepWiki | https://deepwiki.com/timerloggedout-spec/termux-monorepo |
Devin generates structured docs (architecture, modules, diagrams). GitHub Wiki is a separate git repo (*.wiki.git) of Markdown pages. There is no official one-click sync; this repo uses a folder + Action pattern.
-
Source of truth in-repo: the
wiki/directory (Markdown pages). -
Publisher:
.github/workflows/publish-wiki.ymlrunsAndrew-Chen-Wang/github-wiki-action@v5on pushes tomaster/master-stagingthat touchwiki/**, or via workflow_dispatch. -
Target: the repository’s GitHub Wiki (
https://github.com/timerloggedout-spec/termux-monorepo/wiki).
GitHub only creates the *.wiki.git backend after the first wiki page exists:
- Open the repo → Wiki tab.
- Create any page (e.g. title
Home, bodybootstrap). - Merge this feature branch (or push
wiki/tomaster). - Run Actions → Publish wiki → Run workflow (or push any change under
wiki/).
If the first Action run fails because the wiki was empty, temporarily set strategy: init in the workflow (force-push), run once, then switch back to strategy: clone.
Private Devin Wiki pages are not exposed to the public DeepWiki MCP without indexing/auth. Practical refresh paths:
-
Manual / browser
Open the Devin Wiki, export or copy pages (Chrome “DeepWiki to Markdown” extensions exist), save aswiki/<Page-Title>.md. -
CLI exporters (public DeepWiki once indexed)
dw2md timerloggedout-spec/termux-monorepo -o /tmp/out.md- Other tools:
deepwiki-to-md, interactive exporters on GitHub.
-
Ask Devin
In a Devin session: “Export the current wiki pages for this repo as Markdown files suitable for a GitHub Wiki (Home.md + one file per page).” Commit the result underwiki/. -
Conventions
-
Home.mdis the landing page (notREADME.md). - Filenames become titles (
My-Page.md→ “My Page”). - Avoid
\ / : * ? " < > |in titles. - Mermaid fenced blocks usually render.
- Prefer relative wiki links:
[Architecture](Architecture).
-
Optional repo file .devin/wiki.json (repo notes + optional explicit pages list) steers regeneration inside Devin. That does not automatically update this GitHub Wiki; re-export into wiki/ after regenerating.
- Workflow:
.github/workflows/publish-wiki.yml - Action docs: https://github.com/Andrew-Chen-Wang/github-wiki-action