tessl i github:jeremylongshore/claude-code-plugins-plus-skills --skill clay-hello-worldCreate a minimal working Clay example. Use when starting a new Clay integration, testing your setup, or learning basic Clay API patterns. Trigger with phrases like "clay hello world", "clay example", "clay quick start", "simple clay code".
Review Score
66%
Validation Score
11/16
Implementation Score
42%
Activation Score
90%
Minimal working example demonstrating core Clay functionality.
clay-install-auth setupCreate a new file for your hello world example.
import { ClayClient } from '@clay/sdk';
const client = new ClayClient({
apiKey: process.env.CLAY_API_KEY,
});async function main() {
// Your first API call here
}
main().catch(console.error);Success! Your Clay connection is working.| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with npm list or pip show |
| Auth Error | Invalid credentials | Check environment variable is set |
| Timeout | Network issues | Increase timeout or check connectivity |
| Rate Limit | Too many requests | Wait and retry with exponential backoff |
import { ClayClient } from '@clay/sdk';
const client = new ClayClient({
apiKey: process.env.CLAY_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);from clay import ClayClient
client = ClayClient()
# Your first API call hereProceed to clay-local-dev-loop for development workflow setup.