import Smithery from '@smithery/api';
const client = new Smithery({
apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted
});
const skillVoteResponse = await client.skills.votes.create('slug', {
namespace: 'namespace',
vote: 'up',
});
console.log(skillVoteResponse.createdAt);