Merge branch 'main' into fix/password-clear-on-error

This commit is contained in:
Gabi Simons
2026-04-29 13:35:48 +03:00
committed by GitHub
11 changed files with 62 additions and 43 deletions

View File

@@ -28,7 +28,7 @@ import * as setupLog from '../logs.js';
import { confirmThenOpen } from '../lib/browser.js';
import { askOperatorRole } from '../lib/role-prompt.js';
import { ensureAnswer, fail, runQuietChild } from '../lib/runner.js';
import { wrapForGutter } from '../lib/theme.js';
import { note, wrapForGutter } from '../lib/theme.js';
const SLACK_API = 'https://slack.com/api';
const SLACK_APPS_URL = 'https://api.slack.com/apps';
@@ -121,7 +121,7 @@ export async function runSlackChannel(displayName: string): Promise<void> {
}
async function walkThroughAppCreation(): Promise<void> {
p.note(
note(
[
"You'll create a Slack app that the assistant talks through.",
"Free and stays inside the workspaces you pick.",
@@ -264,7 +264,7 @@ async function validateSlackToken(token: string): Promise<WorkspaceInfo> {
}
async function collectSlackUserId(): Promise<string> {
p.note(
note(
[
"To get your Slack member ID:",
'',
@@ -369,7 +369,7 @@ async function resolveAgentName(): Promise<string> {
}
function showPostInstallChecklist(info: WorkspaceInfo): void {
p.note(
note(
wrapForGutter(
[
`Your agent is wired to Slack and a welcome DM is on its way.`,