svarog-forge 0.1.0__py2.py3-none-any.whl
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.
svarog_forge/__init__.py
ADDED
svarog_forge/cli.py
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""SvarogForge CLI entry point."""
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def main():
|
|
8
|
+
"""Forge CLI — your AI IT department."""
|
|
9
|
+
parser = argparse.ArgumentParser(
|
|
10
|
+
prog="forge",
|
|
11
|
+
description="SvarogForge — Forge for Hermes Agent"
|
|
12
|
+
)
|
|
13
|
+
parser.add_argument(
|
|
14
|
+
"--version", "-V",
|
|
15
|
+
action="store_true",
|
|
16
|
+
help="Show version and exit"
|
|
17
|
+
)
|
|
18
|
+
parser.add_argument(
|
|
19
|
+
"--list-tools", "-l",
|
|
20
|
+
action="store_true",
|
|
21
|
+
help="List available tools in the forge"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
args = parser.parse_args()
|
|
25
|
+
|
|
26
|
+
if args.version:
|
|
27
|
+
from svarog_forge import __version__
|
|
28
|
+
print(f"SvarogForge v{__version__}")
|
|
29
|
+
sys.exit(0)
|
|
30
|
+
|
|
31
|
+
if args.list_tools:
|
|
32
|
+
print("⚒️ SvarogForge — available tools:")
|
|
33
|
+
print()
|
|
34
|
+
print(" ⚡ Talaria — Parallel messengers for Hermes Agent")
|
|
35
|
+
print(" → https://github.com/SvarogForge/talaria")
|
|
36
|
+
print()
|
|
37
|
+
print(" 🔥 Crucible — Sub-Agent Delegation Benchmark")
|
|
38
|
+
print(" → https://github.com/SvarogForge/crucible")
|
|
39
|
+
print()
|
|
40
|
+
print(" ⚒️ Forge — Your AI IT Department")
|
|
41
|
+
print(" → https://github.com/SvarogForge/forge")
|
|
42
|
+
print()
|
|
43
|
+
print("Install the corresponding Hermes skills from each repository.")
|
|
44
|
+
sys.exit(0)
|
|
45
|
+
|
|
46
|
+
parser.print_help()
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
if __name__ == "__main__":
|
|
50
|
+
main()
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: svarog-forge
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: SvarogForge. Forge for Hermes Agent. A family of tools for your AI IT department.
|
|
5
|
+
Project-URL: Homepage, https://github.com/SvarogForge/forge
|
|
6
|
+
Project-URL: Repository, https://github.com/SvarogForge
|
|
7
|
+
Project-URL: Talaria, https://github.com/SvarogForge/talaria
|
|
8
|
+
Project-URL: Crucible, https://github.com/SvarogForge/crucible
|
|
9
|
+
Author-email: iMonstra <imonstra@users.noreply.github.com>
|
|
10
|
+
License: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: ai,forge,hermes-agent,svarog,talaria
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
22
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
23
|
+
Provides-Extra: crucible
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: build; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
27
|
+
Requires-Dist: twine; extra == 'dev'
|
|
28
|
+
Provides-Extra: talaria
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# ⚒️ SvarogForge
|
|
32
|
+
|
|
33
|
+
**Forge for Hermes Agent.**
|
|
34
|
+
|
|
35
|
+
A family of tools forged for [Hermes Agent](https://hermes-agent.nousresearch.com) — each one a purpose-built instrument for a specific craft.
|
|
36
|
+
|
|
37
|
+
> `pip install svarog-forge`
|
|
38
|
+
|
|
39
|
+
## 🔧 The Forge
|
|
40
|
+
|
|
41
|
+
| Tool | Repository | What it does |
|
|
42
|
+
|------|-----------|-------------|
|
|
43
|
+
| ⚡ **Talaria** | [SvarogForge/talaria](https://github.com/SvarogForge/talaria) | Parallel messengers. Dispatch 3–5 sub-agents for deep research. |
|
|
44
|
+
| 🔥 **Crucible** | [SvarogForge/crucible](https://github.com/SvarogForge/crucible) | The smelting pot. Quality benchmarks and sub-agent delegation verification. |
|
|
45
|
+
| ⚒️ **Forge** | [SvarogForge/forge](https://github.com/SvarogForge/forge) | The forge itself. Your AI IT department — from market analysis to deployment. |
|
|
46
|
+
|
|
47
|
+
## 🏛️ All gods are brothers
|
|
48
|
+
|
|
49
|
+
Every tool in this forge carries a name from a different pantheon — because great engineering speaks every language.
|
|
50
|
+
|
|
51
|
+
Created by [iMonstra](https://github.com/iMonstra)
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
<p align="center">
|
|
56
|
+
<a href="https://github.com/SvarogForge/talaria">⚡ Talaria</a> ·
|
|
57
|
+
<a href="https://github.com/SvarogForge/crucible">🔥 Crucible</a> ·
|
|
58
|
+
<a href="https://github.com/SvarogForge/forge">⚒️ Forge</a>
|
|
59
|
+
</p>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
svarog_forge/__init__.py,sha256=dw9No_IarEYV8Qhc8Wagd7i5xsKp78lbA3OEgI5y6_w,69
|
|
2
|
+
svarog_forge/cli.py,sha256=uLmYVEnZfTmJV59lDmibv5SIIW9hAn4HN4mFZy5mc0s,1391
|
|
3
|
+
svarog_forge-0.1.0.dist-info/METADATA,sha256=0r9wYFjFIhJXbPzXtoIhEM36nRh6mFR8NfSvRKjfKjE,2496
|
|
4
|
+
svarog_forge-0.1.0.dist-info/WHEEL,sha256=QzEo54-UZrE9UYFkp71YQxN7B7ZqQByJkpywraEnP2s,105
|
|
5
|
+
svarog_forge-0.1.0.dist-info/entry_points.txt,sha256=Icfd86eHIlwhn815JG0twaF8reb6GFj02AtOE2FeII0,79
|
|
6
|
+
svarog_forge-0.1.0.dist-info/licenses/LICENSE,sha256=6ehdAb9NhZ4DLQVaMaDxtZMiI05qFD12hLL3rF1ovSI,1104
|
|
7
|
+
svarog_forge-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# SvarogForge: Forge for Hermes Agent
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 iMonstra
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
SOFTWARE.
|