MCPcopy Index your code
hub / github.com/codeaashu/claude-code / formatSetupNotes

Function formatSetupNotes

src/skills/bundled/scheduleRemoteAgents.ts:118–121  ·  view source on GitHub ↗

* Formats setup notes as a bulleted Heads-up block. Shared between the * initial AskUserQuestion dialog text (no-args path) and the prompt-body * section (args path) so notes are never silently dropped.

(notes: string[])

Source from the content-addressed store, hash-verified

116 * section (args path) so notes are never silently dropped.
117 */
118function formatSetupNotes(notes: string[]): string {
119 const items = notes.map(n => `- ${n}`).join('\n')
120 return `⚠ Heads-up:\n${items}`
121}
122
123async function getCurrentRepoHttpsUrl(): Promise<string | null> {
124 const remoteUrl = await getRemoteUrl()

Callers 1

buildPromptFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected