Initial commit: Paperclip plugin for Legal AI integration
16 agent tools, event handler for auto-linking, sync job every 15m. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
17
node_modules/@paperclipai/shared/dist/project-mentions.d.ts
generated
vendored
Normal file
17
node_modules/@paperclipai/shared/dist/project-mentions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
export declare const PROJECT_MENTION_SCHEME = "project://";
|
||||
export declare const AGENT_MENTION_SCHEME = "agent://";
|
||||
export interface ParsedProjectMention {
|
||||
projectId: string;
|
||||
color: string | null;
|
||||
}
|
||||
export interface ParsedAgentMention {
|
||||
agentId: string;
|
||||
icon: string | null;
|
||||
}
|
||||
export declare function buildProjectMentionHref(projectId: string, color?: string | null): string;
|
||||
export declare function parseProjectMentionHref(href: string): ParsedProjectMention | null;
|
||||
export declare function buildAgentMentionHref(agentId: string, icon?: string | null): string;
|
||||
export declare function parseAgentMentionHref(href: string): ParsedAgentMention | null;
|
||||
export declare function extractProjectMentionIds(markdown: string): string[];
|
||||
export declare function extractAgentMentionIds(markdown: string): string[];
|
||||
//# sourceMappingURL=project-mentions.d.ts.map
|
||||
Reference in New Issue
Block a user