slackhive 0.1.24 → 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ const path_1 = require("path");
15
15
  const chalk_1 = __importDefault(require("chalk"));
16
16
  const ora_1 = __importDefault(require("ora"));
17
17
  const prompts_1 = __importDefault(require("prompts"));
18
- const REPO_URL = 'https://github.com/amansrivastava17/slackhive.git';
18
+ const REPO_URL = 'https://github.com/pelago-labs/slackhive.git';
19
19
  /**
20
20
  * Runs `slackhive init` — interactive setup wizard.
21
21
  *
@@ -62,7 +62,7 @@ async function init(opts) {
62
62
  else {
63
63
  const spinner = (0, ora_1.default)(' Cloning repository...').start();
64
64
  try {
65
- (0, child_process_1.execSync)(`git clone ${REPO_URL} "${dir}"`, { stdio: 'ignore' });
65
+ (0, child_process_1.execSync)(`git clone --depth 1 ${REPO_URL} "${dir}"`, { stdio: 'ignore' });
66
66
  spinner.succeed('Repository cloned');
67
67
  }
68
68
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slackhive",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "CLI to install and manage SlackHive — AI agent teams on Slack",
5
5
  "bin": {
6
6
  "slackhive": "./dist/index.js"