@uipath/codedagent-tool 0.1.14 → 0.9.0

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.
Files changed (3) hide show
  1. package/README.md +11 -11
  2. package/dist/tool.js +21536 -2939
  3. package/package.json +6 -5
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Python Tool
1
+ # Coded Agent Tool
2
2
 
3
3
  A command-line tool over [uipath-python](https://github.com/UiPath/uipath-python)
4
4
 
@@ -16,7 +16,7 @@ A command-line tool over [uipath-python](https://github.com/UiPath/uipath-python
16
16
  Detects Python installation and verifies required package is installed.
17
17
 
18
18
  ```bash
19
- uipath ca setup [options]
19
+ uip codedagent setup [options]
20
20
  ```
21
21
 
22
22
  Options:
@@ -27,7 +27,7 @@ Options:
27
27
  Executes the configured Python package with provided arguments.
28
28
 
29
29
  ```bash
30
- uipath ca exec [args...]
30
+ uip codedagent exec [args...]
31
31
  ```
32
32
 
33
33
  Options:
@@ -78,26 +78,26 @@ Run 'uip codedagent setup' to reconfigure.
78
78
  uip codedagent setup
79
79
 
80
80
  # Force re-detection
81
- uipath codedagent setup --force
81
+ uip codedagent setup --force
82
82
 
83
83
  # Setup with custom package via environment variable
84
84
  export CLOUD_TOOL_PACKAGE_NAME=my-package
85
- uipath codedagent setup
85
+ uip codedagent setup
86
86
 
87
87
  # Run package with arguments
88
- uipath ca run --help
89
- uipath ca run command --option value
88
+ uip codedagent run --help
89
+ uip codedagent run command --option value
90
90
 
91
91
  # Interactive command
92
- uipath ca run interactive-shell
92
+ uip codedagent run interactive-shell
93
93
 
94
94
  # Override Python versions via environment variable
95
95
  export PYTHON_TOOL_PYTHON_VERSIONS=3.10,3.11
96
- uipath ca setup
96
+ uip codedagent setup
97
97
 
98
98
  # Full configuration example
99
99
  export PYTHON_TOOL_PYTHON_VERSIONS=3.10,3.11,3.12
100
100
  export CLOUD_TOOL_PACKAGE_NAME=uipath-python
101
- uipath ca setup
102
- uipath ca run --version
101
+ uip codedagent setup
102
+ uip codedagent run --version
103
103
  ```