lindy-ci-integration

Featured

Configure CI/CD pipelines for testing Lindy AI agent integrations. Use when setting up automated testing, configuring GitHub Actions for webhook receiver tests, or validating agent connectivity in CI. Trigger with phrases like "lindy CI", "lindy GitHub Actions", "lindy automated tests", "CI lindy pipeline".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Lindy CI Integration ## Overview Lindy agents run on Lindy's managed platform — CI/CD tests your **integration code**: webhook receivers, callback handlers, and application logic that interacts with Lindy agents. Test webhook signature verification, payload processing, and error handling without hitting live Lindy endpoints. ## Prerequisites - GitHub repository with Actions enabled - Lindy API key and webhook secret stored as GitHub secrets - Node.js project with webhook receiver code - Completed `lindy-install-auth` setup ## Instructions ### Step 1: Store Secrets in GitHub ```bash gh secret set LINDY_API_KEY --body "lnd_live_xxxxxxxxxxxx" gh secret set LINDY_WEBHOOK_SECRET --body "whsec_xxxxxxxxxxxx" ``` ### Step 2: Create GitHub Actions Workflow ```yaml # .github/workflows/lindy-integration.yml name: Lindy Integration Tests on: push: branches: [main] pull_request: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '20' cache: 'npm' - run: npm ci - name: Run unit tests run: npm test env: LINDY_WEBHOOK_SECRET: ${{ secrets.LINDY_WEBHOOK_SECRET }} - name: Validate webhook handler run: npm run test:webhook - name: Connectivity check (non-blocking) continue-on-error: true run: | curl -s -o /dev/null -w "%{http_code}" \ -X POST ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

lindy-install-auth

Set up Lindy AI account, API access, and webhook authentication. Use when onboarding to Lindy, configuring API keys for webhook triggers, or connecting Lindy agents to your application. Trigger with phrases like "install lindy", "setup lindy", "lindy auth", "configure lindy API key", "lindy webhook secret".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-deploy-integration

Deploy applications that integrate with Lindy AI agents. Use when deploying webhook receivers, callback handlers, or applications connected to Lindy agents. Trigger with phrases like "deploy lindy", "lindy deployment", "lindy production deploy", "release lindy integration".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-local-dev-loop

Set up local development workflow for testing Lindy AI agent integrations. Use when building webhook receivers, testing agent callbacks, or iterating on Lindy-connected applications locally. Trigger with phrases like "lindy local dev", "lindy development", "test lindy locally", "lindy webhook local".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-common-errors

Troubleshoot common Lindy AI agent errors and workflow failures. Use when encountering errors, debugging agent failures, or resolving integration problems. Trigger with phrases like "lindy error", "lindy not working", "debug lindy", "lindy troubleshoot", "lindy agent failed".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-security-basics

Implement security best practices for Lindy AI agents and integrations. Use when securing API keys, configuring agent permissions, verifying webhooks, or auditing agent access. Trigger with phrases like "lindy security", "secure lindy", "lindy API key security", "lindy permissions", "lindy audit".

2,266 Updated today
jeremylongshore