feat: company portability — export/import companies and agents
Add company export, import preview, and import endpoints with manifest- based bundle format. Includes URL key utilities for agents and projects, collision detection/rename strategies, and secret requirement tracking. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
22
packages/shared/src/agent-url-key.ts
Normal file
22
packages/shared/src/agent-url-key.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
const AGENT_URL_KEY_DELIM_RE = /[^a-z0-9]+/g;
|
||||
const AGENT_URL_KEY_TRIM_RE = /^-+|-+$/g;
|
||||
const UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
||||
|
||||
export function isUuidLike(value: string | null | undefined): boolean {
|
||||
if (typeof value !== "string") return false;
|
||||
return UUID_RE.test(value.trim());
|
||||
}
|
||||
|
||||
export function normalizeAgentUrlKey(value: string | null | undefined): string | null {
|
||||
if (typeof value !== "string") return null;
|
||||
const normalized = value
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(AGENT_URL_KEY_DELIM_RE, "-")
|
||||
.replace(AGENT_URL_KEY_TRIM_RE, "");
|
||||
return normalized.length > 0 ? normalized : null;
|
||||
}
|
||||
|
||||
export function deriveAgentUrlKey(name: string | null | undefined, fallback?: string | null): string {
|
||||
return normalizeAgentUrlKey(name) ?? normalizeAgentUrlKey(fallback) ?? "agent";
|
||||
}
|
||||
Reference in New Issue
Block a user