skillnet-ai 0.0.4__tar.gz → 0.0.5__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.
Files changed (22) hide show
  1. {skillnet_ai-0.0.4/src/skillnet_ai.egg-info → skillnet_ai-0.0.5}/PKG-INFO +57 -16
  2. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/README.md +45 -4
  3. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/pyproject.toml +12 -12
  4. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5/src/skillnet_ai.egg-info}/PKG-INFO +57 -16
  5. skillnet_ai-0.0.5/src/skillnet_ai.egg-info/requires.txt +10 -0
  6. skillnet_ai-0.0.4/src/skillnet_ai.egg-info/requires.txt +0 -10
  7. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/LICENSE +0 -0
  8. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/setup.cfg +0 -0
  9. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/__init__.py +0 -0
  10. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/analyzer.py +0 -0
  11. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/cli.py +0 -0
  12. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/client.py +0 -0
  13. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/creator.py +0 -0
  14. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/downloader.py +0 -0
  15. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/evaluator.py +0 -0
  16. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/models.py +0 -0
  17. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/prompts.py +0 -0
  18. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai/searcher.py +0 -0
  19. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai.egg-info/SOURCES.txt +0 -0
  20. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai.egg-info/dependency_links.txt +0 -0
  21. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/src/skillnet_ai.egg-info/entry_points.txt +0 -0
  22. {skillnet_ai-0.0.4 → skillnet_ai-0.0.5}/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.4
3
+ Version: 0.0.5
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
@@ -9,26 +9,26 @@ Project-URL: Source, https://github.com/zjunlp/SkillNet
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
12
+ Requires-Python: >=3.9
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: requests>=2.25.0
16
- Requires-Dist: openai<2.0,>=1.0
17
- Requires-Dist: pydantic>=2.0.0
18
- Requires-Dist: tqdm>=4.0.0
19
- Requires-Dist: typer>=0.9.0
20
- Requires-Dist: rich>=13.0.0
21
- Requires-Dist: PyPDF2>=3.0.0
22
- Requires-Dist: pycryptodome>=3.20.0
23
- Requires-Dist: python-docx>=0.8.11
24
- Requires-Dist: python-pptx>=0.6.21
15
+ Requires-Dist: requests==2.32.5
16
+ Requires-Dist: openai==1.109.1
17
+ Requires-Dist: pydantic==2.12.5
18
+ Requires-Dist: tqdm==4.67.1
19
+ Requires-Dist: typer==0.21.1
20
+ Requires-Dist: rich==13.9.4
21
+ Requires-Dist: PyPDF2==3.0.1
22
+ Requires-Dist: pycryptodome==3.23.0
23
+ Requires-Dist: python-docx==1.2.0
24
+ Requires-Dist: python-pptx==1.0.2
25
25
  Dynamic: license-file
26
26
 
27
27
  # skillnet-ai
28
28
 
