agentskills-http 0.2.2__tar.gz → 0.2.3__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.
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/PKG-INFO +4 -5
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/README.md +2 -2
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/pyproject.toml +2 -2
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/agentskills_http/__init__.py +0 -0
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/agentskills_http/py.typed +0 -0
- {agentskills_http-0.2.2 → agentskills_http-0.2.3}/agentskills_http/static.py +0 -0
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentskills-http
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: HTTP-based skill providers for the Agent Skills format (https://agentskills.io)
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Pratik Panda
|
|
7
|
-
Requires-Python: >=3.12,<
|
|
7
|
+
Requires-Python: >=3.12,<3.14
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.14
|
|
15
14
|
Classifier: Topic :: Software Development :: Libraries
|
|
16
15
|
Requires-Dist: agentskills-core (>=0.1.0,<1.0)
|
|
17
16
|
Requires-Dist: httpx (>=0.27,<1.0)
|
|
@@ -23,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
|
23
22
|
# agentskills-http
|
|
24
23
|
|
|
25
24
|
[](https://pypi.org/project/agentskills-http/)
|
|
26
|
-
[](https://pypi.org/project/agentskills-http/)
|
|
27
26
|
[](https://github.com/pratikxpanda/agentskills-sdk/blob/main/LICENSE)
|
|
28
27
|
|
|
29
28
|
> HTTP static-file skill provider for the [Agent Skills SDK](../../README.md).
|
|
@@ -36,7 +35,7 @@ Serves [Agent Skills](https://agentskills.io) from any static HTTP file host - S
|
|
|
36
35
|
pip install agentskills-http
|
|
37
36
|
```
|
|
38
37
|
|
|
39
|
-
Requires Python 3.12
|
|
38
|
+
Requires Python 3.12 or 3.13. Installs `agentskills-core`, `httpx`, and `pyyaml` as dependencies.
|
|
40
39
|
|
|
41
40
|
## Expected URL Layout
|
|
42
41
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# agentskills-http
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/agentskills-http/)
|
|
4
|
-
[](https://pypi.org/project/agentskills-http/)
|
|
5
5
|
[](https://github.com/pratikxpanda/agentskills-sdk/blob/main/LICENSE)
|
|
6
6
|
|
|
7
7
|
> HTTP static-file skill provider for the [Agent Skills SDK](../../README.md).
|
|
@@ -14,7 +14,7 @@ Serves [Agent Skills](https://agentskills.io) from any static HTTP file host - S
|
|
|
14
14
|
pip install agentskills-http
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
Requires Python 3.12
|
|
17
|
+
Requires Python 3.12 or 3.13. Installs `agentskills-core`, `httpx`, and `pyyaml` as dependencies.
|
|
18
18
|
|
|
19
19
|
## Expected URL Layout
|
|
20
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "agentskills-http"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.3"
|
|
4
4
|
description = "HTTP-based skill providers for the Agent Skills format (https://agentskills.io)"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
authors = ["Pratik Panda"]
|
|
@@ -17,7 +17,7 @@ classifiers = [
|
|
|
17
17
|
]
|
|
18
18
|
|
|
19
19
|
[tool.poetry.dependencies]
|
|
20
|
-
python = ">=3.12,<
|
|
20
|
+
python = ">=3.12,<3.14"
|
|
21
21
|
agentskills-core = ">=0.1.0,<1.0"
|
|
22
22
|
httpx = ">=0.27,<1.0"
|
|
23
23
|
pyyaml = ">=6.0,<7.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|