From 6686f0c1921413c78840f412c43c64cb05d8ecbf Mon Sep 17 00:00:00 2001 From: Jeremias Werner Date: Wed, 1 Jul 2026 15:16:07 +0200 Subject: [PATCH 1/2] Adjust the installation procedure to install locally with npx --- .../code-engine-specialist/references/patterns.md | 2 +- content/posts/deploy-from-bob/index.md | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ai/skills/code-engine-specialist/references/patterns.md b/ai/skills/code-engine-specialist/references/patterns.md index 59185cbf..7c07cb5f 100644 --- a/ai/skills/code-engine-specialist/references/patterns.md +++ b/ai/skills/code-engine-specialist/references/patterns.md @@ -364,7 +364,7 @@ ibmcloud ce application update --name my-app \ --probe-live initial-delay=2 \ --probe-live interval=10 \ --probe-ready type="http" \ - --probe-ready path="/health" \ + --probe-ready path="/ready" \ --probe-ready initial-delay=2 \ --probe-ready interval=10 ``` diff --git a/content/posts/deploy-from-bob/index.md b/content/posts/deploy-from-bob/index.md index bb7ed494..35e24fd8 100644 --- a/content/posts/deploy-from-bob/index.md +++ b/content/posts/deploy-from-bob/index.md @@ -30,7 +30,6 @@ Before we begin, make sure you have: 1. **An IBM Cloud account** - [Sign up for free](https://cloud.ibm.com/registration) if you don't have one 2. **Bob 2.0 (or higher) installed** - Your AI coding assistant ([Learn more about Bob](https://www.ibm.com/products/watsonx-code-assistant)) -3. **Allow outside workspace tools** - In the IBM Bob chat -> Settings (icon) -> Chat -> Allow outside workspace tool requests 3. **IBM Cloud CLI** - [Installation guide](https://cloud.ibm.com/docs/cli?topic=cli-install-ibmcloud-cli) 4. **Code Engine CLI plugin** - Install with: `ibmcloud plugin install code-engine` @@ -49,14 +48,19 @@ Open Bob in your development environment (VS Code, terminal, or wherever you hav In Bob, type the following command: ``` -Install the code-engine-specialist skill that you find in github.com/IBM/CodeEngine/ai/skills/code-engine-specialist globally +Install the code-engine-specialist skill in this workspace using the following command: + +npx skills add github:IBM/CodeEngine --skill code-engine-specialist -y 2>&1 || true ``` Bob will: - Fetch the official IBM Code Engine skill directly from GitHub -- Install it globally so it's available across all your projects +- Install it in your workspace so it's available in your projects - Make the skill immediately available — no restart required +> 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) + + ### 1.3 Verify the Skill is Active Once installed, confirm the skill is available by asking Bob: From f4183f767e4a0b300e585360fb280763e6bf2cff Mon Sep 17 00:00:00 2001 From: Jeremias Werner Date: Wed, 1 Jul 2026 15:18:28 +0200 Subject: [PATCH 2/2] publish blog post --- content/posts/deploy-from-bob/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/deploy-from-bob/index.md b/content/posts/deploy-from-bob/index.md index 35e24fd8..04f4a2ee 100644 --- a/content/posts/deploy-from-bob/index.md +++ b/content/posts/deploy-from-bob/index.md @@ -4,7 +4,7 @@ date: 2026-06-21 description: "Using Bob to deploy an app to Code Engine" tags: ["Bob", "serverless", "code engine", "AI"] featureImage: "featured.jpg" -draft: true +draft: false authors: ["uwefassnacht","jeremiaswerner"] ---