@crewx/search 0.1.10-rc.9 → 0.1.10-rc.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SKILL.md +3 -3
- package/package.json +3 -3
package/SKILL.md
CHANGED
|
@@ -131,14 +131,14 @@ npx search "error handling exception" . --glob="**/*.md"
|
|
|
131
131
|
### OKF Highlight-Scoped Search
|
|
132
132
|
```bash
|
|
133
133
|
# Search only what the user highlighted as important
|
|
134
|
-
npx search "
|
|
134
|
+
npx search "important decision" ./docs --scope=highlights
|
|
135
135
|
|
|
136
136
|
# Result:
|
|
137
|
-
# [8.0] docs
|
|
137
|
+
# [8.0] docs/design.md [highlightQuotes]
|
|
138
138
|
# Design Spec
|
|
139
139
|
|
|
140
140
|
# Prioritize full body over highlights
|
|
141
|
-
npx search "
|
|
141
|
+
npx search "architecture" ./docs --scope=body
|
|
142
142
|
|
|
143
143
|
# Apply extra 2x boost on highlights
|
|
144
144
|
npx search "API design" ./docs --highlight-boost=2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewx/search",
|
|
3
|
-
"version": "0.1.10-rc.
|
|
3
|
+
"version": "0.1.10-rc.90",
|
|
4
4
|
"description": "BM25 full-text search engine for CrewX documents and code",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/src/engine.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"glob": "^10.0.0",
|
|
37
|
-
"@crewx/shared": "0.0.
|
|
38
|
-
"@crewx/knowledge-core": "0.1.17-rc.
|
|
37
|
+
"@crewx/shared": "0.0.6",
|
|
38
|
+
"@crewx/knowledge-core": "0.1.17-rc.104"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/node": "^20.0.0",
|