jvcli 2.0.0__py3-none-any.whl → 2.0.1__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.
- jvcli/__init__.py +1 -1
- jvcli-2.0.1.dist-info/METADATA +117 -0
- {jvcli-2.0.0.dist-info → jvcli-2.0.1.dist-info}/RECORD +7 -7
- jvcli-2.0.0.dist-info/METADATA +0 -24
- {jvcli-2.0.0.dist-info → jvcli-2.0.1.dist-info}/LICENSE +0 -0
- {jvcli-2.0.0.dist-info → jvcli-2.0.1.dist-info}/WHEEL +0 -0
- {jvcli-2.0.0.dist-info → jvcli-2.0.1.dist-info}/entry_points.txt +0 -0
- {jvcli-2.0.0.dist-info → jvcli-2.0.1.dist-info}/top_level.txt +0 -0
jvcli/__init__.py
CHANGED
@@ -0,0 +1,117 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: jvcli
|
3
|
+
Version: 2.0.1
|
4
|
+
Summary: CLI tool for Jivas Package Repository
|
5
|
+
Home-page: https://github.com/TrueSelph/jvcli
|
6
|
+
Author: TrueSelph Inc.
|
7
|
+
Author-email: admin@trueselph.com
|
8
|
+
Requires-Python: >=3.12
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Dist: click>=8.1.8
|
12
|
+
Requires-Dist: requests>=2.32.3
|
13
|
+
Requires-Dist: packaging>=24.2
|
14
|
+
Requires-Dist: pyaml>=25.1.0
|
15
|
+
Requires-Dist: jac-cloud>=0.1.19
|
16
|
+
Provides-Extra: dev
|
17
|
+
Requires-Dist: pre-commit; extra == "dev"
|
18
|
+
Requires-Dist: pytest; extra == "dev"
|
19
|
+
Requires-Dist: pytest-mock; extra == "dev"
|
20
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
21
|
+
Dynamic: author
|
22
|
+
Dynamic: author-email
|
23
|
+
Dynamic: description
|
24
|
+
Dynamic: description-content-type
|
25
|
+
Dynamic: home-page
|
26
|
+
Dynamic: provides-extra
|
27
|
+
Dynamic: requires-dist
|
28
|
+
Dynamic: requires-python
|
29
|
+
Dynamic: summary
|
30
|
+
|
31
|
+
# JIVAS Command Line Interface (JVCLI)
|
32
|
+
|
33
|
+

|
34
|
+

|
35
|
+

|
36
|
+

|
37
|
+

