skillnet-ai 0.0.3__tar.gz → 0.0.4__tar.gz
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.
- {skillnet_ai-0.0.3/src/skillnet_ai.egg-info → skillnet_ai-0.0.4}/PKG-INFO +9 -8
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/README.md +8 -7
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/pyproject.toml +1 -1
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/cli.py +6 -5
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4/src/skillnet_ai.egg-info}/PKG-INFO +9 -8
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/LICENSE +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/setup.cfg +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/__init__.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/analyzer.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/client.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/creator.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/downloader.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/evaluator.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/models.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/prompts.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai/searcher.py +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai.egg-info/SOURCES.txt +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai.egg-info/dependency_links.txt +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai.egg-info/entry_points.txt +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai.egg-info/requires.txt +0 -0
- {skillnet_ai-0.0.3 → skillnet_ai-0.0.4}/src/skillnet_ai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skillnet-ai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Official Python SDK for SkillNet: Create, Evaluate, and Connect AI Skills.
|
|
5
5
|
Author-email: SkillNet Team <liangyuannnnn@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -252,10 +252,10 @@ Download and install a skill directly from a GitHub repository subdirectory.
|
|
|
252
252
|
|
|
253
253
|
```bash
|
|
254
254
|
# Download to the current directory
|
|
255
|
-
skillnet download https://github.com/
|
|
255
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
256
256
|
|
|
257
257
|
# Download to a specific target directory
|
|
258
|
-
skillnet download https://github.com/
|
|
258
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art -d ./my_agent/skills
|
|
259
259
|
|
|
260
260
|
# Download from a private repository
|
|
261
261
|
skillnet download <private_url> --token <your_github_token>
|
|
@@ -296,7 +296,7 @@ export API_KEY=sk-xxxxx
|
|
|
296
296
|
export BASE_URL= xxxxxx # Optional custom LLM base URL
|
|
297
297
|
|
|
298
298
|
# Evaluate a remote skill via GitHub URL
|
|
299
|
-
skillnet evaluate https://github.com/
|
|
299
|
+
skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
300
300
|
|
|
301
301
|
# Evaluate a local skill directory
|
|
302
302
|
skillnet evaluate ./my_skills/web_search
|
|
@@ -353,10 +353,11 @@ skill-name/
|
|
|
353
353
|
|
|
354
354
|
## 🗺 Roadmap
|
|
355
355
|
|
|
356
|
-
-
|
|
357
|
-
-
|
|
358
|
-
-
|
|
359
|
-
-
|
|
356
|
+
- ✅ Keyword Match & Semantic Search
|
|
357
|
+
- ✅ Skill Installer
|
|
358
|
+
- ✅ Skill Creator (Local File & GitHub Repository)
|
|
359
|
+
- ✅ Skill Evaluation & Scoring
|
|
360
|
+
- ✅ Skill Relationship Analysis
|
|
360
361
|
|
|
361
362
|
---
|
|
362
363
|
|
|
@@ -226,10 +226,10 @@ Download and install a skill directly from a GitHub repository subdirectory.
|
|
|
226
226
|
|
|
227
227
|
```bash
|
|
228
228
|
# Download to the current directory
|
|
229
|
-
skillnet download https://github.com/
|
|
229
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
230
230
|
|
|
231
231
|
# Download to a specific target directory
|
|
232
|
-
skillnet download https://github.com/
|
|
232
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art -d ./my_agent/skills
|
|
233
233
|
|
|
234
234
|
# Download from a private repository
|
|
235
235
|
skillnet download <private_url> --token <your_github_token>
|
|
@@ -270,7 +270,7 @@ export API_KEY=sk-xxxxx
|
|
|
270
270
|
export BASE_URL= xxxxxx # Optional custom LLM base URL
|
|
271
271
|
|
|
272
272
|
# Evaluate a remote skill via GitHub URL
|
|
273
|
-
skillnet evaluate https://github.com/
|
|
273
|
+
skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
274
274
|
|
|
275
275
|
# Evaluate a local skill directory
|
|
276
276
|
skillnet evaluate ./my_skills/web_search
|
|
@@ -327,10 +327,11 @@ skill-name/
|
|
|
327
327
|
|
|
328
328
|
## 🗺 Roadmap
|
|
329
329
|
|
|
330
|
-
-
|
|
331
|
-
-
|
|
332
|
-
-
|
|
333
|
-
-
|
|
330
|
+
- ✅ Keyword Match & Semantic Search
|
|
331
|
+
- ✅ Skill Installer
|
|
332
|
+
- ✅ Skill Creator (Local File & GitHub Repository)
|
|
333
|
+
- ✅ Skill Evaluation & Scoring
|
|
334
|
+
- ✅ Skill Relationship Analysis
|
|
334
335
|
|
|
335
336
|
---
|
|
336
337
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "skillnet-ai"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.4"
|
|
8
8
|
description = "Official Python SDK for SkillNet: Create, Evaluate, and Connect AI Skills."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "SkillNet Team", email = "liangyuannnnn@gmail.com" }]
|
|
@@ -133,14 +133,15 @@ def download(
|
|
|
133
133
|
table.add_row("[bold cyan]Location:[/bold cyan]", installed_path)
|
|
134
134
|
|
|
135
135
|
console.print(table)
|
|
136
|
-
console.print(f"\n[green]
|
|
136
|
+
console.print(f"\n[green]✅ {folder_name} is ready to use.[/green]")
|
|
137
137
|
else:
|
|
138
138
|
# Failure (Logic handled inside class, but we catch the None return)
|
|
139
|
-
console.print("[bold red]Download Failed.[/bold red]")
|
|
139
|
+
console.print("[bold red]❌ Download Failed.[/bold red]")
|
|
140
140
|
console.print("Possible reasons:")
|
|
141
|
-
console.print("1.
|
|
142
|
-
console.print("2. The
|
|
143
|
-
console.print("3.
|
|
141
|
+
console.print("1. Please check your network settings and ensure connection to GitHub is working properly.")
|
|
142
|
+
console.print("2. The URL format is incorrect (must point to a specific skill folder, not just the repo root).")
|
|
143
|
+
console.print("3. The repository is private and no token was provided.")
|
|
144
|
+
console.print("4. GitHub API rate limits exceeded (try providing a token).")
|
|
144
145
|
raise typer.Exit(code=1)
|
|
145
146
|
|
|
146
147
|
except Exception as e:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skillnet-ai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Official Python SDK for SkillNet: Create, Evaluate, and Connect AI Skills.
|
|
5
5
|
Author-email: SkillNet Team <liangyuannnnn@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -252,10 +252,10 @@ Download and install a skill directly from a GitHub repository subdirectory.
|
|
|
252
252
|
|
|
253
253
|
```bash
|
|
254
254
|
# Download to the current directory
|
|
255
|
-
skillnet download https://github.com/
|
|
255
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
256
256
|
|
|
257
257
|
# Download to a specific target directory
|
|
258
|
-
skillnet download https://github.com/
|
|
258
|
+
skillnet download https://github.com/anthropics/skills/tree/main/skills/algorithmic-art -d ./my_agent/skills
|
|
259
259
|
|
|
260
260
|
# Download from a private repository
|
|
261
261
|
skillnet download <private_url> --token <your_github_token>
|
|
@@ -296,7 +296,7 @@ export API_KEY=sk-xxxxx
|
|
|
296
296
|
export BASE_URL= xxxxxx # Optional custom LLM base URL
|
|
297
297
|
|
|
298
298
|
# Evaluate a remote skill via GitHub URL
|
|
299
|
-
skillnet evaluate https://github.com/
|
|
299
|
+
skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
|
|
300
300
|
|
|
301
301
|
# Evaluate a local skill directory
|
|
302
302
|
skillnet evaluate ./my_skills/web_search
|
|
@@ -353,10 +353,11 @@ skill-name/
|
|
|
353
353
|
|
|
354
354
|
## 🗺 Roadmap
|
|
355
355
|
|
|
356
|
-
-
|
|
357
|
-
-
|
|
358
|
-
-
|
|
359
|
-
-
|
|
356
|
+
- ✅ Keyword Match & Semantic Search
|
|
357
|
+
- ✅ Skill Installer
|
|
358
|
+
- ✅ Skill Creator (Local File & GitHub Repository)
|
|
359
|
+
- ✅ Skill Evaluation & Scoring
|
|
360
|
+
- ✅ Skill Relationship Analysis
|
|
360
361
|
|
|
361
362
|
---
|
|
362
363
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|