@nozomioai/nia 0.0.5 → 0.0.6
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/README.md +8 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -43,6 +43,14 @@ nia repos list
|
|
|
43
43
|
# Index documentation sources
|
|
44
44
|
nia sources index https://docs.anthropic.com
|
|
45
45
|
|
|
46
|
+
# Add and sync a local folder
|
|
47
|
+
nia local add ~/dev/my-project
|
|
48
|
+
nia local sync
|
|
49
|
+
nia local watch
|
|
50
|
+
|
|
51
|
+
# Search only local folders
|
|
52
|
+
nia search query "Where is auth configured?" --local-folders my-project
|
|
53
|
+
|
|
46
54
|
# Run autonomous research
|
|
47
55
|
nia oracle create "Compare RAG evaluation frameworks"
|
|
48
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nozomioai/nia",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "CLI for the Nia — search code, docs, and research from the terminal",
|
|
5
5
|
"homepage": "https://github.com/nozomio-labs/nia-cli#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"nia": "bin/nia"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@nozomioai/nia-linux-x64": "0.0.
|
|
31
|
-
"@nozomioai/nia-linux-arm64": "0.0.
|
|
32
|
-
"@nozomioai/nia-darwin-x64": "0.0.
|
|
33
|
-
"@nozomioai/nia-darwin-arm64": "0.0.
|
|
34
|
-
"@nozomioai/nia-windows-x64": "0.0.
|
|
35
|
-
"@nozomioai/nia-windows-arm64": "0.0.
|
|
30
|
+
"@nozomioai/nia-linux-x64": "0.0.6",
|
|
31
|
+
"@nozomioai/nia-linux-arm64": "0.0.6",
|
|
32
|
+
"@nozomioai/nia-darwin-x64": "0.0.6",
|
|
33
|
+
"@nozomioai/nia-darwin-arm64": "0.0.6",
|
|
34
|
+
"@nozomioai/nia-windows-x64": "0.0.6",
|
|
35
|
+
"@nozomioai/nia-windows-arm64": "0.0.6"
|
|
36
36
|
}
|
|
37
37
|
}
|