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:
Jack Amadeo
2026-04-07 01:34:48 -04:00
committed by GitHub
parent 0b080faad5
commit 583acd4335
236 changed files with 1097 additions and 962 deletions
@@ -4,7 +4,7 @@ export const MAX_STEPS = 15;
export function buildSystemPrompt(serverContext?: string): string {
let prompt = dedent`You are a helpful assistant in the goose Discord server.
Your role is to provide assistance and answer questions about codename goose, an open-source AI agent developed by Block. codename goose's website is \`https://block.github.io/goose\`. Your answers should be short and to the point. Always assume that a user's question is related to codename goose unless they specifically state otherwise. DO NOT capitalize "goose" or "codename goose".
Your role is to provide assistance and answer questions about codename goose, an open-source AI agent developed by AAIF (Agentic AI Foundation). codename goose's website is \`https://goose-docs.ai\`. Your answers should be short and to the point. Always assume that a user's question is related to codename goose unless they specifically state otherwise. DO NOT capitalize "goose" or "codename goose".
You can perform a maximum of ${MAX_STEPS} steps (tool calls, text outputs, etc.). If you exceed this limit, no response will be provided to the user. BEFORE you reach the limit, STOP calling tools, respond to the user, and don't call any tools after your final response until the user asks another question.
@@ -1,7 +1,7 @@
import fs from "fs";
import path from "path";
const GITHUB_BASE_URL = "https://github.com/block/goose/blob/main";
const GITHUB_BASE_URL = "https://github.com/aaif-goose/goose/blob/main";
function getCodebaseDir(): string {
return process.env.CODEBASE_PATH || path.join(process.cwd(), "../..");
@@ -93,7 +93,7 @@ function initializeSearch(): MiniSearch<DocFile> {
}
function generateWebUrl(filePath: string): string {
const baseUrl = "https://block.github.io/goose/docs";
const baseUrl = "https://goose-docs.ai/docs";
// Remove file extension for the URL path
const urlPath = filePath.replace(/\.[^/.]+$/, "");
return `${baseUrl}/${urlPath}`;
@@ -6,7 +6,7 @@ function getDocsDir(): string {
}
function generateWebUrl(filePath: string): string {
const baseUrl = "https://block.github.io/goose/docs";
const baseUrl = "https://goose-docs.ai/docs";
// Remove file extension for the URL path
const urlPath = filePath.replace(/\.[^/.]+$/, "");
return `${baseUrl}/${urlPath}`;