Loading...
Loading...
Create a minimal working PostHog example. Use when starting a new PostHog integration, testing your setup, or learning basic PostHog API patterns. Trigger with phrases like "posthog hello world", "posthog example", "posthog quick start", "simple posthog code".
npx skill4agent add jeremylongshore/claude-code-plugins-plus-skills posthog-hello-worldposthog-install-authimport { PostHogClient } from '@posthog/sdk';
const client = new PostHogClient({
apiKey: process.env.POSTHOG_API_KEY,
});async function main() {
// Your first API call here
}
main().catch(console.error);Success! Your PostHog connection is working.| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with |
| 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 { PostHogClient } from '@posthog/sdk';
const client = new PostHogClient({
apiKey: process.env.POSTHOG_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);from posthog import PostHogClient
client = PostHogClient()
# Your first API call hereposthog-local-dev-loop