Some checks failed
CI / test (push) Failing after 12s
将 settlement.py 的 settle_campaign_sessions 函数吸收为 ExplorationSessionRepository.expire_running_sessions 方法。删除浅模块 settlement.py(30 行,接口宽如实现),会话生命周期操作集中在 repository。 - 新增 ExplorationSessionRepository.expire_running_sessions(campaign_id) - 更新 campaigns.py 和 campaign_runner.py 两个调用点 - 删除 backend/agenteval/exploration/settlement.py - 所有测试通过,行为不变
60 lines
1.5 KiB
Markdown
60 lines
1.5 KiB
Markdown
---
|
|
name: obsidian-vault
|
|
description: Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
|
|
---
|
|
|
|
# Obsidian Vault
|
|
|
|
## Vault location
|
|
|
|
`/mnt/d/Obsidian Vault/AI Research/`
|
|
|
|
Mostly flat at root level.
|
|
|
|
## Naming conventions
|
|
|
|
- **Index notes**: aggregate related topics (e.g., `Ralph Wiggum Index.md`, `Skills Index.md`, `RAG Index.md`)
|
|
- **Title case** for all note names
|
|
- No folders for organization - use links and index notes instead
|
|
|
|
## Linking
|
|
|
|
- Use Obsidian `[[wikilinks]]` syntax: `[[Note Title]]`
|
|
- Notes link to dependencies/related notes at the bottom
|
|
- Index notes are just lists of `[[wikilinks]]`
|
|
|
|
## Workflows
|
|
|
|
### Search for notes
|
|
|
|
```bash
|
|
# Search by filename
|
|
find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"
|
|
|
|
# Search by content
|
|
grep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"
|
|
```
|
|
|
|
Or use Grep/Glob tools directly on the vault path.
|
|
|
|
### Create a new note
|
|
|
|
1. Use **Title Case** for filename
|
|
2. Write content as a unit of learning (per vault rules)
|
|
3. Add `[[wikilinks]]` to related notes at the bottom
|
|
4. If part of a numbered sequence, use the hierarchical numbering scheme
|
|
|
|
### Find related notes
|
|
|
|
Search for `[[Note Title]]` across the vault to find backlinks:
|
|
|
|
```bash
|
|
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
|
|
```
|
|
|
|
### Find index notes
|
|
|
|
```bash
|
|
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
|
|
```
|