multi-agents-cli 1.1.25 → 1.1.27

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.
Files changed (2) hide show
  1. package/lib/writers.js +1 -9
  2. package/package.json +6 -1
package/lib/writers.js CHANGED
@@ -117,15 +117,7 @@ const setupUserRemote = (ROOT, projectName) => {
117
117
  { cwd: ROOT, encoding: 'utf8', stdio: 'pipe' }).trim();
118
118
  } catch {}
119
119
 
120
- if (currentOrigin && !currentOrigin.includes('multi-agents-template')) return;
121
-
122
- if (currentOrigin?.includes('multi-agents-template')) {
123
- try {
124
- execSync('git remote remove origin', { cwd: ROOT, stdio: 'pipe' });
125
- execSync(`git remote add upstream ${currentOrigin}`, { cwd: ROOT, stdio: 'pipe' });
126
- console.log(dim(' ℹ Template remote moved to upstream'));
127
- } catch {}
128
- }
120
+ if (currentOrigin) return;
129
121
 
130
122
  const flagPath = path.join(ROOT, '.scaffold', '.remote-setup-needed');
131
123
  fs.writeFileSync(flagPath, JSON.stringify({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.1.25",
3
+ "version": "1.1.27",
4
4
  "description": "Multi-agent workflow orchestration for Claude Code — isolated git worktrees, structured state tracking, autonomous task chaining",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -29,5 +29,10 @@
29
29
  "engines": {
30
30
  "node": ">=18.0.0"
31
31
  },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/JDev-il/multi-agents.git"
35
+ },
36
+ "homepage": "https://github.com/JDev-il/multi-agents#readme",
32
37
  "scripts": {}
33
38
  }