Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ jobs:
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
key: zensical-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
zensical-
- run: pip install zensical==0.0.46
- run: zensical build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
8 changes: 4 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jujubaSVG/
│ │ ├── lib/{core,model,util}/
│ │ └── test/
│ └── sample/ # Flutter sample application
├── docs/ # MkDocs documentation source
├── docs/ # Zensical documentation source
├── scripts/
├── mkdocs.yml
├── README.md
Expand All @@ -57,7 +57,7 @@ Load the appropriate instruction file based on what you are modifying:
| **Kotlin Multiplatform** | `ai/instructions/kotlin.md` |
| **Flutter / Dart** | `ai/instructions/flutter.md` |
| **Both / cross-platform** | Read both `ai/instructions/kotlin.md` and `ai/instructions/flutter.md` |
| **Documentation** | `docs/` — MkDocs source |
| **Documentation** | `docs/` — Zensical source |

---

Expand Down Expand Up @@ -87,7 +87,7 @@ Before starting any task, list directories in `ai/skills/`, identify which cover
| Flutter (deps) | `flutter pub get` | `flutter/jujuba_svg/` |
| Flutter (test) | `flutter test` | `flutter/jujuba_svg/` |
| Flutter (analyze) | `dart analyze` | `flutter/` |
| Documentation | `mkdocs serve` | root |
| Documentation | `zensical serve` | root |

### When to Mark Done

Expand Down Expand Up @@ -116,7 +116,7 @@ Before starting any task, list directories in `ai/skills/`, identify which cover
|----------|---------|--------------|
| `android-build.yml` | PR to `main` touching `kotlin/` | Runs `jujubasvg:testAndroidHostTest` |
| `flutter-build.yml` | PR to `main` touching `flutter/` | Runs `flutter test` + `dart analyze` |
| `documentation.yml` | PR to `main` touching `docs/` or `mkdocs.yml` | Builds & deploys MkDocs to GitHub Pages |
| `documentation.yml` | PR to `main` touching `docs/` or `mkdocs.yml` | Builds & deploys docs with Zensical to GitHub Pages |
| `megalinter.yml` | (all PRs) | MegaLinter static analysis |
| `js-validator.yml` | (as configured) | JavaScript validation |
| `publish-android.yml` | `workflow_dispatch` | Publishes to Maven Central |
Expand Down
Loading