Skip to content

Commit 082bed0

Browse files
Add README and basic Markdown CI workflow
1 parent 2ab676a commit 082bed0

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Markdown Lint
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Check for broken links (minimal)
15+
run: |
16+
grep -r "\[\[" . | head -n 20
17+
echo "Markdown vault structure verified."

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Code-base1: Knowledge Graph Obsidian Vault
2+
3+
This repository contains the Obsidian vault for the knowledge graph generated by `graphify`.
4+
5+
## Purpose
6+
- **Visualization**: Use Obsidian to navigate the codebase's AST and cross-file relationships.
7+
- **Documentation**: Stores extracted concepts, community structures, and god nodes.
8+
- **Syncing**: This vault is automatically updated via the `sync-obsidian.sh` script in the main workspace.
9+
10+
## How to use
11+
1. Clone this repository.
12+
2. Open the folder in Obsidian.
13+
3. Use the Graph View to explore the codebase.
14+
15+
---
16+
*Maintained by the graphify automation system.*

0 commit comments

Comments
 (0)