GitHub
Skills harvested from GitHub repositories
14810 skills availablehootsuite-sdk-patterns
Production patterns for Hootsuite REST API: typed client, token management, scheduling helpers, and Python integration. ...
hootsuite-performance-tuning
import { LRUCache } from 'lru-cache'; const profileCache = new LRUCache<string, any>({ max: 100, ttl: 3600000 }); async ...
hootsuite-install-auth
Configure Hootsuite REST API OAuth 2.0 authentication. Hootsuite uses OAuth 2.0 with Bearer tokens. You register an app ...
hootsuite-hello-world
List your social media profiles and schedule a post using the Hootsuite REST API. The API base URL is https://platform.h...
hootsuite-deploy-integration
Deploy Hootsuite social media management backends. Key consideration: OAuth refresh tokens must persist across deploymen...
hootsuite-core-workflow-a
Schedule social media posts with images and videos using the Hootsuite REST API. The publishing workflow involves: uploa...
hootsuite-core-workflow-b
Retrieve social media analytics and use Ow.ly URL shortening via the Hootsuite API. Track post performance, engagement m...
guidewire-security-and-rbac
Build the security posture an integration needs in production: secrets that cannot leak from the repo, roles that cannot...
guidewire-migration-and-upgrade
Move a Guidewire deployment without losing policies, claims, integrations, or trust. Two related but distinct workflows:...
guidewire-local-dev-loop
Run a local InsuranceSuite instance and iterate on Gosu rule logic in seconds, not minutes. The single biggest productiv...
guidewire-install-auth
Authenticate a backend service to a Guidewire Cloud tenant using OAuth2 client credentials and operate the auth layer in...
guidewire-core-workflow-b
Drive the ClaimCenter claims lifecycle through Cloud API and survive the failure modes that derail naive automation. Thi...
guidewire-ci-cd-pipeline
Ship Gosu changes from a developer's branch to production without breaking running policies. Guidewire Cloud Console (GC...
groq-webhooks-events
Build event-driven architectures around Groq's inference API. Groq does not provide native webhooks, but its sub-second ...
groq-upgrade-migration
!npm list groq-sdk 2>/dev/null | grep groq-sdk || echo 'groq-sdk not installed' !pip show groq 2>/dev/null | grep -E "Na...
groq-security-basics
Security practices for Groq API keys and data flowing through Groq's inference API. Groq uses a single API key type (gsk...
groq-sdk-patterns
Production patterns for the groq-sdk package. The Groq SDK mirrors the OpenAI SDK interface (chat.completions.create), s...
groq-reference-architecture
Production architecture for applications built on Groq's LPU inference API. Covers model routing by latency requirements...
groq-performance-tuning
Maximize Groq's LPU inference speed advantage. Groq already delivers extreme throughput (280-560 tok/s) and low latency ...
groq-prod-checklist
Complete pre-launch checklist for deploying Groq-powered applications to production. Covers API key security, model sele...
groq-local-dev-loop
Set up a fast, reproducible local development workflow for Groq. Groq's sub-second response times make it uniquely suite...
groq-enterprise-rbac
Manage team access to Groq's inference API through API key strategy, model-level routing controls, spending limits, and ...
groq-install-auth
Install the official Groq SDK and configure API key authentication. Groq provides ultra-fast LLM inference on custom LPU...
groq-debug-bundle
!node --version 2>/dev/null || echo 'N/A' !python3 --version 2>/dev/null || echo 'N/A' !npm list groq-sdk 2>/dev/null | ...