svarog-forge 0.1.0__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.
@@ -0,0 +1,68 @@
1
+ # Secrets — НЕ ПУШИТЬ!
2
+ .routerai-credentials.yaml
3
+ .gh_token*
4
+ gh_token.txt
5
+ *.token
6
+ .env
7
+ **/config.yaml
8
+
9
+ # Python
10
+ __pycache__/
11
+ *.pyc
12
+ *.pyo
13
+ *.egg-info/
14
+ .venv/
15
+ venv/
16
+
17
+ # Backups
18
+ .bak/
19
+ *.bak
20
+
21
+ # OS
22
+ .DS_Store
23
+ Thumbs.db
24
+
25
+ # IDE
26
+ .idea/
27
+ .vscode/
28
+ *.swp
29
+
30
+ # Temp / scrap
31
+ yandex_search_proto/
32
+
33
+ # CosyVoice — клонированная репа с моделями (8.5GB)
34
+ CosyVoice/
35
+
36
+ # Embedded git repos (чужие проекты)
37
+ ComfyUI/
38
+ Wan2GP/
39
+ models/
40
+ image-gen/
41
+
42
+ # Generated voice / audio files
43
+ *.wav
44
+ *.mp3
45
+ *.png
46
+ *.jpg
47
+ *.jpeg
48
+ *.pdf
49
+
50
+ # Generated reports / output
51
+ reports/
52
+ scripts/
53
+ controlnet_poses/
54
+
55
+ # Temp files
56
+ nul
57
+ hermes-sessions-bak/
58
+
59
+ # Logs
60
+ *.log
61
+ *.pid
62
+
63
+ # Begunok — бинарные данные Meilisearch + Qdrant (сотни MB)
64
+ begunok/data/
65
+ begunok/storage/
66
+ begunok/meilisearch.exe
67
+ begunok/qdrant/qdrant.exe
68
+ begunok/qdrant.zip
@@ -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.
@@ -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,29 @@
1
+ # ⚒️ SvarogForge
2
+
3
+ **Forge for Hermes Agent.**
4
+
5
+ A family of tools forged for [Hermes Agent](https://hermes-agent.nousresearch.com) — each one a purpose-built instrument for a specific craft.
6
+
7
+ > `pip install svarog-forge`
8
+
9
+ ## 🔧 The Forge
10
+
11
+ | Tool | Repository | What it does |
12
+ |------|-----------|-------------|
13
+ | ⚡ **Talaria** | [SvarogForge/talaria](https://github.com/SvarogForge/talaria) | Parallel messengers. Dispatch 3–5 sub-agents for deep research. |
14
+ | 🔥 **Crucible** | [SvarogForge/crucible](https://github.com/SvarogForge/crucible) | The smelting pot. Quality benchmarks and sub-agent delegation verification. |
15
+ | ⚒️ **Forge** | [SvarogForge/forge](https://github.com/SvarogForge/forge) | The forge itself. Your AI IT department — from market analysis to deployment. |
16
+
17
+ ## 🏛️ All gods are brothers
18
+
19
+ Every tool in this forge carries a name from a different pantheon — because great engineering speaks every language.
20
+
21
+ Created by [iMonstra](https://github.com/iMonstra)
22
+
23
+ ---
24
+
25
+ <p align="center">
26
+ <a href="https://github.com/SvarogForge/talaria">⚡ Talaria</a> ·
27
+ <a href="https://github.com/SvarogForge/crucible">🔥 Crucible</a> ·
28
+ <a href="https://github.com/SvarogForge/forge">⚒️ Forge</a>
29
+ </p>
@@ -0,0 +1,44 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "svarog-forge"
7
+ version = "0.1.0"
8
+ description = "SvarogForge. Forge for Hermes Agent. A family of tools for your AI IT department."
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ keywords = ["hermes-agent", "ai", "forge", "talaria", "svarog"]
12
+ authors = [
13
+ {name = "iMonstra", email = "imonstra@users.noreply.github.com"},
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Environment :: Console",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Topic :: Software Development :: Build Tools",
25
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
26
+ ]
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/SvarogForge/forge"
30
+ Repository = "https://github.com/SvarogForge"
31
+ Talaria = "https://github.com/SvarogForge/talaria"
32
+ Crucible = "https://github.com/SvarogForge/crucible"
33
+
34
+ [project.scripts]
35
+ forge = "svarog_forge.cli:main"
36
+ svarog = "svarog_forge.cli:main"
37
+
38
+ [project.optional-dependencies]
39
+ talaria = [] # Reserved for future talaria-py package
40
+ crucible = [] # Reserved for future crucible-py package
41
+ dev = ["pytest", "build", "twine"]
42
+
43
+ [tool.hatch.build]
44
+ include = ["svarog_forge/**"]
@@ -0,0 +1,3 @@
1
+ """SvarogForge — Forge for Hermes Agent."""
2
+
3
+ __version__ = "0.1.0"
@@ -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()