Skip to content

Commit 3012bda

Browse files
committed
fix: review fixes — vault-context.sh .git exclusion + sample-note-2 schema update
- vault-context.sh: add ! -path '*/.git/*' to exclude .git subdirs from PARA path listing - sample-vault-note-2.md (both skills): add missing frontmatter fields (ai_distill_depth, distill_layer, content_hash, entities, related)
1 parent 7e9ba1e commit 3012bda

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

container/skills/para-brain/evals/files/sample-vault-note-2.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ source_type: web
55
captured: 2026-03-12T10:00:00+09:00
66
processed: 2026-03-12T10:00:05+09:00
77
status: pending_review
8+
ai_distill_depth: 0
9+
distill_layer: 0
10+
content_hash: "sha256:f8c3a1b2d4e5f67890abcdef1234567890abcdef1234567890abcdef12345678"
11+
captured_via: telegram
812
tags: [react, server-components, frontend]
913
contexts: []
14+
entities: []
15+
related: []
1016
ai_summary: "React Server Components는 서버에서 렌더링되어 클라이언트 번들 크기를 줄이고, 데이터 페칭을 단순화한다."
11-
captured_via: telegram
1217
---
1318

1419
# React Server Components 실전 가이드

container/skills/para-pipeline/evals/files/sample-vault-note-2.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ source_type: web
55
captured: 2026-03-12T10:00:00+09:00
66
processed: 2026-03-12T10:00:05+09:00
77
status: pending_review
8+
ai_distill_depth: 0
9+
distill_layer: 0
10+
content_hash: "sha256:f8c3a1b2d4e5f67890abcdef1234567890abcdef1234567890abcdef12345678"
11+
captured_via: telegram
812
tags: [react, server-components, frontend]
913
contexts: []
14+
entities: []
15+
related: []
1016
ai_summary: "React Server Components는 서버에서 렌더링되어 클라이언트 번들 크기를 줄이고, 데이터 페칭을 단순화한다."
11-
captured_via: telegram
1217
---
1318

1419
# React Server Components 실전 가이드

container/skills/para-pipeline/scripts/vault-context.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VAULT="${VAULT:-/workspace/extra/vault}"
66
if [ -d "$VAULT" ]; then
77
TOTAL=$(find "$VAULT" -name '*.md' ! -name '_*' | wc -l | tr -d ' ')
88
INBOX=$(find "$VAULT/inbox" -name '*.md' 2>/dev/null | wc -l | tr -d ' ')
9-
PARA_DIRS=$(find "$VAULT" -mindepth 1 -maxdepth 2 -type d ! -name '.*' ! -name inbox ! -name _logs | head -20 | sed "s|$VAULT/||" | tr '\n' ', ')
9+
PARA_DIRS=$(find "$VAULT" -mindepth 1 -maxdepth 2 -type d ! -name '.*' ! -path '*/.git/*' ! -name inbox ! -name _logs | head -20 | sed "s|$VAULT/||" | tr '\n' ', ')
1010
RECENT_TAGS=$(grep -rh '^tags:' "$VAULT/inbox/" 2>/dev/null | sed 's/tags: *\[//;s/\]//;s/, /\n/g' | sort | uniq -c | sort -rn | head -10 | awk '{print $2}' | tr '\n' ', ')
1111

1212
cat <<CONTEXT

0 commit comments

Comments
 (0)