api-connector
Installation
SKILL.md
API Connector
Hook up external services without getting lost in docs.
Universal Pattern
Every API connection follows the same shape:
const response = await fetch('https://api.example.com/endpoint', {
method: 'POST', // or GET, PUT, DELETE
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.API_KEY}`
},
body: JSON.stringify({ your: 'data' })
});