diff --git a/README.md b/README.md
index 487c6a155c15b46aba99ab9cb5a66def5c445c30..665128297b9365ec97b049b597c6d1c04c463a64 100644
--- a/README.md
+++ b/README.md
@@ -40,31 +40,3 @@ npx @digital-blueprint/cli update-app signature
 
 **Warning:** There may be issues when you run these commands as root user, best use a non-root user, like `www-data`.
 To do this you can for example open a shell with `runuser -u www-data -- bash`.
-
-## Generate DBP Symfony bundle
-
-If you want to create a DBP Symfony bundle in a subdirectory of the current folder you can call:
-
-```bash
-npx @digital-blueprint/cli generate-bundle --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit
-```
-
-If you also want to set the vendor and category you can use two more parameters:
-
-```bash
-npx @digital-blueprint/cli generate-bundle --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit
-```
-
-## Show DBP Symfony bundle names
-
-If you want to just want to show the names of a DBP Symfony bundle you can call:
-
-```bash
-npx @digital-blueprint/cli show-bundle-names --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit
-```
-
-If you also want to set the vendor and category you can use two more parameters:
-
-```bash
-npx @digital-blueprint/cli show-bundle-names --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit
-```
diff --git a/bin/cli b/bin/cli
index 20f7de145d4e9e3deedf87da2830ff3d0eec5a90..0912fd03e9331b586440ac10fbac7a1a19198505 100755
--- a/bin/cli
+++ b/bin/cli
@@ -2,7 +2,6 @@
 # cli.sh install-app <dbp-package> <path>
 # Install example: `cli.sh install-app signature my-app /` will install the signature app into directory 'my-app' with '/' as path prefix
 # Update example: `cli.sh update-app signature` will update in the current directory
-# Bundle generation example: `cli.sh generate-bundle --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit` will generate the bundle in a subdirectory of the current directory
 
 set -euo pipefail
 export SHELLOPTS
diff --git a/package.json b/package.json
index d2a9286156b6c08c61a792899731c996784a4bec..b4c567f0a42de8f41805639bcdca3a2ede00f24e 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
   "name": "@digital-blueprint/cli",
   "version": "0.0.29",
-  "description": "CLI to manage DBP frontend applications and Symfony bundles",
+  "description": "CLI to manage DBP frontend applications",
   "license": "LGPL-2.1-or-later",
   "bin": {
     "cli": "bin/cli"