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
15 changes: 14 additions & 1 deletion .claude/settings.local.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,20 @@
"Bash(npm install:*)",
"Bash(git commit:*)",
"Bash(gh pr view:*)",
"Bash(gh pr edit:*)"
"Bash(gh pr edit:*)",
"Bash(gh run view:*)",
"Bash(ls:*)",
"Bash(gh issue view:*)",
"Bash(find:*)",
"Bash(npx linkinator:*)",
"Bash(gh pr checks:*)",
"Bash(git push:*)",
"Bash(git -C /home/bwhite/Projects/DevFoundry log --oneline -15)",
"Bash(npx vitest run:*)",
"Bash(npm run lint:ascii:*)",
"Bash(npm run format:ascii:*)",
"Bash(npx tsx:*)",
"Bash(npm test:*)"
]
}
}
31 changes: 31 additions & 0 deletions .github/workflows/lint-ascii.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Lint ASCII Blocks

on:
pull_request:
paths:
- 'website/docs/**'
- 'docs/**'
- 'prompts/**'
- 'community/**'
- 'adr/**'
- 'exercises/**'
- 'scripts/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/lint-ascii.yml'
workflow_dispatch:

jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Check ASCII block formatting
run: npm run lint:ascii
- name: Run tests
run: npm test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
node_modules/
dist/
.vite/
package-lock.json


# Generated data files
*.db
Expand Down
2 changes: 2 additions & 0 deletions adr/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Architecture Decision Records (ADRs)

Canonical page: https://dev.episkopos.community/docs/adr

**Documenting the "why" behind architectural choices**

---
Expand Down
2 changes: 2 additions & 0 deletions community/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# DevFoundry Community

Canonical page: https://dev.episkopos.community/docs/community

**Building Software Together: Problems, Projects, and People**

---
Expand Down
2 changes: 2 additions & 0 deletions docs/chat-app-trajectory.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Chat App Case Study: Learning Trajectory

Canonical page: (missing) (suggest /docs/examples/chat-app-trajectory)

This document visualizes how the chat app case study maps to curriculum modules and builds toward a cohort-owned communication network.

## The Vision
Expand Down
Loading