Alwrity Copilot Integration for LinkedIn Writer

This commit is contained in:
ajaysi
2025-09-01 19:45:30 +05:30
parent 64944104a3
commit 10b50f9732
34 changed files with 5177 additions and 19 deletions

View File

@@ -0,0 +1,161 @@
import React from 'react';
import { useCopilotAction } from '@copilotkit/react-core';
const useCopilotActionTyped = useCopilotAction as any;
const RegisterLinkedInEditActions: React.FC = () => {
// Professionalize Content
useCopilotActionTyped({
name: 'professionalizeLinkedInContent',
description: 'Make LinkedIn content more professional and industry-appropriate',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'industry', type: 'string', required: false },
{ name: 'target_audience', type: 'string', required: false }
],
handler: async (args: any) => {
// This would integrate with a backend endpoint for content professionalization
const content = args?.content || '';
const industry = args?.industry || 'Technology';
const targetAudience = args?.target_audience || 'Professionals';
// For now, return a placeholder response
const professionalizedContent = `[Professionalized version of your content for ${industry} industry targeting ${targetAudience}]\n\n${content}`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: professionalizedContent } }));
return { success: true, content: professionalizedContent };
}
});
// Optimize for Engagement
useCopilotActionTyped({
name: 'optimizeLinkedInEngagement',
description: 'Optimize LinkedIn content for better engagement and reach',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'content_type', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const contentType = args?.content_type || 'post';
// Placeholder for engagement optimization
const optimizedContent = `[Engagement-optimized ${contentType}]\n\n${content}\n\n#ProfessionalDevelopment #Networking #IndustryInsights`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: optimizedContent } }));
return { success: true, content: optimizedContent };
}
});
// Add Professional Hashtags
useCopilotActionTyped({
name: 'addLinkedInHashtags',
description: 'Add relevant professional hashtags to LinkedIn content',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'industry', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const industry = args?.industry || 'Technology';
// Placeholder for hashtag addition
const hashtags = '#ProfessionalDevelopment #Networking #IndustryInsights #CareerGrowth';
const contentWithHashtags = `${content}\n\n${hashtags}`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: contentWithHashtags } }));
return { success: true, content: contentWithHashtags };
}
});
// Adjust Tone
useCopilotActionTyped({
name: 'adjustLinkedInTone',
description: 'Adjust the tone of LinkedIn content to be more professional, conversational, or authoritative',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'target_tone', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const targetTone = args?.target_tone || 'professional';
// Placeholder for tone adjustment
const adjustedContent = `[Content adjusted to ${targetTone} tone]\n\n${content}`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: adjustedContent } }));
return { success: true, content: adjustedContent };
}
});
// Expand Content
useCopilotActionTyped({
name: 'expandLinkedInContent',
description: 'Expand LinkedIn content with more details and insights',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'expansion_type', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const expansionType = args?.expansion_type || 'insights';
// Placeholder for content expansion
const expandedContent = `${content}\n\n[Additional ${expansionType} and context added here]`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: expandedContent } }));
return { success: true, content: expandedContent };
}
});
// Condense Content
useCopilotActionTyped({
name: 'condenseLinkedInContent',
description: 'Condense LinkedIn content to be more concise and impactful',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'target_length', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const targetLength = args?.target_length || 'short';
// Placeholder for content condensation
const condensedContent = `[Condensed to ${targetLength} format]\n\n${content.substring(0, Math.min(content.length, 500))}...`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: condensedContent } }));
return { success: true, content: condensedContent };
}
});
// Add Call to Action
useCopilotActionTyped({
name: 'addLinkedInCallToAction',
description: 'Add a professional call to action to LinkedIn content',
parameters: [
{ name: 'content', type: 'string', required: false },
{ name: 'cta_type', type: 'string', required: false }
],
handler: async (args: any) => {
const content = args?.content || '';
const ctaType = args?.cta_type || 'engagement';
const ctaOptions = {
engagement: 'What are your thoughts on this? Share your experience in the comments below!',
networking: 'Let\'s connect if you\'re interested in discussing this further.',
learning: 'Would you like to learn more about this topic? Drop a comment or DM me.',
collaboration: 'Interested in collaborating on similar projects? Let\'s connect!'
};
const cta = ctaOptions[ctaType as keyof typeof ctaOptions] || ctaOptions.engagement;
const contentWithCTA = `${content}\n\n${cta}`;
window.dispatchEvent(new CustomEvent('linkedinwriter:applyEdit', { detail: { target: contentWithCTA } }));
return { success: true, content: contentWithCTA };
}
});
return null;
};
export default RegisterLinkedInEditActions;