@uipath/codedagent-tool 0.1.14 → 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/tool.js +1 -1
- package/package.json +4 -4
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
|
```
|
package/dist/tool.js
CHANGED
|
@@ -9798,7 +9798,7 @@ var init_src2 = __esm(() => {
|
|
|
9798
9798
|
// package.json
|
|
9799
9799
|
var package_default = {
|
|
9800
9800
|
name: "@uipath/codedagent-tool",
|
|
9801
|
-
version: "0.
|
|
9801
|
+
version: "0.2.0",
|
|
9802
9802
|
description: "Build, run, deploy, and manage AI Agents.",
|
|
9803
9803
|
keywords: [
|
|
9804
9804
|
"cli-tool",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/codedagent-tool",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Build, run, deploy, and manage AI Agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli-tool",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "^1.3.9",
|
|
40
|
-
"@uipath/auth": "0.
|
|
41
|
-
"@uipath/common": "0.
|
|
42
|
-
"@uipath/filesystem": "0.
|
|
40
|
+
"@uipath/auth": "0.2.0",
|
|
41
|
+
"@uipath/common": "0.2.0",
|
|
42
|
+
"@uipath/filesystem": "0.2.0",
|
|
43
43
|
"commander": "^14.0.3",
|
|
44
44
|
"typescript": "^5"
|
|
45
45
|
}
|