jvcli 2.0.19__py3-none-any.whl → 2.0.20__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.
@@ -0,0 +1,644 @@
1
+ Metadata-Version: 2.4
2
+ Name: jvcli
3
+ Version: 2.0.20
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.20
16
+ Requires-Dist: streamlit>=1.42.0
17
+ Requires-Dist: streamlit-elements>=0.1.0
18
+ Requires-Dist: streamlit-router>=0.1.8
19
+ Requires-Dist: streamlit-javascript>=0.1.5
20
+ Requires-Dist: python-dotenv>=1.0.0
21
+ Provides-Extra: dev
22
+ Requires-Dist: pre-commit; extra == "dev"
23
+ Requires-Dist: pytest; extra == "dev"
24
+ Requires-Dist: pytest-mock; extra == "dev"
25
+ Requires-Dist: pytest-cov; extra == "dev"
26
+ Dynamic: author
27
+ Dynamic: author-email
28
+ Dynamic: description
29
+ Dynamic: description-content-type
30
+ Dynamic: home-page
31
+ Dynamic: license-file
32
+ Dynamic: provides-extra
33
+ Dynamic: requires-dist
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+ # JIVAS Command Line Interface (JVCLI)
38
+
39
+ ![GitHub release (latest by date)](https://img.shields.io/github/v/release/TrueSelph/jvcli)
40
+ ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/TrueSelph/jvcli/test-jvcli.yaml)
41
+ ![GitHub issues](https://img.shields.io/github/issues/TrueSelph/jvcli)
42
+ ![GitHub pull requests](https://img.shields.io/github/issues-pr/TrueSelph/jvcli)
43
+ ![GitHub](https://img.shields.io/github/license/TrueSelph/jvcli)
44
+
45
+ `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.
46
+
47
+ ## Installation
48
+
49
+ To install `jvcli`, use `pip`:
50
+
51
+ ```sh
52
+ pip install jvcli
53
+ ```
54
+
55
+ ## Usage
56
+
57
+ To use `jvcli`, you need to log in first:
58
+
59
+ ```sh
60
+ jvcli login
61
+ ```
62
+
63
+ After logging in, you can use any of the available commands. For example, to create a new action:
64
+
65
+ ```sh
66
+ jvcli create action --name my_action --version 0.0.1 --description "My first action"
67
+ ```
68
+
69
+ ## Command Reference
70
+
71
+ This section provides a comprehensive guide to all available JVCLI commands, their options, and examples of their usage.
72
+
73
+ ### Authentication Commands
74
+
75
+ Authentication commands help you create and manage your Jivas Package Repository account.
76
+
77
+ #### `jvcli signup`
78
+
79
+ Create a new account on the Jivas Package Repository. This command will prompt you for your username, email, and password if not provided as options.
80
+
81
+ ```sh
82
+ # Interactive signup with prompts
83
+ jvcli signup
84
+
85
+ # Providing all parameters directly
86
+ jvcli signup --username myusername --email user@example.com --password mypassword
87
+ ```
88
+
89
+ Options:
90
+ - `--username`: Your desired username for the JPR account
91
+ - `--email`: Your email address
92
+ - `--password`: Your password (will be hidden during input)
93
+
94
+ After successful signup, your authentication token will be automatically saved to your local configuration.
95
+
96
+ #### `jvcli login`
97
+
98
+ Log in to your existing Jivas Package Repository account. This command authenticates you and saves the authentication token locally for future commands.
99
+
100
+ ```sh
101
+ # Interactive login with prompts
102
+ jvcli login
103
+
104
+ # Providing credentials directly
105
+ jvcli login --username user@example.com --password mypassword
106
+ ```
107
+
108
+ Options:
109
+ - `--username`: Your email address or username
110
+ - `--password`: Your password (will be hidden during input)
111
+
112
+ Upon successful login, your token will be saved locally and you'll see a confirmation message.
113
+
114
+ #### `jvcli logout`
115
+
116
+ Log out from the Jivas Package Repository by removing your local authentication token.
117
+
118
+ ```sh
119
+ jvcli logout
120
+ ```
121
+
122
+ This command doesn't require any options and will clear all local authentication data.
123
+
124
+ ### Project Management Commands
125
+
126
+ These commands help you manage your Jivas projects, from initial setup to maintenance.
127
+
128
+ #### `jvcli startproject`
129
+
130
+ Create a new Jivas project with all necessary scaffolding and folder structure. This command sets up a complete project template with all required files.
131
+
132
+ ```sh
133
+ # Create a new project with default settings
134
+ jvcli startproject my_project
135
+
136
+ # Create a project with a specific Jivas version
137
+ jvcli startproject my_project --version 2.0.0
138
+
139
+ # Create a project without generating an environment file
140
+ jvcli startproject my_project --no-env
141
+ ```
142
+
143
+ Options:
144
+ - `--version`: Specify the Jivas project version to use for scaffolding (default: latest supported version)
145
+ - `--no-env`: Skip generating the .env file with default configurations
146
+
147
+ This command creates a directory structure with:
148
+ - Actions directory for custom actions
149
+ - DAF directory for agent packages
150
+ - Main JAC file for your JIVAS application
151
+ - Configuration files and shell scripts for easy management
152
+
153
+ #### `jvcli clean`
154
+
155
+ Clean the Jac files in the current directory and subdirectories by removing compiled artifacts and temporary files.
156
+
157
+ ```sh
158
+ # Clean the current directory
159
+ jvcli clean
160
+ ```
161
+
162
+ This command executes `jac clean` under the hood and ensures your project is in a clean state before rebuilding or deploying.
163
+
164
+ ### Create Commands
165
+
166
+ Create commands help you generate new resources like actions, agents, and namespaces with the proper structure and configuration.
167
+
168
+ #### `jvcli create action`
169
+
170
+ Create a new action with its folder structure, configuration files, and code templates. Actions are modular components that can be used by agents to perform specific tasks.
171
+
172
+ ```sh
173
+ # Create a basic action with interactive prompts
174
+ jvcli create action
175
+
176
+ # Create an action with a specific name
177
+ jvcli create action --name custom_action
178
+
179
+ # Create a fully customized action
180
+ jvcli create action \
181
+ --name custom_action \
182
+ --version 1.0.0 \
183
+ --description "A custom action for processing data" \
184
+ --type interact_action \
185
+ --jivas_version 2.0.0 \
186
+ --singleton true \
187
+ --path ./my_actions \
188
+ --namespace my-namespace
189
+ ```
190
+
191
+ Options:
192
+ - `--name`: Name of the action (must be snake_case) - will be prompted if not provided
193
+ - `--version`: Version of the action (default: 0.0.1)
194
+ - `--jivas_version`: Version of Jivas to target (default: latest supported)
195
+ - `--description`: Detailed description of the action's purpose
196
+ - `--type`: Type of action - can be one of:
197
+ - `action`: Standard action (default)
198
+ - `interact_action`: Action that can interact with users
199
+ - `vector_store_action`: Action for vector database operations
200
+ - `--singleton`: Whether the action should be singleton (default: true)
201
+ - `--path`: Directory to create the action folder in (default: ./actions)
202
+ - `--namespace`: Namespace for the action (defaults to your username from token)
203
+
204
+ The command creates:
205
+ - Action directory structure
206
+ - info.yaml configuration file
207
+ - JAC files with code templates
208
+ - Streamlit app files for the action's UI
209
+ - README and CHANGELOG files
210
+
211
+ #### `jvcli create agent`
212
+
213
+ Create a new agent (DAF package) with all necessary configuration files. Agents are the main building blocks of JIVAS applications.
214
+
215
+ ```sh
216
+ # Create a basic agent with interactive prompts
217
+ jvcli create agent
218
+
219
+ # Create an agent with a specific name
220
+ jvcli create agent --name custom_agent
221
+
222
+ # Create a fully customized agent
223
+ jvcli create agent \
224
+ --name custom_agent \
225
+ --version 1.0.0 \
226
+ --description "A custom JIVAS agent for customer support" \
227
+ --jivas_version 2.0.0 \
228
+ --path ./my_agents \
229
+ --namespace my-namespace
230
+ ```
231
+
232
+ Options:
233
+ - `--name`: Name of the agent (must be snake_case) - will be prompted if not provided
234
+ - `--version`: Version of the agent (default: 0.0.1)
235
+ - `--jivas_version`: Version of Jivas to target (default: latest supported)
236
+ - `--description`: Detailed description of the agent's purpose (default: "A jivas agent autocreated by the jvcli")
237
+ - `--path`: Directory to create the agent in (default: ./daf)
238
+ - `--namespace`: Namespace for the agent (defaults to your username from token)
239
+
240
+ The command creates:
241
+ - Agent directory structure
242
+ - info.yaml package configuration
243
+ - descriptor.yaml defining agent behavior
244
+ - knowledge.yaml for agent knowledge base
245
+ - memory.yaml for agent memory storage
246
+ - README and CHANGELOG files
247
+
248
+ #### `jvcli create namespace`
249
+
250
+ Create a new namespace through the API to organize your packages. Namespaces help you group related packages and manage permissions.
251
+
252
+ ```sh
253
+ # Create a namespace with interactive prompt
254
+ jvcli create namespace
255
+
256
+ # Create a namespace with a specific name
257
+ jvcli create namespace --name my-namespace
258
+ ```
259
+
260
+ Options:
261
+ - `--name`: Name of the namespace (must be lowercase with only letters, numbers, and hyphens)
262
+
263
+ This command requires you to be authenticated with the JPR. After creating the namespace, it will be added to your account's permissions.
264
+
265
+ ### Publish Commands
266
+
267
+ Publish commands allow you to package and publish your actions and agents to the Jivas Package Repository.
268
+
269
+ #### `jvcli publish action`
270
+
271
+ Package and publish an action to the Jivas Package Repository. This makes your action available for others to download and use.
272
+
273
+ ```sh
274
+ # Publish an action
275
+ jvcli publish action --path ./actions/my_action
276
+
277
+ # Publish with specific visibility
278
+ jvcli publish action --path ./actions/my_action --visibility private
279
+
280
+ # Generate package without publishing
281
+ jvcli publish action --path ./actions/my_action --package-only --output ./packages
282
+
283
+ # Publish a pre-packaged tarball with explicit namespace
284
+ jvcli publish action --path ./packages/my_action.tar.gz --namespace my-namespace
285
+ ```
286
+
287
+ Options:
288
+ - `--path`: Path to the directory containing the action to publish (or path to a tarball)
289
+ - `--visibility`: Visibility of the published action (`public` or `private`, default: `public`)
290
+ - `--package-only`: Only generate the package without publishing to JPR
291
+ - `--output`, `-o`: Output path for the generated package (used with `--package-only`)
292
+ - `--namespace`: Namespace of the package (required when `--path` is a tarball)
293
+
294
+ The command will validate your action's structure, create a tarball package, and upload it to the JPR unless `--package-only` is specified.
295
+
296
+ #### `jvcli publish agent`
297
+
298
+ Package and publish an agent (DAF) to the Jivas Package Repository. This makes your agent available for others to download and use.
299
+
300
+ ```sh
301
+ # Publish an agent
302
+ jvcli publish agent --path ./daf/my_agent
303
+
304
+ # Publish with specific visibility
305
+ jvcli publish agent --path ./daf/my_agent --visibility private
306
+
307
+ # Generate package without publishing
308
+ jvcli publish agent --path ./daf/my_agent --package-only --output ./packages
309
+
310
+ # Publish a pre-packaged tarball with explicit namespace
311
+ jvcli publish agent --path ./packages/my_agent.tar.gz --namespace my-namespace
312
+ ```
313
+
314
+ Options:
315
+ - `--path`: Path to the directory containing the agent to publish (or path to a tarball)
316
+ - `--visibility`: Visibility of the published agent (`public` or `private`, default: `public`)
317
+ - `--package-only`: Only generate the package without publishing to JPR
318
+ - `--output`, `-o`: Output path for the generated package (used with `--package-only`)
319
+ - `--namespace`: Namespace of the package (required when `--path` is a tarball)
320
+
321
+ The command will validate your agent's structure, create a tarball package, and upload it to the JPR unless `--package-only` is specified.
322
+
323
+ ### Download Commands
324
+
325
+ Download commands let you retrieve actions and agents from the Jivas Package Repository.
326
+
327
+ #### `jvcli download action`
328
+
329
+ Download a JIVAS action package from the repository to your local environment.
330
+
331
+ ```sh
332
+ # Download the latest version of an action
333
+ jvcli download action my_namespace/custom_action
334
+
335
+ # Download a specific version
336
+ jvcli download action my_namespace/custom_action 1.0.0
337
+
338
+ # Download to a custom directory
339
+ jvcli download action my_namespace/custom_action --path ./my_custom_actions
340
+
341
+ # Download a specific version to a custom directory
342
+ jvcli download action my_namespace/custom_action 1.0.0 --path ./my_custom_actions
343
+ ```
344
+
345
+ Arguments:
346
+ - `name`: Name of the action to download (including namespace)
347
+ - `version`: Version of the action (optional, default: latest)
348
+
349
+ Options:
350
+ - `--path`: Directory to download the action to (optional, default: ./actions)
351
+
352
+ The downloaded action will be extracted to a directory named after the action in the specified path.
353
+
354
+ #### `jvcli download agent`
355
+
356
+ Download a JIVAS agent package (DAF) from the repository to your local environment.
357
+
358
+ ```sh
359
+ # Download the latest version of an agent
360
+ jvcli download agent my_namespace/custom_agent
361
+
362
+ # Download a specific version
363
+ jvcli download agent my_namespace/custom_agent 1.0.0
364
+
365
+ # Download to a custom directory
366
+ jvcli download agent my_namespace/custom_agent --path ./my_custom_agents
367
+
368
+ # Download a specific version to a custom directory
369
+ jvcli download agent my_namespace/custom_agent 1.0.0 --path ./my_custom_agents
370
+ ```
371
+
372
+ Arguments:
373
+ - `name`: Name of the agent to download (including namespace)
374
+ - `version`: Version of the agent (optional, default: latest)
375
+
376
+ Options:
377
+ - `--path`: Directory to download the agent to (optional, default: ./daf)
378
+
379
+ The downloaded agent will be extracted to a directory named after the agent in the specified path.
380
+
381
+ ### Info Commands
382
+
383
+ Info commands provide detailed information about packages in the Jivas Package Repository.
384
+
385
+ #### `jvcli info action`
386
+
387
+ Get detailed information about an action package in the repository. This includes metadata, dependencies, and configuration details.
388
+
389
+ ```sh
390
+ # Get info for the latest version of an action
391
+ jvcli info action my_namespace/custom_action
392
+
393
+ # Get info for a specific version
394
+ jvcli info action my_namespace/custom_action 1.0.0
395
+ ```
396
+
397
+ Arguments:
398
+ - `name`: Name of the action (including namespace)
399
+ - `version`: Version of the action (optional, default: latest)
400
+
401
+ The output displays the complete package information in YAML format, including:
402
+ - Package metadata (name, version, author)
403
+ - Description and title
404
+ - Dependencies and compatibility information
405
+ - Configuration details
406
+
407
+ #### `jvcli info agent`
408
+
409
+ Get detailed information about an agent package in the repository. This includes metadata, dependencies, and configuration details.
410
+
411
+ ```sh
412
+ # Get info for the latest version of an agent
413
+ jvcli info agent my_namespace/custom_agent
414
+
415
+ # Get info for a specific version
416
+ jvcli info agent my_namespace/custom_agent 1.0.0
417
+ ```
418
+
419
+ Arguments:
420
+ - `name`: Name of the agent (including namespace)
421
+ - `version`: Version of the agent (optional, default: latest)
422
+
423
+ The output displays the complete package information in YAML format, including:
424
+ - Package metadata (name, version, author)
425
+ - Description and title
426
+ - Dependencies and compatibility information
427
+ - Configuration details
428
+
429
+ ### Update Commands
430
+
431
+ Update commands allow you to modify existing resources like namespaces.
432
+
433
+ #### `jvcli update namespace`
434
+
435
+ Perform update operations on a specified namespace, such as inviting users or transferring ownership.
436
+
437
+ ```sh
438
+ # Invite a user to a namespace
439
+ jvcli update namespace my-namespace --invite user@example.com
440
+
441
+ # Transfer ownership of a namespace
442
+ jvcli update namespace my-namespace --transfer newowner@example.com
443
+ ```
444
+
445
+ Arguments:
446
+ - `namespace`: Name of the namespace to update
447
+
448
+ Options:
449
+ - `--invite`: Email address of a user to invite to the namespace
450
+ - `--transfer`: Email address of a user to transfer namespace ownership to
451
+
452
+ Note: The `--invite` and `--transfer` options are mutually exclusive - you can only use one at a time.
453
+
454
+ ### Server Commands
455
+
456
+ Server commands help you manage the Jivas Server, including launching, authentication, and agent management.
457
+
458
+ #### `jvcli server launch`
459
+
460
+ Launch the Jivas Server by running a specified JAC file. This starts the server for local development and testing.
461
+
462
+ ```sh
463
+ # Launch the server with the default main.jac file
464
+ jvcli server launch
465
+
466
+ # Launch the server with a custom JAC file
467
+ jvcli server launch --jac-file custom.jac
468
+ ```
469
+
470
+ Options:
471
+ - `--jac-file`: Path to the JAC file to run (default: main.jac in the current directory)
472
+
473
+ This command starts the Jivas Server, which will listen for connections on the default port (usually 8000).
474
+
475
+ #### `jvcli server login`
476
+
477
+ Log in to a running Jivas Server and get an authentication token. This token can be used for subsequent API calls.
478
+
479
+ ```sh
480
+ # Interactive login with prompts
481
+ jvcli server login
482
+
483
+ # Providing credentials directly
484
+ jvcli server login --email admin@example.com --password mypassword
485
+ ```
486
+
487
+ Options:
488
+ - `--email`: Email address for Jivas login (defaults to JIVAS_USER env var if set)
489
+ - `--password`: Password for Jivas login (defaults to JIVAS_PASSWORD env var if set)
490
+
491
+ Upon successful login, the token will be printed and stored in the JIVAS_TOKEN environment variable.
492
+
493
+ #### `jvcli server createadmin`
494
+
495
+ Create a system administrator account on a running Jivas Server. This is useful for initial setup.
496
+
497
+ ```sh
498
+ # Interactive createadmin with prompts
499
+ jvcli server createadmin
500
+
501
+ # Providing credentials directly
502
+ jvcli server createadmin --email admin@example.com --password mypassword
503
+ ```
504
+
505
+ Options:
506
+ - `--email`: Email address for the system admin (defaults to JIVAS_USER env var if set)
507
+ - `--password`: Password for the system admin (defaults to JIVAS_PASSWORD env var if set)
508
+
509
+ This command behaves differently based on your database configuration:
510
+ - With MongoDB configured: Uses the `jac create_system_admin` command
511
+ - Without MongoDB: Uses the server's API signup endpoint
512
+
513
+ #### `jvcli server initagents`
514
+
515
+ Initialize agents in the Jivas system. This command reloads all agents and their actions, useful after making changes.
516
+
517
+ ```sh
518
+ jvcli server initagents
519
+ ```
520
+
521
+ This command:
522
+ 1. Checks if the server is running
523
+ 2. Logs in to the server
524
+ 3. Cleans JAC files before reinitializing
525
+ 4. Sends a request to the server to reinitialize all agents
526
+
527
+ #### `jvcli server importagent`
528
+
529
+ Import an agent from a DAF package into a running Jivas server. This allows you to add new agents to your system.
530
+
531
+ ```sh
532
+ # Import the latest version of an agent
533
+ jvcli server importagent my_namespace/custom_agent
534
+
535
+ # Import a specific version
536
+ jvcli server importagent my_namespace/custom_agent 1.0.0
537
+ ```
538
+
539
+ Arguments:
540
+ - `agent_name`: Name of the agent to import (including namespace)
541
+ - `version`: Version of the agent (optional, default: latest)
542
+
543
+ This command:
544
+ 1. Checks if the server is running
545
+ 2. Logs in to the server
546
+ 3. Sends a request to import the specified agent
547
+ 4. Displays the agent ID upon successful import
548
+
549
+ ### Studio Commands
550
+
551
+ Studio commands help you manage the Jivas Studio, a web-based development environment for Jivas.
552
+
553
+ #### `jvcli studio launch`
554
+
555
+ Launch the Jivas Studio on a specified port. Jivas Studio provides a visual interface for building and managing agents.
556
+
557
+ ```sh
558
+ # Launch with default settings
559
+ jvcli studio launch
560
+
561
+ # Launch on a custom port
562
+ jvcli studio launch --port 9000
563
+
564
+ # Launch with authentication required
565
+ jvcli studio launch --require-auth
566
+ ```
567
+
568
+ Options:
569
+ - `--port`: Port for the studio to launch on (default: 8989)
570
+ - `--require-auth`: Require authentication for studio API access (default: false)
571
+
572
+ When launched, the Studio will be accessible via a web browser at `http://localhost:<port>`.
573
+
574
+ ### Client Commands
575
+
576
+ Client commands help you manage the Jivas Client, which provides a user interface for interacting with agents.
577
+
578
+ #### `jvcli client launch`
579
+
580
+ Launch the Jivas Client, which provides a web interface for configuring and chatting with agents.
581
+
582
+ ```sh
583
+ # Launch with default settings
584
+ jvcli client launch
585
+
586
+ # Launch on a custom port
587
+ jvcli client launch --port 9001
588
+
589
+ # Launch with custom server URLs
590
+ jvcli client launch \
591
+ --jivas_url http://my-server:8000 \
592
+ --studio_url http://my-studio:8989
593
+ ```
594
+
595
+ Options:
596
+ - `--port`: Port for the client to launch on (default: 8501)
597
+ - `--jivas_url`: URL for the Jivas API (default: http://localhost:8000 or JIVAS_BASE_URL env var)
598
+ - `--studio_url`: URL for the Jivas Studio (default: http://localhost:8989 or JIVAS_STUDIO_URL env var)
599
+
600
+ When launched, the Client will be accessible via a web browser at `http://localhost:<port>`.
601
+
602
+ ## 🔰 Contributing
603
+
604
+ - **🐛 [Report Issues](https://github.com/TrueSelph/jvcli/issues)**: Submit bugs found or log feature requests for the `jvcli` project.
605
+ - **💡 [Submit Pull Requests](https://github.com/TrueSelph/jvcli/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
606
+
607
+ <details closed>
608
+ <summary>Contributing Guidelines</summary>
609
+
610
+ 1. **Fork the Repository**: Start by forking the project repository to your github account.
611
+ 2. **Clone Locally**: Clone the forked repository to your local machine using a git client.
612
+ ```sh
613
+ git clone https://github.com/TrueSelph/jvcli
614
+ ```
615
+ 3. **Create a New Branch**: Always work on a new branch, giving it a descriptive name.
616
+ ```sh
617
+ git checkout -b new-feature-x
618
+ ```
619
+ 4. **Make Your Changes**: Develop and test your changes locally.
620
+ 5. **Commit Your Changes**: Commit with a clear message describing your updates.
621
+ ```sh
622
+ git commit -m 'Implemented new feature x.'
623
+ ```
624
+ 6. **Push to github**: Push the changes to your forked repository.
625
+ ```sh
626
+ git push origin new-feature-x
627
+ ```
628
+ 7. **Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.
629
+ 8. **Review**: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
630
+ </details>
631
+
632
+ <details open>
633
+ <summary>Contributor Graph</summary>
634
+ <br>
635
+ <p align="left">
636
+ <a href="https://github.com/TrueSelph/jvcli/graphs/contributors">
637
+ <img src="https://contrib.rocks/image?repo=TrueSelph/jvcli" />
638
+ </a>
639
+ </p>
640
+ </details>
641
+
642
+ ## 🎗 License
643
+
644
+ 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=fVKPAMLff8BS1NopmRtRFg7MJGigwzhOrNXO8NsVnKA,171
1
+ jvcli/__init__.py,sha256=7DZPxtJmca6a1wPs0ff-L6lGopkyfrLpndciskhCi8Q,171
2
2
  jvcli/api.py,sha256=gd-EP1e75e7HijyrP-EF6i_jjCo6YUeSbm1l5daKLfQ,10352
3
3
  jvcli/auth.py,sha256=mHP425hvXhNxzeX--cApkrP7SdDPmfG6V0Li5TLHmIg,1953
4
4
  jvcli/cli.py,sha256=ntTkriNGtfxFAdJw5ikdq2wD43pIqDpb7lfXsCMXOWQ,1191
@@ -22,7 +22,7 @@ jvcli/commands/create.py,sha256=HIL01nTcyEEXk4yLMwnPsRtj_cbhsuz2AEN2BwWeI-o,1339
22
22
  jvcli/commands/download.py,sha256=GiLX_43CQOW9d5vF04fAszOWh3AB-7Mgote4tJ9RVng,3416
23
23
  jvcli/commands/info.py,sha256=NyIDpR_AGMMSFPE0tFZv4dIuv_gwqrfd589zQAA_Q3s,2685
24
24
  jvcli/commands/publish.py,sha256=q1ihoL42GmEsU5ggHN3bcg8QD26kjRUZGfQpRzI2GMo,6630
25
- jvcli/commands/server.py,sha256=ODkzn4HoAlvyq52KODDhGS-Bjhvl6X7DAjnnUpMpfX0,8092
25
+ jvcli/commands/server.py,sha256=9Ak9w9xENsYV_U2XQGAny8zc6iLfJSMc-cazjeD5Hs0,8136
26
26
  jvcli/commands/startproject.py,sha256=5qis2Dhed-HhKqZ8e37Xpy__Rmqga8cTwAOmfGVPzmU,3375
27
27
  jvcli/commands/studio.py,sha256=avD5M3Ss7R6AtUMN3Mk6AmTyPJ7LnXcmwQ0mbRzivrQ,8192
28
28
  jvcli/commands/update.py,sha256=LwCLg-W1b8WSdFkiiJ8WwTit2HJXTLpM5OQ4WBTe9C4,1997
@@ -45,17 +45,17 @@ jvcli/templates/2.0.0/agent_descriptor.yaml,sha256=h6_pxmaP-oJqLDCHAyZ1ckETfWD6D
45
45
  jvcli/templates/2.0.0/agent_info.yaml,sha256=3olXRQDQG-543o7zSWWT23kJsK29QGhdx6-tOLXvCk8,207
46
46
  jvcli/templates/2.0.0/agent_knowledge.yaml,sha256=hI0ifr0ICiZGce-oUFovBOmDWxGU1Z2M10WyZH_wS2g,284
47
47
  jvcli/templates/2.0.0/agent_memory.yaml,sha256=_MBgObZcW1UzwWuYQVJiPZ_7TvYbGrDgd-xMuzJEkVo,9
48
- jvcli/templates/2.0.0/project/README.md,sha256=cr6yHG1qEzO7xDFchEDpl8tKawVvF0tsUVTrWyxjiG4,1077
49
- jvcli/templates/2.0.0/project/env.example,sha256=f8udeW8ElKiy_MZ-neWa3j3ctNZBMRUYXtHqJLOucXA,1301
48
+ jvcli/templates/2.0.0/project/README.md,sha256=QJmfVImxXIKWaj0u1crABJMLhGVgkTKZNVix8c0B-uE,17679
49
+ jvcli/templates/2.0.0/project/env.example,sha256=NPMIBv-v_uK5ZFM_-7_73hHrZae6QVOVgKbejI3ZUgs,1314
50
50
  jvcli/templates/2.0.0/project/gitignore.example,sha256=KG1wl-o8ltNs4d8qCVgok5F2waUYqCJ5-HJq58Kh79I,530
51
51
  jvcli/templates/2.0.0/project/globals.jac,sha256=CEt7L25wEZfE6TupqpM1ilHbtJMQQWExDQ5GJlkHPts,56
52
52
  jvcli/templates/2.0.0/project/main.jac,sha256=r37jsaGq-85YvDbHP3bQvBXk0u8w0rtRTZTNxZOjTW0,48
53
53
  jvcli/templates/2.0.0/project/actions/README.md,sha256=TU1t-rOBH5WQP_HUWaEBLq5BbPv4jejtjIrwTW4hZwM,1742
54
54
  jvcli/templates/2.0.0/project/daf/README.md,sha256=fO-dcc3j-1E6sFagIvvJsISAth11N-2d64G0yHi7JrY,1682
55
55
  jvcli/templates/2.0.0/project/tests/README.md,sha256=-1ZXkxuUKa6tMw_jlF3rpCvUFq8ijW2L-nSuAkbCANo,917
56
- jvcli-2.0.19.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
57
- jvcli-2.0.19.dist-info/METADATA,sha256=qVeyRWWQp6qKsJGNefRQ4jUS6lvkOEVED9KxYEHVtcc,12229
58
- jvcli-2.0.19.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
59
- jvcli-2.0.19.dist-info/entry_points.txt,sha256=XunGcL0LWmIMIytaUckUA27czEf8M2Y4aTOfYIpOgrQ,42
60
- jvcli-2.0.19.dist-info/top_level.txt,sha256=akZnN9Zy1dFT93N0ms-C8ZXUn-xlhq37nO3jSRp0Y6o,6
61
- jvcli-2.0.19.dist-info/RECORD,,
56
+ jvcli-2.0.20.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
57
+ jvcli-2.0.20.dist-info/METADATA,sha256=gGszGZTT-H41S6IADbTnS_1VHAnXBaeDLSlsshwr-xI,21604
58
+ jvcli-2.0.20.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
59
+ jvcli-2.0.20.dist-info/entry_points.txt,sha256=XunGcL0LWmIMIytaUckUA27czEf8M2Y4aTOfYIpOgrQ,42
60
+ jvcli-2.0.20.dist-info/top_level.txt,sha256=akZnN9Zy1dFT93N0ms-C8ZXUn-xlhq37nO3jSRp0Y6o,6
61
+ jvcli-2.0.20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.1)
2
+ Generator: setuptools (79.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5