- Add claude-md-guardian agent with SessionStart hook for auto CLAUDE.md maintenance - Add 6 thinking commands: /my-world, /emerge, /challenge, /connect, /today, /close - Add my-world skill for one-shot vault context loading - Fix command injection vulnerability in init-vault.sh (use env vars) - Add error handling and logging to vault-sync.sh - Update write-article skill with complete frontmatter fields - Upgrade CLAUDE.md to v1.3.0 with cycle time tracking and exit criteria Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
897 B
Markdown
31 lines
897 B
Markdown
Load my personal context from the content-forge Obsidian vault.
|
|
|
|
1. cd to vault directory and scan pipeline state:
|
|
```bash
|
|
cd /home/kang/apps/content-forge/content-forge
|
|
obsidian vault
|
|
obsidian files folder="00-inbox"
|
|
obsidian files folder="01-topics"
|
|
obsidian files folder="02-drafts"
|
|
obsidian files folder="03-review"
|
|
obsidian files folder="04-published"
|
|
```
|
|
|
|
2. Map the knowledge graph:
|
|
```bash
|
|
cd /home/kang/apps/content-forge/content-forge
|
|
obsidian tags counts sort=count
|
|
obsidian orphans
|
|
obsidian deadends
|
|
obsidian unresolved
|
|
obsidian recents
|
|
```
|
|
|
|
3. For each active item in inbox/topics/drafts/review, read its frontmatter:
|
|
```bash
|
|
cd /home/kang/apps/content-forge/content-forge
|
|
obsidian properties path="<file-path>"
|
|
```
|
|
|
|
4. Summarize: what's in the pipeline, what's connected, what needs attention? Reference specific notes.
|