29
29
  [![PyPI version](https://badge.fury.io/py/skillnet-ai.svg)](https://badge.fury.io/py/skillnet-ai)
30
30
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
31
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
31
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
32
32
 
33
33
  **skillnet-ai** is the official Python Toolkit for interacting with the SkillNet platform. It allows AI Agents to **Create**, **Evaluate** and **Organize** AI skills at scale. It functions seamlessly as both a powerful Python Library and a feature-rich Command Line Interface (CLI).
34
34
 
@@ -265,12 +265,25 @@ skillnet download <private_url> --token <your_github_token>
265
265
 
266
266
  Generate structured Skill Packages from various sources using LLMs.
267
267
 
268
+ **Linux/macOS:**
269
+
268
270
  ```bash
269
271
  # Requirement: Ensure API_KEY is set in your environment variables.
270
272
  export API_KEY=sk-xxxxx
271
- export BASE_URL= xxxxxx # Optional custom LLM base URL
273
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
274
+ ```
275
+
276
+ **Windows PowerShell:**
277
+
278
+ ```powershell
279
+ # Requirement: Ensure API_KEY is set in your environment variables.
280
+ $env:API_KEY = "sk-xxxxx"
281
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
282
+ ```
272
283
 
284
+ **Usage Examples:**
273
285
 
286
+ ```bash
274
287
  # From a trajectory file
275
288
  skillnet create ./logs/trajectory.txt -d ./generated_skills
276
289
 
@@ -290,11 +303,26 @@ skillnet create --office report.pdf --model gpt-4o
290
303
  ### 4. Evaluate Skills (`evaluate`)
291
304
  Generate a comprehensive quality report (Safety, Completeness, Executability, Modifiability, Cost Awareness) for a skill.
292
305
 
306
+ **Linux/macOS:**
307
+
293
308
  ```bash
294
309
  # Requirement: Ensure API_KEY is set in your environment variables.
295
310
  export API_KEY=sk-xxxxx
296
- export BASE_URL= xxxxxx # Optional custom LLM base URL
311
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
312
+ ```
297
313
 
314
+ **Windows PowerShell:**
315
+
316
+ ```powershell
317
+ # Requirement: Ensure API_KEY is set in your environment variables.
318
+ $env:API_KEY = "sk-xxxxx"
319
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
320
+ ```
321
+
322
+ **Usage Examples:**
323
+
324
+ ```bash
325
+ # Requirement: Ensure API_KEY is set in your environment variables.
298
326
  # Evaluate a remote skill via GitHub URL
299
327
  skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
300
328
 
@@ -308,12 +336,25 @@ skillnet evaluate ./my_skills/tool --category "Development" --model gpt-4o
308
336
  ### 5. Analyze Relationships (`analyze`)
309
337
  Scan a directory of skills to analyze their connections using AI.
310
338
 
339
+ **Linux/macOS:**
311
340
 
312
341
  ```bash
313
342
  # Requirement: Ensure API_KEY is set in your environment variables.
314
343
  export API_KEY=sk-xxxxx
315
- export BASE_URL= xxxxxx # Optional custom LLM base URL
344
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
345
+ ```
346
+
347
+ **Windows PowerShell:**
316
348
 
349
+ ```powershell
350
+ # Requirement: Ensure API_KEY is set in your environment variables.
351
+ $env:API_KEY = "sk-xxxxx"
352
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
353
+ ```
354
+
355
+ **Usage Examples:**
356
+
357
+ ```bash
317
358
  # Analyze a directory containing multiple skill folders
318
359
  skillnet analyze ./my_agent_skills
319
360
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![PyPI version](https://badge.fury.io/py/skillnet-ai.svg)](https://badge.fury.io/py/skillnet-ai)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
5
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
6
6
 
7
7
  **skillnet-ai** is the official Python Toolkit for interacting with the SkillNet platform. It allows AI Agents to **Create**, **Evaluate** and **Organize** AI skills at scale. It functions seamlessly as both a powerful Python Library and a feature-rich Command Line Interface (CLI).
8
8
 
@@ -239,12 +239,25 @@ skillnet download <private_url> --token <your_github_token>
239
239
 
240
240
  Generate structured Skill Packages from various sources using LLMs.
241
241
 
242
+ **Linux/macOS:**
243
+
242
244
  ```bash
243
245
  # Requirement: Ensure API_KEY is set in your environment variables.
244
246
  export API_KEY=sk-xxxxx
245
- export BASE_URL= xxxxxx # Optional custom LLM base URL
247
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
248
+ ```
249
+
250
+ **Windows PowerShell:**
251
+
252
+ ```powershell
253
+ # Requirement: Ensure API_KEY is set in your environment variables.
254
+ $env:API_KEY = "sk-xxxxx"
255
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
256
+ ```
246
257
 
258
+ **Usage Examples:**
247
259
 
260
+ ```bash
248
261
  # From a trajectory file
249
262
  skillnet create ./logs/trajectory.txt -d ./generated_skills
250
263
 
@@ -264,11 +277,26 @@ skillnet create --office report.pdf --model gpt-4o
264
277
  ### 4. Evaluate Skills (`evaluate`)
265
278
  Generate a comprehensive quality report (Safety, Completeness, Executability, Modifiability, Cost Awareness) for a skill.
266
279
 
280
+ **Linux/macOS:**
281
+
267
282
  ```bash
268
283
  # Requirement: Ensure API_KEY is set in your environment variables.
269
284
  export API_KEY=sk-xxxxx
270
- export BASE_URL= xxxxxx # Optional custom LLM base URL
285
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
286
+ ```
271
287
 
288
+ **Windows PowerShell:**
289
+
290
+ ```powershell
291
+ # Requirement: Ensure API_KEY is set in your environment variables.
292
+ $env:API_KEY = "sk-xxxxx"
293
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
294
+ ```
295
+
296
+ **Usage Examples:**
297
+
298
+ ```bash
299
+ # Requirement: Ensure API_KEY is set in your environment variables.
272
300
  # Evaluate a remote skill via GitHub URL
273
301
  skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
274
302
 
@@ -282,12 +310,25 @@ skillnet evaluate ./my_skills/tool --category "Development" --model gpt-4o
282
310
  ### 5. Analyze Relationships (`analyze`)
283
311
  Scan a directory of skills to analyze their connections using AI.
284
312
 
313
+ **Linux/macOS:**
285
314
 
286
315
  ```bash
287
316
  # Requirement: Ensure API_KEY is set in your environment variables.
288
317
  export API_KEY=sk-xxxxx
289
- export BASE_URL= xxxxxx # Optional custom LLM base URL
318
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
319
+ ```
320
+
321
+ **Windows PowerShell:**
290
322
 
323
+ ```powershell
324
+ # Requirement: Ensure API_KEY is set in your environment variables.
325
+ $env:API_KEY = "sk-xxxxx"
326
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
327
+ ```
328
+
329
+ **Usage Examples:**
330
+
331
+ ```bash
291
332
  # Analyze a directory containing multiple skill folders
292
333
  skillnet analyze ./my_agent_skills
293
334
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "skillnet-ai"
7
- version = "0.0.4"
7
+ version = "0.0.5"
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" }]
@@ -14,18 +14,18 @@ classifiers = [
14
14
  "License :: OSI Approved :: MIT License",
15
15
  "Operating System :: OS Independent",
16
16
  ]
17
- requires-python = ">=3.8"
17
+ requires-python = ">=3.9"
18
18
  dependencies = [
19
- "requests>=2.25.0",
20
- "openai>=1.0,<2.0",
21
- "pydantic>=2.0.0",
22
- "tqdm>=4.0.0",
23
- "typer>=0.9.0",
24
- "rich>=13.0.0",
25
- "PyPDF2>=3.0.0",
26
- "pycryptodome>=3.20.0",
27
- "python-docx>=0.8.11",
28
- "python-pptx>=0.6.21"
19
+ "requests==2.32.5",
20
+ "openai==1.109.1",
21
+ "pydantic==2.12.5",
22
+ "tqdm==4.67.1",
23
+ "typer==0.21.1",
24
+ "rich==13.9.4",
25
+ "PyPDF2==3.0.1",
26
+ "pycryptodome==3.23.0",
27
+ "python-docx==1.2.0",
28
+ "python-pptx==1.0.2"
29
29
  ]
30
30
 
31
31
  [project.urls]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skillnet-ai
3
- Version: 0.0.4
3
+ Version: 0.0.5
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
@@ -9,26 +9,26 @@ Project-URL: Source, https://github.com/zjunlp/SkillNet
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
12
+ Requires-Python: >=3.9
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: requests>=2.25.0
16
- Requires-Dist: openai<2.0,>=1.0
17
- Requires-Dist: pydantic>=2.0.0
18
- Requires-Dist: tqdm>=4.0.0
19
- Requires-Dist: typer>=0.9.0
20
- Requires-Dist: rich>=13.0.0
21
- Requires-Dist: PyPDF2>=3.0.0
22
- Requires-Dist: pycryptodome>=3.20.0
23
- Requires-Dist: python-docx>=0.8.11
24
- Requires-Dist: python-pptx>=0.6.21
15
+ Requires-Dist: requests==2.32.5
16
+ Requires-Dist: openai==1.109.1
17
+ Requires-Dist: pydantic==2.12.5
18
+ Requires-Dist: tqdm==4.67.1
19
+ Requires-Dist: typer==0.21.1
20
+ Requires-Dist: rich==13.9.4
21
+ Requires-Dist: PyPDF2==3.0.1
22
+ Requires-Dist: pycryptodome==3.23.0
23
+ Requires-Dist: python-docx==1.2.0
24
+ Requires-Dist: python-pptx==1.0.2
25
25
  Dynamic: license-file
26
26
 
27
27
  # skillnet-ai
28
28
 
29
29
  [![PyPI version](https://badge.fury.io/py/skillnet-ai.svg)](https://badge.fury.io/py/skillnet-ai)
30
30
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
31
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
31
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
32
32
 
33
33
  **skillnet-ai** is the official Python Toolkit for interacting with the SkillNet platform. It allows AI Agents to **Create**, **Evaluate** and **Organize** AI skills at scale. It functions seamlessly as both a powerful Python Library and a feature-rich Command Line Interface (CLI).
34
34
 
@@ -265,12 +265,25 @@ skillnet download <private_url> --token <your_github_token>
265
265
 
266
266
  Generate structured Skill Packages from various sources using LLMs.
267
267
 
268
+ **Linux/macOS:**
269
+
268
270
  ```bash
269
271
  # Requirement: Ensure API_KEY is set in your environment variables.
270
272
  export API_KEY=sk-xxxxx
271
- export BASE_URL= xxxxxx # Optional custom LLM base URL
273
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
274
+ ```
275
+
276
+ **Windows PowerShell:**
277
+
278
+ ```powershell
279
+ # Requirement: Ensure API_KEY is set in your environment variables.
280
+ $env:API_KEY = "sk-xxxxx"
281
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
282
+ ```
272
283
 
284
+ **Usage Examples:**
273
285
 
286
+ ```bash
274
287
  # From a trajectory file
275
288
  skillnet create ./logs/trajectory.txt -d ./generated_skills
276
289
 
@@ -290,11 +303,26 @@ skillnet create --office report.pdf --model gpt-4o
290
303
  ### 4. Evaluate Skills (`evaluate`)
291
304
  Generate a comprehensive quality report (Safety, Completeness, Executability, Modifiability, Cost Awareness) for a skill.
292
305
 
306
+ **Linux/macOS:**
307
+
293
308
  ```bash
294
309
  # Requirement: Ensure API_KEY is set in your environment variables.
295
310
  export API_KEY=sk-xxxxx
296
- export BASE_URL= xxxxxx # Optional custom LLM base URL
311
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
312
+ ```
297
313
 
314
+ **Windows PowerShell:**
315
+
316
+ ```powershell
317
+ # Requirement: Ensure API_KEY is set in your environment variables.
318
+ $env:API_KEY = "sk-xxxxx"
319
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
320
+ ```
321
+
322
+ **Usage Examples:**
323
+
324
+ ```bash
325
+ # Requirement: Ensure API_KEY is set in your environment variables.
298
326
  # Evaluate a remote skill via GitHub URL
299
327
  skillnet evaluate https://github.com/anthropics/skills/tree/main/skills/algorithmic-art
300
328
 
@@ -308,12 +336,25 @@ skillnet evaluate ./my_skills/tool --category "Development" --model gpt-4o
308
336
  ### 5. Analyze Relationships (`analyze`)
309
337
  Scan a directory of skills to analyze their connections using AI.
310
338
 
339
+ **Linux/macOS:**
311
340
 
312
341
  ```bash
313
342
  # Requirement: Ensure API_KEY is set in your environment variables.
314
343
  export API_KEY=sk-xxxxx
315
- export BASE_URL= xxxxxx # Optional custom LLM base URL
344
+ export BASE_URL=xxxxxx # Optional custom LLM base URL
345
+ ```
346
+
347
+ **Windows PowerShell:**
316
348
 
349
+ ```powershell
350
+ # Requirement: Ensure API_KEY is set in your environment variables.
351
+ $env:API_KEY = "sk-xxxxx"
352
+ $env:BASE_URL = "xxxxxx" # Optional custom LLM base URL
353
+ ```
354
+
355
+ **Usage Examples:**
356
+
357
+ ```bash
317
358
  # Analyze a directory containing multiple skill folders
318
359
  skillnet analyze ./my_agent_skills
319
360
 
@@ -0,0 +1,10 @@
1
+ requests==2.32.5
2
+ openai==1.109.1
3
+ pydantic==2.12.5
4
+ tqdm==4.67.1
5
+ typer==0.21.1
6
+ rich==13.9.4
7
+ PyPDF2==3.0.1
8
+ pycryptodome==3.23.0
9
+ python-docx==1.2.0
10
+ python-pptx==1.0.2
@@ -1,10 +0,0 @@
1
- requests>=2.25.0
2
- openai<2.0,>=1.0
3
- pydantic>=2.0.0
4
- tqdm>=4.0.0
5
- typer>=0.9.0
6
- rich>=13.0.0
7
- PyPDF2>=3.0.0
8
- pycryptodome>=3.20.0
9
- python-docx>=0.8.11
10
- python-pptx>=0.6.21
File without changes
File without changes