-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathaliases.yaml
More file actions
58 lines (58 loc) · 1.63 KB
/
Copy pathaliases.yaml
File metadata and controls
58 lines (58 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
kind: aliases
metadata:
name: llm-wiki-cli-aliases
version: 1.0.0
description: Short-verb shortcuts for the llm_wiki demo CLI
spec:
grep:
pipeline: wiki-search-hybrid
positional:
- query
defaults:
limit: '10'
text_query: '{query}'
text_weight: '0.5'
vector_weight: '0.5'
description: Hybrid search over the wiki (RRF of sqlite_knn + sqlite_fts)
log:
pipeline: wiki-log-append
defaults:
event_type: note
slug: ''
description: Append an activity entry to wiki_log; override --event_type --slug --message
ls:
pipeline: wiki-list
defaults:
limit: '100'
page_type_pattern: '%'
slug_prefix: '%'
description: List wiki pages, newest first (filter with --page_type_pattern / --slug_prefix)
open:
pipeline: wiki-get
positional:
- slug
description: Open a single wiki page by slug
rm:
pipeline: wiki-delete
positional:
- slug
description: Delete a wiki page by slug (also clears fts + vec mirrors via trigger)
today:
pipeline: wiki-list
defaults:
limit: '20'
page_type_pattern: '%'
slug_prefix: '%'
description: List the 20 most recently-touched pages
write:
pipeline: wiki-create
defaults:
page_type: entity
description: Create a new wiki page (re-embeds content inline); use --slug --title --content
bulk-write:
pipeline: wiki-bulk-create
defaults:
chunk_size: '800'
overlap: '150'
page_type: entity
description: Chunk a long markdown doc into many pages (slug_prefix/pNNN); use --slug_prefix --title --content [--page_type --chunk_size --overlap]