
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@sharpapi/sharpapi-node-related-skills
Advanced tools
SharpAPI.com Node.js SDK for finding related skills

SharpAPI Related Skills Generator uses AI to generate a list of related skills based on the provided skill name. Perfect for HR tech, recruitment platforms, skill assessment tools, and career development applications.
npm install @sharpapi/sharpapi-node-related-skills
Visit SharpAPI.com to get your API key.
const { SharpApiRelatedSkillsService } = require('@sharpapi/sharpapi-node-related-skills');
const apiKey = process.env.SHARP_API_KEY; // Store your API key in environment variables
const service = new SharpApiRelatedSkillsService(apiKey);
const skillName = 'JavaScript';
async function generateRelatedSkills() {
try {
// Submit related skills generation job
const statusUrl = await service.generateRelatedSkills(skillName, 'English', 10);
console.log('Job submitted. Status URL:', statusUrl);
// Fetch results (polls automatically until complete)
const result = await service.fetchResults(statusUrl);
console.log('Related skills:', result.getResultJson());
} catch (error) {
console.error('Error:', error.message);
}
}
generateRelatedSkills();
generateRelatedSkills(skillName: string, language?: string, maxQuantity?: number, voiceTone?: string, context?: string): Promise<string>Generates a list of related skills based on the provided skill name.
Parameters:
skillName (string, required): The skill name to find related skills forlanguage (string, optional): Output language (default: 'English')maxQuantity (number, optional): Maximum number of related skills to return (default: 10)voiceTone (string, optional): Tone of the response (e.g., 'Professional', 'Casual')context (string, optional): Additional context for the AIReturns:
Example:
const statusUrl = await service.generateRelatedSkills(
'Python',
'English',
5,
'Professional',
'Focus on data science and machine learning skills'
);
const result = await service.fetchResults(statusUrl);
The API returns related skills with relevance scores (weight: 0-10, where 10 is the highest relevance):
{
"data": {
"type": "api_job_result",
"id": "bac70cd7-5347-4443-9632-c82019f73e9a",
"attributes": {
"status": "success",
"type": "hr_related_skills",
"result": {
"skill": "Quicken",
"related_skills": [
{
"name": "Accounting",
"weight": 8.7
},
{
"name": "Bookkeeping",
"weight": 7
},
{
"name": "Financial Management",
"weight": 6.8
},
{
"name": "Financial Reporting",
"weight": 7.5
},
{
"name": "Microsoft Excel",
"weight": 6.5
},
{
"name": "QuickBooks",
"weight": 9.2
}
]
}
}
}
}
Weight Scale:
10.0 - Extremely related (essential companion skill)8.0-9.9 - Highly related (commonly used together)6.0-7.9 - Moderately related (useful complementary skill)4.0-5.9 - Somewhat related (beneficial to know)1.0-3.9 - Loosely related (nice to have)const { SharpApiRelatedSkillsService } = require('@sharpapi/sharpapi-node-related-skills');
const service = new SharpApiRelatedSkillsService(process.env.SHARP_API_KEY);
service.generateRelatedSkills('HTML', 'English', 5)
.then(statusUrl => service.fetchResults(statusUrl))
.then(result => {
const data = result.getResultJson();
console.log(`Related skills for ${data.result.skill}:`);
data.result.related_skills.forEach((skill, index) => {
console.log(`${index + 1}. ${skill.name} (relevance: ${skill.weight}/10)`);
});
})
.catch(error => console.error('Generation failed:', error));
const service = new SharpApiRelatedSkillsService(process.env.SHARP_API_KEY);
async function expandJobSkills(primarySkills) {
const allRelatedSkills = [];
for (const skill of primarySkills) {
const statusUrl = await service.generateRelatedSkills(skill, 'English', 8);
const result = await service.fetchResults(statusUrl);
const data = result.getResultJson();
allRelatedSkills.push({
primary: skill,
related: data.result.related_skills
});
}
return allRelatedSkills;
}
const jobSkills = ['React', 'Node.js', 'PostgreSQL'];
const expandedSkills = await expandJobSkills(jobSkills);
console.log('Expanded skill requirements:');
expandedSkills.forEach(skillSet => {
console.log(`\n${skillSet.primary}:`);
skillSet.related
.filter(s => s.weight >= 7)
.forEach(s => console.log(` - ${s.name} (${s.weight}/10)`));
});
const service = new SharpApiRelatedSkillsService(process.env.SHARP_API_KEY);
async function assessSkillGap(currentSkills, targetSkill) {
const statusUrl = await service.generateRelatedSkills(targetSkill, 'English', 15);
const result = await service.fetchResults(statusUrl);
const data = result.getResultJson();
const recommendedSkills = data.result.related_skills
.filter(skill => !currentSkills.includes(skill.name))
.filter(skill => skill.weight >= 7)
.sort((a, b) => b.weight - a.weight);
return {
targetSkill,
currentSkills,
recommendedSkills,
message: `To master ${targetSkill}, consider learning these ${recommendedSkills.length} related skills`
};
}
const assessment = await assessSkillGap(
['HTML', 'CSS'],
'Front-End Development'
);
console.log(assessment.message);
assessment.recommendedSkills.forEach((skill, index) => {
console.log(`${index + 1}. ${skill.name} (priority: ${skill.weight}/10)`);
});
POST /hr/related_skills
For detailed API specifications, refer to:
This project is licensed under the MIT License. See the LICENSE.md file for details.
Powered by SharpAPI - AI-Powered API Workflow Automation
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.