Skip to content

Add repomap tool for AI-friendly code structure maps #67

Add repomap tool for AI-friendly code structure maps

Add repomap tool for AI-friendly code structure maps #67

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
documentation-structure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check documentation structure
run: |
# Verify patterns documentation exists
test -d docs/patterns || { echo "Error: docs/patterns/ missing"; exit 1; }
test -f docs/README.md || { echo "Error: docs/README.md missing"; exit 1; }
test -d docs/adr || { echo "Error: docs/adr/ missing"; exit 1; }
echo "All required documentation files present"