mirror of
https://github.com/xx254/linkedin_skills.git
synced 2026-07-17 15:25:16 +03:00
linkedin skills
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"version": "1.0.0",
|
||||
"firstRunCompleted": false,
|
||||
"timezone": "America/Los_Angeles",
|
||||
"cadence": {
|
||||
"frequency": "daily",
|
||||
"dayOfWeek": "monday",
|
||||
"time": "08:00"
|
||||
},
|
||||
"targetMarket": {
|
||||
"industries": [],
|
||||
"companySizes": [],
|
||||
"geographies": [],
|
||||
"seniority": [],
|
||||
"alwaysExcludeRoles": [],
|
||||
"alwaysExcludeCompanyTypes": []
|
||||
},
|
||||
"qualification": {
|
||||
"minScoreToPrioritize": 3,
|
||||
"allowTitleUnclearAsScore1": true,
|
||||
"disqualifyCategories": []
|
||||
},
|
||||
"outreach": {
|
||||
"maxChars": 300,
|
||||
"maxQuestions": 1,
|
||||
"firstMessageNoPitch": true,
|
||||
"toneProfilePath": "context/brand-voice.md"
|
||||
},
|
||||
"prioritization": {
|
||||
"weights": {
|
||||
"icpFit": 0.5,
|
||||
"signalStrength": 0.3,
|
||||
"timing": 0.2
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "LinkedIn Skills Settings",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"version",
|
||||
"timezone",
|
||||
"cadence",
|
||||
"targetMarket",
|
||||
"qualification",
|
||||
"outreach",
|
||||
"prioritization"
|
||||
],
|
||||
"properties": {
|
||||
"version": { "type": "string" },
|
||||
"firstRunCompleted": { "type": "boolean" },
|
||||
"timezone": { "type": "string" },
|
||||
"cadence": {
|
||||
"type": "object",
|
||||
"required": ["frequency", "time"],
|
||||
"properties": {
|
||||
"frequency": { "type": "string", "enum": ["daily", "weekly"] },
|
||||
"dayOfWeek": { "type": "string" },
|
||||
"time": { "type": "string" }
|
||||
}
|
||||
},
|
||||
"targetMarket": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"industries": { "type": "array", "items": { "type": "string" } },
|
||||
"companySizes": { "type": "array", "items": { "type": "string" } },
|
||||
"geographies": { "type": "array", "items": { "type": "string" } },
|
||||
"seniority": { "type": "array", "items": { "type": "string" } },
|
||||
"alwaysExcludeRoles": { "type": "array", "items": { "type": "string" } },
|
||||
"alwaysExcludeCompanyTypes": { "type": "array", "items": { "type": "string" } }
|
||||
}
|
||||
},
|
||||
"qualification": {
|
||||
"type": "object",
|
||||
"required": ["minScoreToPrioritize", "allowTitleUnclearAsScore1", "disqualifyCategories"],
|
||||
"properties": {
|
||||
"minScoreToPrioritize": { "type": "number", "minimum": 1, "maximum": 3 },
|
||||
"allowTitleUnclearAsScore1": { "type": "boolean" },
|
||||
"disqualifyCategories": { "type": "array", "items": { "type": "string" } }
|
||||
}
|
||||
},
|
||||
"outreach": {
|
||||
"type": "object",
|
||||
"required": ["maxChars", "maxQuestions", "firstMessageNoPitch"],
|
||||
"properties": {
|
||||
"maxChars": { "type": "number", "minimum": 120, "maximum": 500 },
|
||||
"maxQuestions": { "type": "number", "minimum": 0, "maximum": 2 },
|
||||
"firstMessageNoPitch": { "type": "boolean" },
|
||||
"toneProfilePath": { "type": "string" }
|
||||
}
|
||||
},
|
||||
"prioritization": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"weights": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"icpFit": { "type": "number" },
|
||||
"signalStrength": { "type": "number" },
|
||||
"timing": { "type": "number" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user