Skip to content

Commit 53ae309

Browse files
Merge pull request #433 from jeremiaswerner/code-engine-skill-3
Adjust the installation procedure to install locally with npx
2 parents a4f6424 + f4183f7 commit 53ae309

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

ai/skills/code-engine-specialist/references/patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ ibmcloud ce application update --name my-app \
364364
--probe-live initial-delay=2 \
365365
--probe-live interval=10 \
366366
--probe-ready type="http" \
367-
--probe-ready path="/health" \
367+
--probe-ready path="/ready" \
368368
--probe-ready initial-delay=2 \
369369
--probe-ready interval=10
370370
```

content/posts/deploy-from-bob/index.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2026-06-21
44
description: "Using Bob to deploy an app to Code Engine"
55
tags: ["Bob", "serverless", "code engine", "AI"]
66
featureImage: "featured.jpg"
7-
draft: true
7+
draft: false
88
authors: ["uwefassnacht","jeremiaswerner"]
99
---
1010

@@ -30,7 +30,6 @@ Before we begin, make sure you have:
3030

3131
1. **An IBM Cloud account** - [Sign up for free](https://cloud.ibm.com/registration) if you don't have one
3232
2. **Bob 2.0 (or higher) installed** - Your AI coding assistant ([Learn more about Bob](https://www.ibm.com/products/watsonx-code-assistant))
33-
3. **Allow outside workspace tools** - In the IBM Bob chat -> Settings (icon) -> Chat -> Allow outside workspace tool requests
3433
3. **IBM Cloud CLI** - [Installation guide](https://cloud.ibm.com/docs/cli?topic=cli-install-ibmcloud-cli)
3534
4. **Code Engine CLI plugin** - Install with: `ibmcloud plugin install code-engine`
3635

@@ -49,14 +48,19 @@ Open Bob in your development environment (VS Code, terminal, or wherever you hav
4948
In Bob, type the following command:
5049

5150
```
52-
Install the code-engine-specialist skill that you find in github.com/IBM/CodeEngine/ai/skills/code-engine-specialist globally
51+
Install the code-engine-specialist skill in this workspace using the following command:
52+
53+
npx skills add github:IBM/CodeEngine --skill code-engine-specialist -y 2>&1 || true
5354
```
5455

5556
Bob will:
5657
- Fetch the official IBM Code Engine skill directly from GitHub
57-
- Install it globally so it's available across all your projects
58+
- Install it in your workspace so it's available in your projects
5859
- Make the skill immediately available — no restart required
5960

61+
> Note: If you want to install the skill globally, make sure you have enabled **Allow outside workspace tools** (In the IBM Bob chat -> Settings (icon) -> Chat -> Allow outside workspace tool requests)
62+
63+
6064
### 1.3 Verify the Skill is Active
6165

6266
Once installed, confirm the skill is available by asking Bob:

0 commit comments

Comments
 (0)