zforge 1.0.1__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.
- zforge-1.0.1/LICENSE +21 -0
- zforge-1.0.1/PKG-INFO +11 -0
- zforge-1.0.1/README.md +91 -0
- zforge-1.0.1/cli/__init__.py +1 -0
- zforge-1.0.1/cli/builder.py +593 -0
- zforge-1.0.1/cli/main.py +732 -0
- zforge-1.0.1/cli/publisher.py +507 -0
- zforge-1.0.1/cli/runner.py +68 -0
- zforge-1.0.1/cli/scaffold.py +242 -0
- zforge-1.0.1/cli/tester.py +35 -0
- zforge-1.0.1/cli/validator.py +29 -0
- zforge-1.0.1/pyproject.toml +22 -0
- zforge-1.0.1/setup.cfg +4 -0
- zforge-1.0.1/zforge.egg-info/PKG-INFO +11 -0
- zforge-1.0.1/zforge.egg-info/SOURCES.txt +17 -0
- zforge-1.0.1/zforge.egg-info/dependency_links.txt +1 -0
- zforge-1.0.1/zforge.egg-info/entry_points.txt +2 -0
- zforge-1.0.1/zforge.egg-info/requires.txt +5 -0
- zforge-1.0.1/zforge.egg-info/top_level.txt +3 -0
zforge-1.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ZeroForge
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
zforge-1.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zforge
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: ZeroForge Skill Development CLI
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Dist: typer>=0.9.0
|
|
8
|
+
Requires-Dist: rich>=13.0.0
|
|
9
|
+
Provides-Extra: dev
|
|
10
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
11
|
+
Dynamic: license-file
|
zforge-1.0.1/README.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# zforge
|
|
2
|
+
|
|
3
|
+
> The official CLI for building, validating, and publishing AgentZero skills to the [ZeroForge](https://zero-forge.org) marketplace.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
███████╗███████╗ ██████╗ ██████╗ ██████╗ ███████╗
|
|
7
|
+
╚══███╔╝██╔════╝██╔═══██╗██╔══██╗██╔════╝ ██╔════╝
|
|
8
|
+
███╔╝ █████╗ ██║ ██║██████╔╝██║ ███╗█████╗
|
|
9
|
+
███╔╝ ██╔══╝ ██║ ██║██╔══██╗██║ ██║██╔══╝
|
|
10
|
+
███████╗██║ ╚██████╔╝██║ ██║╚██████╔╝███████╗
|
|
11
|
+
╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## What is zforge?
|
|
15
|
+
|
|
16
|
+
`zforge` is a command-line tool for AgentZero skill developers. It helps you:
|
|
17
|
+
|
|
18
|
+
- 🏗️ **Scaffold** new skills from a standard template
|
|
19
|
+
- ✅ **Validate** skills against the AgentZero SKILL.md standard
|
|
20
|
+
- 📦 **Build** distributable skill packages
|
|
21
|
+
- 🚀 **Publish** skills to the ZeroForge marketplace
|
|
22
|
+
- 🧪 **Test** skill behaviour before release
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install zforge
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or use the one-liner:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
curl -fsSL https://zero-forge.org/install.sh | bash
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Quick Start
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Create a new skill
|
|
40
|
+
zforge new my-skill
|
|
41
|
+
|
|
42
|
+
# Validate your skill
|
|
43
|
+
zforge validate --skill my-skill/
|
|
44
|
+
|
|
45
|
+
# Build a distributable package
|
|
46
|
+
zforge build --skill my-skill/
|
|
47
|
+
|
|
48
|
+
# Publish to ZeroForge marketplace
|
|
49
|
+
zforge publish my-skill/
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Commands
|
|
53
|
+
|
|
54
|
+
| Command | Description |
|
|
55
|
+
|---------|-------------|
|
|
56
|
+
| `zforge new <name>` | Scaffold a new skill from template |
|
|
57
|
+
| `zforge validate --skill <dir>` | Validate skill against SKILL.md standard |
|
|
58
|
+
| `zforge build --skill <dir>` | Build a `.zip` skill package |
|
|
59
|
+
| `zforge publish <dir>` | Publish skill to ZeroForge marketplace |
|
|
60
|
+
| `zforge test <dir>` | Run skill tests |
|
|
61
|
+
| `zforge hello` | Verify installation and show usage |
|
|
62
|
+
|
|
63
|
+
## Using as an AgentZero Skill
|
|
64
|
+
|
|
65
|
+
`zforge` ships as an installable AgentZero skill. To install it inside Agent Zero:
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
Install the zforge skill from zero-forge.org/start
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
See [SKILL.md](./SKILL.md) for the full Agent Zero skill instructions.
|
|
72
|
+
|
|
73
|
+
## Requirements
|
|
74
|
+
|
|
75
|
+
- Python 3.10+
|
|
76
|
+
- `typer >= 0.9.0`
|
|
77
|
+
- `rich >= 13.0.0`
|
|
78
|
+
|
|
79
|
+
## Contributing
|
|
80
|
+
|
|
81
|
+
PRs welcome. Please validate your changes with `zforge validate` before submitting.
|
|
82
|
+
|
|
83
|
+
## License
|
|
84
|
+
|
|
85
|
+
MIT — see [LICENSE](./LICENSE)
|
|
86
|
+
|
|
87
|
+
## Links
|
|
88
|
+
|
|
89
|
+
- 🌐 Marketplace: [zero-forge.org](https://zero-forge.org)
|
|
90
|
+
- 💬 Community: [zero-forge.org/zeroden](https://zero-forge.org/zeroden)
|
|
91
|
+
- 🚀 Get Started: [zero-forge.org/start](https://zero-forge.org/start)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# zforge CLI package
|