From 25cdf9b762a13aa7bbfab363dc1c85bdf2c3fae1 Mon Sep 17 00:00:00 2001 From: Billy Biggs Date: Sat, 28 Jun 2025 02:53:03 -0700 Subject: Inline the description and schema of the shell tool in the source (#1709) --- scripts/copy_bundle_assets.js | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'scripts') diff --git a/scripts/copy_bundle_assets.js b/scripts/copy_bundle_assets.js index e37e1700..5a3af3e9 100644 --- a/scripts/copy_bundle_assets.js +++ b/scripts/copy_bundle_assets.js @@ -31,16 +31,6 @@ if (!existsSync(bundleDir)) { mkdirSync(bundleDir); } -// Copy specific shell files to the root of the bundle directory -copyFileSync( - join(root, 'packages/core/src/tools/shell.md'), - join(bundleDir, 'shell.md'), -); -copyFileSync( - join(root, 'packages/core/src/tools/shell.json'), - join(bundleDir, 'shell.json'), -); - // Find and copy all .sb files from packages to the root of the bundle directory const sbFiles = glob.sync('packages/**/*.sb', { cwd: root }); for (const file of sbFiles) { -- cgit v1.2.3