diff --git a/server/src/routes/access.ts b/server/src/routes/access.ts index 3fba5208..58cde03f 100644 --- a/server/src/routes/access.ts +++ b/server/src/routes/access.ts @@ -1171,6 +1171,8 @@ export function buildInviteOnboardingTextDocument( GET ${onboarding.skill.url} Install path: ${onboarding.skill.installPath} + Be sure to prepend your PAPERCLIP_API_URL to the top of your skill and note the path to your PAPERCLIP_API_URL + ## Text onboarding URL ${onboarding.textInstructions.url} @@ -2288,7 +2290,11 @@ export function accessRoutes( const agentName = deduplicateAgentName( existing.agentName ?? "New Agent", - existingAgents.map((a) => ({ id: a.id, name: a.name, status: a.status })), + existingAgents.map((a) => ({ + id: a.id, + name: a.name, + status: a.status + })) ); const created = await agents.create(companyId, { diff --git a/ui/src/pages/CompanySettings.tsx b/ui/src/pages/CompanySettings.tsx index de3e2798..0b9cd255 100644 --- a/ui/src/pages/CompanySettings.tsx +++ b/ui/src/pages/CompanySettings.tsx @@ -461,7 +461,7 @@ Suggested command: Then verify with: curl -fsS /api/health`; const resolutionLine = resolutionTestUrl - ? `\nIf you need to test callback reachability, call: http://?url=` + ? `\nYou MUST test callback reachability, call: ${resolutionTestUrl}?url= (well using the hostname that worked above). Do not assume your 172.x is necessarily reachable from Paperclip. Test it. ` : ""; return `You're invited to join a Paperclip organization.