Create 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".
Install with Tessl CLI
npx tessl i github:jeremylongshore/claude-code-plugins-plus-skills --skill clay-hello-world71
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
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.
9659b78
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.