Skip to content

Commit 3158406

Browse files
committed
fix issues with binary links
1 parent b26c363 commit 3158406

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thanks for your interest in contributing to brin! We welcome contributions of al
1717
Before contributing, please:
1818

1919
1. Read the [README](README.md) to understand the project
20-
2. Check [existing issues](https://github.com/superagent-ai/brin/issues) to avoid duplicates
20+
2. Check [existing issues](https://github.com/superagent-ai/brin-cli/issues) to avoid duplicates
2121
3. For major changes, open an issue first to discuss
2222

2323
## Development Setup
@@ -32,7 +32,7 @@ Before contributing, please:
3232

3333
```bash
3434
# Clone the repo
35-
git clone https://github.com/superagent-ai/brin
35+
git clone https://github.com/superagent-ai/brin-cli
3636
cd brin
3737

3838
# Set up git hooks
@@ -74,7 +74,7 @@ make check # Run all checks (fmt + lint + test)
7474

7575
### Reporting Bugs
7676

77-
Use the [bug report template](https://github.com/superagent-ai/brin/issues/new?template=bug.yml) and include:
77+
Use the [bug report template](https://github.com/superagent-ai/brin-cli/issues/new?template=bug.yml) and include:
7878

7979
- Steps to reproduce
8080
- Expected vs actual behavior
@@ -83,7 +83,7 @@ Use the [bug report template](https://github.com/superagent-ai/brin/issues/new?t
8383

8484
### Suggesting Features
8585

86-
Use the [feature request template](https://github.com/superagent-ai/brin/issues/new?template=feature.yml) and describe:
86+
Use the [feature request template](https://github.com/superagent-ai/brin-cli/issues/new?template=feature.yml) and describe:
8787

8888
- The problem you're trying to solve
8989
- Your proposed solution
@@ -167,7 +167,7 @@ PRs are squash-merged to keep history clean.
167167

168168
- [Discord](https://discord.gg/spZ7MnqFT4) — chat with the team
169169
- [Twitter/X](https://x.com/superagent_ai) — follow for updates
170-
- [GitHub Issues](https://github.com/superagent-ai/brin/issues) — bugs and features
170+
- [GitHub Issues](https://github.com/superagent-ai/brin-cli/issues) — bugs and features
171171

172172
---
173173

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ members = [
55
]
66

77
[workspace.package]
8-
version = "0.1.15"
8+
version = "0.1.16"
99
edition = "2021"
1010
authors = ["brin contributors"]
1111
license = "MIT"
12-
repository = "https://github.com/superagent-ai/brin"
12+
repository = "https://github.com/superagent-ai/brin-cli"
1313

1414
[workspace.dependencies]
1515
# Async runtime

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ if brin is unreachable, the agent continues as normal — zero risk to your exis
229229
## local development
230230

231231
```bash
232-
git clone https://github.com/superagent-ai/brin
232+
git clone https://github.com/superagent-ai/brin-cli
233233
cd brin
234234
cargo build
235235
cargo test

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brin",
3-
"version": "0.1.15",
3+
"version": "0.1.16",
44
"description": "the credit score for context — security scanning for packages, repos, MCP servers, skills, domains and commits",
55
"bin": {
66
"brin": "./bin/brin.js"
@@ -10,7 +10,7 @@
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "https://github.com/superagent-ai/brin.git"
13+
"url": "https://github.com/superagent-ai/brin-cli.git"
1414
},
1515
"keywords": [
1616
"security",
@@ -25,7 +25,7 @@
2525
"author": "brin contributors",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/superagent-ai/brin/issues"
28+
"url": "https://github.com/superagent-ai/brin-cli/issues"
2929
},
3030
"homepage": "https://brin.sh",
3131
"engines": {

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
# brin installer
55
# Usage: curl -fsSL https://brin.sh/install.sh | sh
66

7-
REPO="superagent-ai/brin"
7+
REPO="superagent-ai/brin-cli"
88
BINARY="brin"
99
INSTALL_DIR="${BRIN_INSTALL_DIR:-$HOME/.local/bin}"
1010

scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { execSync } = require('child_process');
77
const zlib = require('zlib');
88
const tar = require('tar');
99

10-
const REPO = 'superagent-ai/brin';
10+
const REPO = 'superagent-ai/brin-cli';
1111
const BINARY_NAME = 'brin';
1212

1313
// Color codes for terminal output

0 commit comments

Comments
 (0)