|
38
|
+
|
39
|
+
`jvcli` is a powerful command-line interface tool designed to streamline interactions with the Jivas Package Repository ([https://jpr.trueselph.com/](https://jpr.trueselph.com/)). It simplifies package management, user authentication, and namespace operations, ensuring seamless software development and deployment. It allows you to create, publish, update, download, and get information about various resources such as actions and agents.
|
40
|
+
|
41
|
+
## Installation
|
42
|
+
|
43
|
+
To install `jvcli`, use `pip`:
|
44
|
+
|
45
|
+
```sh
|
46
|
+
pip install jvcli
|
47
|
+
```
|
48
|
+
|
49
|
+
## Usage
|
50
|
+
|
51
|
+
To use `jvcli`, you need to log in first:
|
52
|
+
|
53
|
+
```sh
|
54
|
+
jvcli login
|
55
|
+
```
|
56
|
+
|
57
|
+
After logging in, you can use any of the available commands. For example, to create a new action:
|
58
|
+
|
59
|
+
```sh
|
60
|
+
jvcli create action --name my_action --version 0.0.1 --description "My first action"
|
61
|
+
```
|
62
|
+
|
63
|
+
To publish an action:
|
64
|
+
|
65
|
+
```sh
|
66
|
+
jvcli publish action --path ./my_action --visibility public
|
67
|
+
```
|
68
|
+
|
69
|
+
For more detailed usage, refer to the help command:
|
70
|
+
|
71
|
+
```sh
|
72
|
+
jvcli --help
|
73
|
+
```
|
74
|
+
|
75
|
+
## 🔰 Contributing
|
76
|
+
|
77
|
+
- **🐛 [Report Issues](https://github.com/TrueSelph/jvcli/issues)**: Submit bugs found or log feature requests for the `jvcli` project.
|
78
|
+
- **💡 [Submit Pull Requests](https://github.com/TrueSelph/jvcli/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
|
79
|
+
|
80
|
+
<details closed>
|
81
|
+
<summary>Contributing Guidelines</summary>
|
82
|
+
|
83
|
+
1. **Fork the Repository**: Start by forking the project repository to your github account.
|
84
|
+
2. **Clone Locally**: Clone the forked repository to your local machine using a git client.
|
85
|
+
```sh
|
86
|
+
git clone https://github.com/TrueSelph/jvcli
|
87
|
+
```
|
88
|
+
3. **Create a New Branch**: Always work on a new branch, giving it a descriptive name.
|
89
|
+
```sh
|
90
|
+
git checkout -b new-feature-x
|
91
|
+
```
|
92
|
+
4. **Make Your Changes**: Develop and test your changes locally.
|
93
|
+
5. **Commit Your Changes**: Commit with a clear message describing your updates.
|
94
|
+
```sh
|
95
|
+
git commit -m 'Implemented new feature x.'
|
96
|
+
```
|
97
|
+
6. **Push to github**: Push the changes to your forked repository.
|
98
|
+
```sh
|
99
|
+
git push origin new-feature-x
|
100
|
+
```
|
101
|
+
7. **Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.
|
102
|
+
8. **Review**: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
|
103
|
+
</details>
|
104
|
+
|
105
|
+
<details open>
|
106
|
+
<summary>Contributor Graph</summary>
|
107
|
+
<br>
|
108
|
+
<p align="left">
|
109
|
+
<a href="https://github.com/TrueSelph/jvcli/graphs/contributors">
|
110
|
+
<img src="https://contrib.rocks/image?repo=TrueSelph/jvcli" />
|
111
|
+
</a>
|
112
|
+
</p>
|
113
|
+
</details>
|
114
|
+
|
115
|
+
## 🎗 License
|
116
|
+
|
117
|
+
This project is protected under the Apache License 2.0. See [LICENSE](./LICENSE) for more information.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
jvcli/__init__.py,sha256=
|
1
|
+
jvcli/__init__.py,sha256=s8Ivv5aUXFCTT3Ob5Tfuliotdbvr6_qdXM0Bbnfil3s,170
|
2
2
|
jvcli/api.py,sha256=gs0ZWf5T6nMJc6m1aGz6qZpqDHhYhhtVsvN6UYwtpAs,11113
|
3
3
|
jvcli/auth.py,sha256=p04T02ufqbENx_93oDPg3xsq7sv-Nabeq3YR1kLXfSg,1215
|
4
4
|
jvcli/cli.py,sha256=qgfKC-oH13EUhDJxoZCSu2f2xlARGp9i0HnRw6D92ZI,908
|
@@ -24,9 +24,9 @@ jvcli/templates/2.0.0/agent_descriptor.yaml,sha256=h6_pxmaP-oJqLDCHAyZ1ckETfWD6D
|
|
24
24
|
jvcli/templates/2.0.0/agent_info.yaml,sha256=3olXRQDQG-543o7zSWWT23kJsK29QGhdx6-tOLXvCk8,207
|
25
25
|
jvcli/templates/2.0.0/agent_knowledge.yaml,sha256=hI0ifr0ICiZGce-oUFovBOmDWxGU1Z2M10WyZH_wS2g,284
|
26
26
|
jvcli/templates/2.0.0/agent_memory.yaml,sha256=_MBgObZcW1UzwWuYQVJiPZ_7TvYbGrDgd-xMuzJEkVo,9
|
27
|
-
jvcli-2.0.
|
28
|
-
jvcli-2.0.
|
29
|
-
jvcli-2.0.
|
30
|
-
jvcli-2.0.
|
31
|
-
jvcli-2.0.
|
32
|
-
jvcli-2.0.
|
27
|
+
jvcli-2.0.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
28
|
+
jvcli-2.0.1.dist-info/METADATA,sha256=9PRVtk6zBS2AvDQzZh5k6BVsz_MNUNFQzMA1mvM0l9Q,3957
|
29
|
+
jvcli-2.0.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
30
|
+
jvcli-2.0.1.dist-info/entry_points.txt,sha256=XunGcL0LWmIMIytaUckUA27czEf8M2Y4aTOfYIpOgrQ,42
|
31
|
+
jvcli-2.0.1.dist-info/top_level.txt,sha256=akZnN9Zy1dFT93N0ms-C8ZXUn-xlhq37nO3jSRp0Y6o,6
|
32
|
+
jvcli-2.0.1.dist-info/RECORD,,
|
jvcli-2.0.0.dist-info/METADATA
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: jvcli
|
3
|
-
Version: 2.0.0
|
4
|
-
Summary: CLI tool for Jivas Package Repository
|
5
|
-
Author: TrueSelph Inc.
|
6
|
-
Author-email: admin@trueselph.com
|
7
|
-
Requires-Python: >=3.12
|
8
|
-
License-File: LICENSE
|
9
|
-
Requires-Dist: click>=8.1.8
|
10
|
-
Requires-Dist: requests>=2.32.3
|
11
|
-
Requires-Dist: packaging>=24.2
|
12
|
-
Requires-Dist: pyaml>=25.1.0
|
13
|
-
Requires-Dist: jac-cloud>=0.1.19
|
14
|
-
Provides-Extra: dev
|
15
|
-
Requires-Dist: pre-commit; extra == "dev"
|
16
|
-
Requires-Dist: pytest; extra == "dev"
|
17
|
-
Requires-Dist: pytest-mock; extra == "dev"
|
18
|
-
Requires-Dist: pytest-cov; extra == "dev"
|
19
|
-
Dynamic: author
|
20
|
-
Dynamic: author-email
|
21
|
-
Dynamic: provides-extra
|
22
|
-
Dynamic: requires-dist
|
23
|
-
Dynamic: requires-python
|
24
|
-
Dynamic: summary
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|