chore(aaif): rename a bunch of repository references (#8152)
Signed-off-by: Michael Neale <michael.neale@gmail.com> Co-authored-by: Michael Neale <michael.neale@gmail.com> continuing migration to aaif
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
@@ -6,7 +6,7 @@ Native desktop app for goose built with [Electron](https://www.electronjs.org/)
|
||||
goose uses [Hermit](https://github.com/cashapp/hermit) to manage dependencies, so you will need to have it installed and activated.
|
||||
|
||||
```
|
||||
git clone git@github.com:block/goose.git
|
||||
git clone git@github.com:aaif-goose/goose.git
|
||||
cd goose
|
||||
source ./bin/activate-hermit
|
||||
cd ui/desktop
|
||||
|
||||
@@ -63,7 +63,7 @@ module.exports = {
|
||||
name: '@electron-forge/publisher-github',
|
||||
config: {
|
||||
repository: {
|
||||
owner: process.env.GITHUB_OWNER || 'block',
|
||||
owner: process.env.GITHUB_OWNER || 'aaif-goose',
|
||||
name: process.env.GITHUB_REPO || 'goose',
|
||||
},
|
||||
prerelease: false,
|
||||
@@ -87,8 +87,8 @@ module.exports = {
|
||||
config: {
|
||||
name: 'Goose',
|
||||
bin: 'Goose',
|
||||
maintainer: 'Block, Inc.',
|
||||
homepage: 'https://block.github.io/goose/',
|
||||
maintainer: 'AAIF (Agentic AI Foundation)',
|
||||
homepage: 'https://goose-docs.ai/',
|
||||
categories: ['Development'],
|
||||
desktopTemplate: './forge.deb.desktop',
|
||||
options: {
|
||||
@@ -102,8 +102,8 @@ module.exports = {
|
||||
config: {
|
||||
name: 'Goose',
|
||||
bin: 'Goose',
|
||||
maintainer: 'Block, Inc.',
|
||||
homepage: 'https://block.github.io/goose/',
|
||||
maintainer: 'AAIF (Agentic AI Foundation)',
|
||||
homepage: 'https://goose-docs.ai/',
|
||||
categories: ['Development'],
|
||||
desktopTemplate: './forge.rpm.desktop',
|
||||
options: {
|
||||
@@ -117,13 +117,13 @@ module.exports = {
|
||||
name: '@electron-forge/maker-flatpak',
|
||||
config: {
|
||||
options: {
|
||||
id: 'io.github.block.Goose',
|
||||
id: 'io.github.block.Goose', // NOTE: kept for backwards compat with existing installs
|
||||
categories: ['Development'],
|
||||
icon: {
|
||||
scalable: 'src/images/icon.svg',
|
||||
'512x512': 'src/images/icon-512.png',
|
||||
},
|
||||
homepage: 'https://block.github.io/goose/',
|
||||
homepage: 'https://goose-docs.ai/',
|
||||
runtimeVersion: '25.08',
|
||||
baseVersion: '25.08',
|
||||
bin: 'Goose',
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"title": "goose-server",
|
||||
"description": "An AI agent",
|
||||
"contact": {
|
||||
"name": "Block",
|
||||
"name": "AAIF",
|
||||
"email": "ai-oss-tools@block.xyz"
|
||||
},
|
||||
"license": {
|
||||
|
||||
@@ -409,7 +409,7 @@ export default function BaseChat({
|
||||
{/* Goose watermark - top right */}
|
||||
<div className="absolute top-3 right-4 z-[60] flex flex-row items-center gap-1">
|
||||
<a
|
||||
href="https://block.github.io/goose"
|
||||
href="https://goose-docs.ai"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="no-drag flex flex-row items-center gap-1 hover:opacity-80 transition-opacity"
|
||||
|
||||
@@ -156,7 +156,7 @@ export default function ExtensionsView({
|
||||
className="flex items-center gap-2 justify-center"
|
||||
variant="secondary"
|
||||
onClick={() =>
|
||||
window.open('https://block.github.io/goose/v1/extensions/', '_blank')
|
||||
window.open('https://goose-docs.ai/v1/extensions/', '_blank')
|
||||
}
|
||||
>
|
||||
<GPSIcon size={12} />
|
||||
|
||||
@@ -497,7 +497,7 @@ export default function CreateEditRecipeModal({
|
||||
? intl.formatMessage(i18n.createSubtitle)
|
||||
: intl.formatMessage(i18n.editSubtitle)}{' '}
|
||||
<a
|
||||
href="https://block.github.io/goose/docs/guides/recipes/"
|
||||
href="https://goose-docs.ai/docs/guides/recipes/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="inline-flex items-center gap-1 text-blue-500 hover:text-blue-600 hover:underline"
|
||||
|
||||
@@ -469,7 +469,7 @@ export default function AppSettingsSection({ scrollToSection }: AppSettingsSecti
|
||||
<Button
|
||||
onClick={() => {
|
||||
window.open(
|
||||
'https://github.com/block/goose/issues/new?template=bug_report.md',
|
||||
'https://github.com/aaif-goose/goose/issues/new?template=bug_report.md',
|
||||
'_blank'
|
||||
);
|
||||
}}
|
||||
@@ -481,7 +481,7 @@ export default function AppSettingsSection({ scrollToSection }: AppSettingsSecti
|
||||
<Button
|
||||
onClick={() => {
|
||||
window.open(
|
||||
'https://github.com/block/goose/issues/new?template=feature_request.md',
|
||||
'https://github.com/aaif-goose/goose/issues/new?template=feature_request.md',
|
||||
'_blank'
|
||||
);
|
||||
}}
|
||||
@@ -504,7 +504,7 @@ export default function AppSettingsSection({ scrollToSection }: AppSettingsSecti
|
||||
<div className="flex items-center gap-3">
|
||||
<img
|
||||
src={isDarkMode ? BlockLogoWhite : BlockLogoBlack}
|
||||
alt="Block Logo"
|
||||
alt="Block Logo" // TODO: replace with AAIF logo asset
|
||||
className="h-8 w-auto"
|
||||
/>
|
||||
<span className="text-2xl font-mono text-black dark:text-white">
|
||||
|
||||
@@ -105,7 +105,7 @@ const HelpText = () => {
|
||||
className="text-blue-500 hover:text-blue-600 p-0 h-auto"
|
||||
onClick={() =>
|
||||
window.open(
|
||||
'https://block.github.io/goose/docs/guides/using-goosehints/',
|
||||
'https://goose-docs.ai/docs/guides/using-goosehints/',
|
||||
'_blank'
|
||||
)
|
||||
}
|
||||
|
||||
@@ -228,7 +228,9 @@ export default function ExtensionsSection({
|
||||
<Button
|
||||
className="flex items-center gap-2 justify-center"
|
||||
variant="secondary"
|
||||
onClick={() => window.open('https://block.github.io/goose/v1/extensions/', '_blank')}
|
||||
onClick={() =>
|
||||
window.open('https://goose-docs.ai/v1/extensions/', '_blank')
|
||||
}
|
||||
>
|
||||
<GPSIcon size={12} />
|
||||
{intl.formatMessage(i18n.browseExtensions)}
|
||||
|
||||
@@ -1 +1 @@
|
||||
export const QUICKSTART_GUIDE_URL = 'https://block.github.io/goose/docs/quickstart';
|
||||
export const QUICKSTART_GUIDE_URL = 'https://goose-docs.ai/docs/quickstart';
|
||||
|
||||
@@ -143,10 +143,10 @@ export const DiagnosticsModal: React.FC<DiagnosticsModalProps> = ({
|
||||
const body = `**Describe the bug**
|
||||
|
||||
💡 Before filing, please check common issues:
|
||||
https://block.github.io/goose/docs/troubleshooting
|
||||
https://goose-docs.ai/docs/troubleshooting
|
||||
|
||||
📦 To help us debug faster, attach your **diagnostics zip** if possible.
|
||||
👉 How to capture it: https://block.github.io/goose/docs/troubleshooting/diagnostics-and-reporting/
|
||||
👉 How to capture it: https://goose-docs.ai/docs/troubleshooting/diagnostics-and-reporting/
|
||||
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
@@ -190,7 +190,7 @@ Add any other context about the problem here.
|
||||
labels: 'bug',
|
||||
});
|
||||
|
||||
window.open(`https://github.com/block/goose/issues/new?${params.toString()}`, '_blank');
|
||||
window.open(`https://github.com/aaif-goose/goose/issues/new?${params.toString()}`, '_blank');
|
||||
onClose();
|
||||
} catch {
|
||||
toastError({
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
+2
-2
@@ -2,8 +2,8 @@
|
||||
|
||||
Early stage and part of goose's broader move to ACP
|
||||
|
||||
https://github.com/block/goose/issues/6642
|
||||
https://github.com/block/goose/discussions/7309
|
||||
https://github.com/aaif-goose/goose/issues/6642
|
||||
https://github.com/aaif-goose/goose/discussions/7309
|
||||
|
||||
## Running
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/block/goose.git"
|
||||
"url": "git+https://github.com/aaif-goose/goose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"goose",
|
||||
|
||||
Reference in New Issue
Block a user