@uipath/codedagent-tool 0.1.12 → 0.2.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.
- package/README.md +11 -11
- package/dist/index.js +2146 -5
- package/dist/tool.js +23943 -166
- package/package.json +5 -12
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
85
|
+
uip codedagent setup
|
|
86
86
|
|
|
87
87
|
# Run package with arguments
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
uip codedagent run --help
|
|
89
|
+
uip codedagent run command --option value
|
|
90
90
|
|
|
91
91
|
# Interactive command
|
|
92
|
-
|
|
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
|
-
|
|
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
|
-
|
|
102
|
-
|
|
101
|
+
uip codedagent setup
|
|
102
|
+
uip codedagent run --version
|
|
103
103
|
```
|