@beads/bd 1.0.2 → 1.0.3

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.
package/README.md CHANGED
@@ -97,13 +97,13 @@ This package downloads the appropriate native binary for your platform:
97
97
 
98
98
  ## Full Documentation
99
99
 
100
- For complete documentation, see the [beads GitHub repository](https://github.com/steveyegge/beads):
100
+ For complete documentation, see the [beads GitHub repository](https://github.com/gastownhall/beads):
101
101
 
102
- - [Complete README](https://github.com/steveyegge/beads#readme)
103
- - [Quick Start (documentation site)](https://steveyegge.github.io/beads/getting-started/quickstart) · [repo pointer](https://github.com/steveyegge/beads/blob/main/docs/QUICKSTART.md)
104
- - [Installation Guide](https://github.com/steveyegge/beads/blob/main/docs/INSTALLING.md)
105
- - [FAQ](https://github.com/steveyegge/beads/blob/main/docs/FAQ.md)
106
- - [Troubleshooting](https://github.com/steveyegge/beads/blob/main/docs/TROUBLESHOOTING.md)
102
+ - [Complete README](https://github.com/gastownhall/beads#readme)
103
+ - [Quick Start (documentation site)](https://gastownhall.github.io/beads/getting-started/quickstart) · [repo pointer](https://github.com/gastownhall/beads/blob/main/docs/QUICKSTART.md)
104
+ - [Installation Guide](https://github.com/gastownhall/beads/blob/main/docs/INSTALLING.md)
105
+ - [FAQ](https://github.com/gastownhall/beads/blob/main/docs/FAQ.md)
106
+ - [Troubleshooting](https://github.com/gastownhall/beads/blob/main/docs/TROUBLESHOOTING.md)
107
107
 
108
108
  ## Why npm Package vs WASM?
109
109
 
@@ -120,5 +120,5 @@ MIT - See [LICENSE](LICENSE) for details.
120
120
 
121
121
  ## Support
122
122
 
123
- - [GitHub Issues](https://github.com/steveyegge/beads/issues)
124
- - [Documentation](https://github.com/steveyegge/beads)
123
+ - [GitHub Issues](https://github.com/gastownhall/beads/issues)
124
+ - [Documentation](https://github.com/gastownhall/beads)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beads/bd",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
5
5
  "main": "bin/bd.js",
6
6
  "bin": {
@@ -260,11 +260,11 @@ async function install() {
260
260
  }
261
261
 
262
262
  // Construct download URL
263
- // Format: https://github.com/steveyegge/beads/releases/download/v0.21.5/beads_0.21.5_darwin_amd64.tar.gz
263
+ // Format: https://github.com/gastownhall/beads/releases/download/v0.21.5/beads_0.21.5_darwin_amd64.tar.gz
264
264
  const releaseVersion = VERSION;
265
265
  const archiveExt = platformName === 'windows' ? 'zip' : 'tar.gz';
266
266
  const archiveName = `beads_${releaseVersion}_${platformName}_${archName}.${archiveExt}`;
267
- const downloadUrl = `https://github.com/steveyegge/beads/releases/download/v${releaseVersion}/${archiveName}`;
267
+ const downloadUrl = `https://github.com/gastownhall/beads/releases/download/v${releaseVersion}/${archiveName}`;
268
268
  const archivePath = path.join(binDir, archiveName);
269
269
 
270
270
  // Download the archive
@@ -299,9 +299,9 @@ async function install() {
299
299
  console.error(`Error installing bd: ${err.message}`);
300
300
  console.error('');
301
301
  console.error('Installation failed. You can try:');
302
- console.error('1. Installing manually from: https://github.com/steveyegge/beads/releases');
303
- console.error('2. Using the install script: curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash');
304
- console.error('3. Opening an issue: https://github.com/steveyegge/beads/issues');
302
+ console.error('1. Installing manually from: https://github.com/gastownhall/beads/releases');
303
+ console.error('2. Using the install script: curl -fsSL https://raw.githubusercontent.com/gastownhall/beads/main/scripts/install.sh | bash');
304
+ console.error('3. Opening an issue: https://github.com/gastownhall/beads/issues');
305
305
  process.exit(1);
306
306
  }
307
307
  }