hermes-plugin-tinyfish 0.1.3__tar.gz → 0.1.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.
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/CHANGELOG.md +6 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/PKG-INFO +5 -5
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/README.md +4 -4
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/plugin.yaml +1 -1
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/pyproject.toml +1 -1
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/.gitignore +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/CODE_OF_CONDUCT.md +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/CONTRIBUTING.md +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/LICENSE +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/SECURITY.md +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/__init__.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/__init__.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/normalize.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/provider.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/rest_client.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/setup_cli.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/conftest.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/test_live.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/test_normalize.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/test_provider.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/test_register.py +0 -0
- {hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/tests/test_setup_cli.py +0 -0
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project uses semantic versioning.
|
|
7
7
|
|
|
8
|
+
## [0.1.4] - 2026-07-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated README badges and installation notes after PyPI publication.
|
|
13
|
+
|
|
8
14
|
## [0.1.3] - 2026-07-07
|
|
9
15
|
|
|
10
16
|
### Changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hermes-plugin-tinyfish
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: TinyFish web search and extraction provider plugin for Hermes Agent
|
|
5
5
|
Project-URL: Homepage, https://github.com/gabeosx/hermes-plugin-tinyfish
|
|
6
6
|
Project-URL: Documentation, https://github.com/gabeosx/hermes-plugin-tinyfish#readme
|
|
@@ -31,8 +31,8 @@ Description-Content-Type: text/markdown
|
|
|
31
31
|
# Hermes TinyFish Plugin
|
|
32
32
|
|
|
33
33
|
[](https://github.com/gabeosx/hermes-plugin-tinyfish/actions/workflows/ci.yml)
|
|
34
|
-
[](https://pypi.org/project/hermes-plugin-tinyfish/)
|
|
35
|
+
[](https://pypi.org/project/hermes-plugin-tinyfish/)
|
|
36
36
|
[](LICENSE)
|
|
37
37
|
[](SECURITY.md)
|
|
38
38
|
|
|
@@ -55,11 +55,11 @@ Hermes' Git plugin installer currently clones the repository default branch.
|
|
|
55
55
|
Stable release artifacts are published on the
|
|
56
56
|
[GitHub Releases page](https://github.com/gabeosx/hermes-plugin-tinyfish/releases).
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
Python package artifacts are also published to PyPI for Hermes environments
|
|
59
|
+
that load `hermes_agent.plugins` entry points:
|
|
59
60
|
|
|
60
61
|
```bash
|
|
61
62
|
pip install hermes-plugin-tinyfish
|
|
62
|
-
hermes plugins enable web-tinyfish
|
|
63
63
|
hermes tinyfish setup
|
|
64
64
|
```
|
|
65
65
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Hermes TinyFish Plugin
|
|
2
2
|
|
|
3
3
|
[](https://github.com/gabeosx/hermes-plugin-tinyfish/actions/workflows/ci.yml)
|
|
4
|
-
[](https://pypi.org/project/hermes-plugin-tinyfish/)
|
|
5
|
+
[](https://pypi.org/project/hermes-plugin-tinyfish/)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](SECURITY.md)
|
|
8
8
|
|
|
@@ -25,11 +25,11 @@ Hermes' Git plugin installer currently clones the repository default branch.
|
|
|
25
25
|
Stable release artifacts are published on the
|
|
26
26
|
[GitHub Releases page](https://github.com/gabeosx/hermes-plugin-tinyfish/releases).
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
Python package artifacts are also published to PyPI for Hermes environments
|
|
29
|
+
that load `hermes_agent.plugins` entry points:
|
|
29
30
|
|
|
30
31
|
```bash
|
|
31
32
|
pip install hermes-plugin-tinyfish
|
|
32
|
-
hermes plugins enable web-tinyfish
|
|
33
33
|
hermes tinyfish setup
|
|
34
34
|
```
|
|
35
35
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/__init__.py
RENAMED
|
File without changes
|
{hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/normalize.py
RENAMED
|
File without changes
|
{hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/provider.py
RENAMED
|
File without changes
|
{hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/rest_client.py
RENAMED
|
File without changes
|
{hermes_plugin_tinyfish-0.1.3 → hermes_plugin_tinyfish-0.1.4}/hermes_plugin_tinyfish/setup_cli.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|