Skip to content

Commit a06cf69

Browse files
chore: remove CLI and codedapp-tool packages (#347)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9ae5410 commit a06cf69

138 files changed

Lines changed: 1350 additions & 22241 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,3 @@ jobs:
4444

4545
- name: Run SDK Tests
4646
run: npm run test:coverage -- --run
47-
48-
- name: Run CLI Tests
49-
run: npm run test:coverage --workspace=packages/cli

.github/workflows/pr-checks.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
- name: Run SDK Tests
3838
run: npm run test:coverage -- --run
3939

40-
- name: Run CLI Tests
41-
run: npm run test:coverage --workspace=packages/cli
42-
4340
- name: Build Project
4441
run: npm run build
4542

@@ -98,7 +95,6 @@ jobs:
9895
echo "- ✅ Dependencies installed successfully" >> $GITHUB_STEP_SUMMARY
9996
echo "- ✅ Typecheck passed" >> $GITHUB_STEP_SUMMARY
10097
echo "- ✅ SDK tests passed" >> $GITHUB_STEP_SUMMARY
101-
echo "- ✅ CLI tests passed" >> $GITHUB_STEP_SUMMARY
10298
echo "- ✅ Build completed successfully" >> $GITHUB_STEP_SUMMARY
10399
if [ "${{ github.base_ref }}" == "main" ]; then
104100
echo "- ✅ All integration tests passed" >> $GITHUB_STEP_SUMMARY

.github/workflows/publish.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,14 @@ jobs:
2929
- name: Update Telemetry Constants
3030
shell: bash
3131
run: |
32-
# Get versions from respective package.json files
33-
CLI_VERSION=$(node -p "require('./packages/cli/package.json').version")
3432
SDK_VERSION=$(node -p "require('./package.json').version")
35-
36-
# Replace placeholders in both telemetry constants files
37-
# CLI constants - uses CLI_VERSION from CLI package.json
38-
sed -i 's|\$CONNECTION_STRING|${{ secrets.CONNECTION_STRING }}|g' packages/cli/src/telemetry/constants.ts
39-
sed -i "s|\$CLI_VERSION|$CLI_VERSION|g" packages/cli/src/telemetry/constants.ts
4033
4134
# SDK core constants - uses SDK_VERSION from root package.json
4235
sed -i 's|\$CONNECTION_STRING|${{ secrets.CONNECTION_STRING }}|g' src/core/telemetry/constants.ts
4336
sed -i "s|\$SDK_VERSION|$SDK_VERSION|g" src/core/telemetry/constants.ts
44-
37+
4538
echo "Updated telemetry constants with:"
4639
echo "CONNECTION_STRING: ${{ secrets.CONNECTION_STRING }}"
47-
echo "- CLI_VERSION (from CLI package): $CLI_VERSION"
4840
echo "- SDK_VERSION (from root package): $SDK_VERSION"
4941
5042
- name: Build

Agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TypeScript SDK for UiPath platform APIs. Provides typed clients for Action Cente
55
## Quick reference
66

77
```bash
8-
npm install # install deps (npm workspaces: root + packages/cli)
8+
npm install # install deps
99
npm run build # rollup build → dist/ (ESM, CJS, UMD, .d.ts)
1010
npm test # vitest
1111
npm run test:unit # unit tests only (tests/unit/)

agent_docs/architecture.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ tests/
1919
unit/ # Mirrors src/ structure
2020
integration/ # Integration tests (real API calls)
2121
utils/ # Shared mocks, constants, test setup helpers
22-
packages/
23-
cli/ # Separate CLI package
2422
samples/ # Sample apps (process-app, conversational-agent-app, etc.)
2523
docs/ # MkDocs source; API docs generated via typedoc
2624
```

docs/release-policy.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ When upgrading between minor versions, users should review the list of breaking
5050
The following components are considered part of the public API:
5151

5252
- All classes and methods in the `src` directory
53-
- CLI commands and their interfaces
5453

5554
## Breaking Changes
5655

0 commit comments

Comments
 (0)