Skip to content

Commit eb18730

Browse files
committed
merge
2 parents 983aef7 + 5285a5d commit eb18730

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/commands/init/ai-rules.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const configureMcpForWindsurf = async (config: Record<string, unknown>, _project
202202

203203
// Generic MCP configuration display
204204
const showGenericMcpConfig = (config: Record<string, unknown>, ideName: string): void => {
205-
log(`\n${chalk.yellow('📋 Manual Configuration Required')}`)
205+
log(`\n${chalk.yellow('📋 Manual configuration required')}`)
206206
log(`Please add the following configuration to your ${ideName} settings:`)
207207
log(`\n${chalk.gray('--- Configuration ---')}`)
208208
log(JSON.stringify(config, null, 2))
@@ -217,7 +217,7 @@ const triggerMcpConfiguration = async (ide: ConsumerConfig, projectPath: string)
217217
{
218218
type: 'confirm',
219219
name: 'shouldConfigure',
220-
message: `Would you like to automatically configure MCP server for ${ide.presentedName}?`,
220+
message: `Would you like to automatically configure the MCP server for ${ide.presentedName}?`,
221221
default: true,
222222
},
223223
])
@@ -285,7 +285,7 @@ const fetchProjectInfo = async (url: string): Promise<ProjectInfo> => {
285285

286286
const getRepoUrlFromProjectId = async (api: NetlifyAPI, projectId: string): Promise<string> => {
287287
try {
288-
const SiteInfo = (await api.getSite({ siteId: projectId })) as SiteInfo
288+
const siteInfo = (await api.getSite({ siteId: projectId })) as SiteInfo
289289
const repoUrl = SiteInfo.build_settings?.repo_url
290290

291291
if (!repoUrl) {
@@ -334,7 +334,7 @@ export const initWithAiRules = async (hash: string, command: BaseCommand): Promi
334334

335335
try {
336336
// Step 1: Decode hash and fetch project information
337-
log('\n📋 Decoding project hash...')
337+
log('\n📋 Extracting project details...')
338338
const decodedUrl = decodeHash(hash)
339339
log(`${chalk.cyan('Decoded URL:')} ${decodedUrl}`)
340340

@@ -344,7 +344,7 @@ export const initWithAiRules = async (hash: string, command: BaseCommand): Promi
344344
log(`${chalk.cyan('Project ID:')} ${projectInfo.projectId}`)
345345

346346
// Step 2: Get repository URL from project ID via Netlify site API
347-
log('\n🔗 Linking to Netlify site and fetching repository...')
347+
log('\n🔗 Linking to Netlify project and fetching repository...')
348348
const repositoryUrl = await getRepoUrlFromProjectId(api, projectInfo.projectId)
349349
log(`${chalk.cyan('Repository:')} ${repositoryUrl}`)
350350

0 commit comments

Comments
 (0)