From glean-pack
Deploys Glean custom connectors as scheduled jobs on Cloud Run, AWS Lambda, Fly.io, or GitHub Actions for periodic indexing syncs.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin glean-packThis skill is limited to using the following tools:
Deploy Glean custom connectors as scheduled services. Connectors run periodically to sync content from your internal tools into the Glean search index.
Sets up GitHub Actions CI/CD for Glean connectors: PR indexing tests, staging validation, search quality checks via Node/TypeScript scripts.
Plans DataHub connectors by classifying source systems, researching via agent or inline, and generating _PLANNING.md blueprints with entity mappings and architecture decisions. For new connector design or source research.
Deploys Apify Actors via apify push and integrates results into web apps using ApifyClient for sync/async scraping runs and dataset access.
Share bugs, ideas, or general feedback.
Deploy Glean custom connectors as scheduled services. Connectors run periodically to sync content from your internal tools into the Glean search index.
# Deploy connector as Cloud Run job
gcloud run jobs create glean-wiki-sync \
--source . \
--region us-central1 \
--set-secrets "GLEAN_INDEXING_TOKEN=glean-token:latest" \
--set-env-vars "GLEAN_DOMAIN=company-be.glean.com,GLEAN_DATASOURCE=wiki"
# Schedule daily at 2 AM
gcloud scheduler jobs create http glean-wiki-daily \
--schedule "0 2 * * *" \
--uri "https://us-central1-run.googleapis.com/apis/run.googleapis.com/v1/..." \
--http-method POST
on:
schedule:
- cron: '0 2 * * *' # Daily 2 AM UTC
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && node src/connectors/sync-all.js
env:
GLEAN_DOMAIN: ${{ secrets.GLEAN_DOMAIN }}
GLEAN_INDEXING_TOKEN: ${{ secrets.GLEAN_INDEXING_TOKEN }}
// Trigger on source system changes via EventBridge/SNS
export const handler = async (event: any) => {
const glean = new GleanClient(process.env.GLEAN_DOMAIN!, process.env.GLEAN_INDEXING_TOKEN!);
// Incremental index — only changed documents
await glean.indexDocuments('wiki', transformEvent(event));
};