mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
fix: improve invite onboarding text and callback reachability prompt
Add skill URL note to onboarding text document and strengthen callback reachability test language in company settings invite snippet. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
feb384acca
commit
f49a003bd9
2 changed files with 8 additions and 2 deletions
|
|
@ -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, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue