Skip to content

Commit 3c3b4e0

Browse files
authored
chore: use final AsDecided repository paths (#5)
1 parent 53ec332 commit 3c3b4e0

3 files changed

Lines changed: 20 additions & 25 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313

1414
- name: Add this checkout as a tap
1515
run: |
16-
mkdir -p "$(brew --repository)/Library/Taps/itsthelore"
17-
ln -s "$GITHUB_WORKSPACE" "$(brew --repository)/Library/Taps/itsthelore/homebrew-tap"
18-
brew trust itsthelore/tap
16+
mkdir -p "$(brew --repository)/Library/Taps/asdecided"
17+
ln -s "$GITHUB_WORKSPACE" "$(brew --repository)/Library/Taps/asdecided/homebrew-tap"
18+
brew trust asdecided/tap
1919
2020
- name: Audit formulas
21-
run: brew audit --strict --online itsthelore/tap/asdecided-core
21+
run: brew audit --strict --online asdecided/tap/asdecided-core
2222

2323
- name: Install and test asdecided-core
2424
run: |
25-
brew install itsthelore/tap/asdecided-core
26-
brew test itsthelore/tap/asdecided-core
25+
brew install asdecided/tap/asdecided-core
26+
brew test asdecided/tap/asdecided-core
2727
decided --version

Formula/asdecided-core.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
class AsdecidedCore < Formula
22
desc "Native AsDecided engine and read-only MCP server"
3-
homepage "https://github.com/itsthelore/asdecided-core"
3+
homepage "https://github.com/asdecided/core"
44
license "Apache-2.0"
55

66
if OS.mac?
7-
url "https://github.com/itsthelore/asdecided-core/releases/download/v0.23.1/asdecided-aarch64-apple-darwin.tar.gz"
7+
url "https://github.com/asdecided/core/releases/download/v0.23.1/asdecided-aarch64-apple-darwin.tar.gz"
88
sha256 "40d7129541609cbcf967f7d7d453e7689412bbaac81aa8d3c84e636367804628"
99
else
10-
url "https://github.com/itsthelore/asdecided-core/releases/download/v0.23.1/asdecided-x86_64-unknown-linux-gnu.tar.gz"
10+
url "https://github.com/asdecided/core/releases/download/v0.23.1/asdecided-x86_64-unknown-linux-gnu.tar.gz"
1111
sha256 "51cce8025a7cb2f8b2caea93a8ea71be0ad8c5c316fd0ecced688267bf97b8ac"
1212
end
1313

README.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
1-
# Homebrew tap for RAC and AsDecided
1+
# Homebrew tap for AsDecided
22

3-
Install the complete local toolchain:
3+
Install the native engine and MCP server:
44

55
```sh
6-
brew install itsthelore/tap/rac-full
6+
brew install asdecided/tap/asdecided-core
77
```
88

9-
Or install only the native engine:
10-
11-
```sh
12-
brew install itsthelore/tap/decided
13-
```
14-
15-
`decided` installs the native `decided` CLI and `decided-mcp` read-only MCP
9+
`asdecided-core` installs the native `decided` CLI and `decided-mcp` read-only MCP
1610
server from signed-version GitHub Release archives published by
17-
[`itsthelore/rac-core`](https://github.com/itsthelore/rac-core).
11+
[`asdecided/core`](https://github.com/asdecided/core).
12+
13+
`asdecided-full` is reserved for the complete ecosystem install. It will be
14+
added only when the SDK, connectors, editors, and other companions have
15+
independent release artifacts that this tap can install honestly.
1816

19-
`rac-full` is the stable umbrella entry point. Today it includes the native
20-
engine. RAC CI integrations remain GitHub Actions consumed from
21-
[`itsthelore/rac-ci`](https://github.com/itsthelore/rac-ci); Python SDK,
22-
ingestion, and connector companions will be added as their independent
23-
distributions become release-ready.
17+
CI integrations are GitHub Actions consumed from
18+
[`asdecided/ci`](https://github.com/asdecided/ci).

0 commit comments

Comments
 (0)