findskills 0.1.0 → 0.1.1
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/bin.js +1 -1
- package/package.json +2 -2
package/bin.js
CHANGED
|
@@ -21,7 +21,7 @@ if (!query) {
|
|
|
21
21
|
const API = 'https://findskills.org/api/v1/search';
|
|
22
22
|
|
|
23
23
|
try {
|
|
24
|
-
const res = await fetch(`${API}?q=${encodeURIComponent(query)}&limit=10`);
|
|
24
|
+
const res = await fetch(`${API}?q=${encodeURIComponent(query)}&limit=10&source=cli`);
|
|
25
25
|
if (!res.ok) throw new Error(`API error: ${res.status}`);
|
|
26
26
|
const data = await res.json();
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "findskills",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Search
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Search 30,000+ AI agent skills from the terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"findskills": "./bin.js"
|