Skip to content

Commit 2322674

Browse files
committed
site
1 parent 06a10cf commit 2322674

7 files changed

Lines changed: 84 additions & 182 deletions

File tree

.github/workflows/jekyll-gh-pages.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,23 @@ jobs:
4040
git diff --staged --quiet || git commit -m "Bump version to ${{ steps.version.outputs.VERSION }} [skip ci]"
4141
git push
4242
43+
- name: Copy README to github-pages
44+
run: |
45+
echo '---
46+
layout: default
47+
title: MCAF Guide
48+
nav_order: 1
49+
---
50+
' > github-pages/index.md
51+
cat README.md >> github-pages/index.md
52+
4353
- name: Setup Pages
4454
uses: actions/configure-pages@v5
4555

4656
- name: Build with Jekyll
4757
uses: actions/jekyll-build-pages@v1
4858
with:
49-
source: ./
59+
source: ./github-pages
5060
destination: ./_site
5161

5262
- name: Upload artifact

_config.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

docs/home.md

Lines changed: 0 additions & 88 deletions
This file was deleted.

github-pages/_config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
title: MCAF
2+
description: Managed Code Coding AI Framework
3+
remote_theme: just-the-docs/just-the-docs@v0.10.0
4+
plugins:
5+
- jekyll-remote-theme
6+
- jekyll-seo-tag
7+
8+
color_scheme: dark
9+
10+
gh_edit_link: true
11+
gh_edit_link_text: "Edit on GitHub"
12+
gh_edit_repository: "https://github.com/managedcode/MCAF"
13+
gh_edit_branch: "main"
14+
15+
nav_enabled: true
16+
search_enabled: true
17+
back_to_top: true
18+
19+
exclude:
20+
- Gemfile
21+
- Gemfile.lock

github-pages/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: default
3+
title: MCAF Guide
4+
nav_order: 1
5+
---
6+
7+
<!-- This file is auto-generated from README.md during build -->

github-pages/templates.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
layout: default
3+
title: Templates
4+
nav_order: 2
5+
---
6+
7+
# Templates
8+
9+
Copy these templates to your project and customize them.
10+
11+
---
12+
13+
## AGENTS.md
14+
15+
Agent instructions template for your repository root.
16+
17+
[View on GitHub](https://github.com/managedcode/MCAF/blob/main/docs/templates/AGENTS.md){: .btn .btn-primary }
18+
[Download](https://raw.githubusercontent.com/managedcode/MCAF/main/docs/templates/AGENTS.md){: .btn }
19+
20+
---
21+
22+
## Feature Template
23+
24+
Feature specification template for `docs/Features/`.
25+
26+
[View on GitHub](https://github.com/managedcode/MCAF/blob/main/docs/templates/Feature-Template.md){: .btn .btn-primary }
27+
[Download](https://raw.githubusercontent.com/managedcode/MCAF/main/docs/templates/Feature-Template.md){: .btn }
28+
29+
---
30+
31+
## ADR Template
32+
33+
Architecture Decision Record template for `docs/ADR/`.
34+
35+
[View on GitHub](https://github.com/managedcode/MCAF/blob/main/docs/templates/ADR-Template.md){: .btn .btn-primary }
36+
[Download](https://raw.githubusercontent.com/managedcode/MCAF/main/docs/templates/ADR-Template.md){: .btn }
37+
38+
---
39+
40+
## CLAUDE.md
41+
42+
Simple file that references AGENTS.md for Claude Code.
43+
44+
[View on GitHub](https://github.com/managedcode/MCAF/blob/main/docs/templates/CLAUDE.md){: .btn .btn-primary }
45+
[Download](https://raw.githubusercontent.com/managedcode/MCAF/main/docs/templates/CLAUDE.md){: .btn }

index.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)