Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Deploy Evernote integrations to production environments. Use when deploying to cloud platforms, configuring production, or setting up deployment pipelines. Trigger with phrases like "deploy evernote", "evernote production deploy", "release evernote", "evernote cloud deployment".
.claude/skills/jeremylongshore-evernote-deploy-integration/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 46% | 0% |
| case-17 | ✗→✓ | ▲ Improved | 25% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 30% | 0% |
| case-21 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-09 | ✓→✗ | ▼ Worse | 49% | 0% |
Deploy Evernote integrations to production environments including Docker containers, AWS ECS/Lambda, Google Cloud Run, and Kubernetes, with proper secrets management and health checks.
evernote-ci-integration)Create a multi-stage Dockerfile that builds the app and produces a minimal production image. Set NODE_ENV=production and configure the Evernote SDK for production endpoints.
dockerfileFROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci --production COPY . . RUN npm run build FROM node:20-alpine WORKDIR /app COPY --from=builder /app/dist ./dist COPY --from=builder /app/node_modules ./node_modules ENV NODE_ENV=production EVERNOTE_SANDBOX=false EXPOSE 3000 CMD ["node", "dist/index.js"]
Deploy the Docker image to Cloud Run with secrets mounted from Secret Manager. Cloud Run scales to zero when idle, making it cost-effective for webhook receivers.
bashgcloud run deploy evernote-app \ --image gcr.io/PROJECT/evernote-app:latest \ --set-secrets EVERNOTE_CONSUMER_KEY=evernote-key:latest \ --set-secrets EVERNOTE_CONSUMER_SECRET=evernote-secret:latest \ --allow-unauthenticated \ --region us-central1
Package the webhook handler as a Lambda function behind API Gateway. Use AWS Secrets Manager for credentials. Lambda is ideal for event-driven Evernote integrations (webhook processing, scheduled sync).
Create a Deployment with ConfigMap for non-secret settings and Kubernetes Secrets for API credentials. Include liveness and readiness probes that verify Evernote API connectivity.
After deployment, verify: health check endpoint returns connected, a test note can be created and retrieved, webhook endpoint is reachable, and monitoring is reporting metrics.
For the full Dockerfile, Cloud Run config, Lambda handler, Kubernetes manifests, and deployment verification scripts, see Implementation Guide.
| Error | Cause | Solution | |-------|-------|----------| | Invalid consumer key in production | Using sandbox credentials | Verify EVERNOTE_SANDBOX=false and production key | | Secret not mounted | Missing cloud secret resource | Create secret in Secret Manager/AWS Secrets Manager | | Health check failing | Evernote API unreachable from cloud | Check network/firewall rules, verify DNS resolution | | Cold start timeout | Lambda initialization too slow | Increase timeout, use provisioned concurrency |
For webhook handling, see evernote-webhooks-events.
Cloud Run webhook: Deploy a webhook receiver to Cloud Run that processes Evernote note change notifications, syncs changes to a database, and scales to zero between events.
Lambda batch processor: Deploy a scheduled Lambda that runs nightly to export all notes tagged "archive" to S3, using the sync API to fetch only changed notes since the last run.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 24,009 | 21,308 | -11% | 1 | 1 | 0% | 3,590 | 3,807 | +6% | 0 | 0 | — |
case-02 | fail→fail | 25,389 | 25,513 | +0% | 1 | 1 | 0% | 3,789 | 5,185 | +37% | 0 | 0 | — |
case-03 | pass→pass | 13,454 | 13,192 | -2% | 1 | 1 | 0% | 2,365 | 2,901 | +23% | 0 | 0 | — |
case-04 | fail→fail | 17,139 | 14,628 | -15% | 1 | 1 | 0% | 2,890 | 3,058 | +6% | 0 | 0 | — |
case-05 | fail→fail | 9,704 | 11,255 | +16% | 1 | 1 | 0% | 1,927 | 2,704 | +40% | 0 | 0 | — |
case-06 | pass→pass | 13,546 | 16,858 | +24% | 1 | 1 | 0% | 2,217 | 3,245 | +46% | 0 | 0 | — |
case-07 | fail→pass | 20,034 | 10,715 | -47% | 1 | 1 | 0% | 1,840 | 2,689 | +46% | 0 | 0 | — |
case-08 | fail→fail | 18,121 | 16,535 | -9% | 1 | 1 | 0% | 2,560 | 3,355 | +31% | 0 | 0 | — |
case-09 | pass→fail | 18,211 | 21,225 | +17% | 1 | 1 | 0% | 2,572 | 3,841 | +49% | 0 | 0 | — |
case-10 | fail→fail | 17,001 | 14,405 | -15% | 1 | 1 | 0% | 2,509 | 3,296 | +31% | 0 | 0 | — |
case-11 | fail→fail | 25,199 | 28,226 | +12% | 1 | 1 | 0% | 3,470 | 5,277 | +52% | 0 | 0 | — |
case-12 | pass→pass | 15,528 | 19,240 | +24% | 1 | 1 | 0% | 2,397 | 3,549 | +48% | 0 | 0 | — |
case-13 | pass→pass | 15,726 | 11,863 | -25% | 1 | 1 | 0% | 2,413 | 3,018 | +25% | 0 | 0 | — |
case-14 | pass→pass | 16,589 | 12,009 | -28% | 1 | 1 | 0% | 2,453 | 2,684 | +9% | 0 | 0 | — |
case-15 | pass→pass | 14,991 | 11,963 | -20% | 1 | 1 | 0% | 2,584 | 3,021 | +17% | 0 | 0 | — |
case-16 | pass→pass | 8,630 | 3,643 | -58% | 1 | 1 | 0% | 1,479 | 1,414 | -4% | 0 | 0 | — |
case-17 | fail→pass | 10,215 | 6,881 | -33% | 1 | 1 | 0% | 1,464 | 1,823 | +25% | 0 | 0 | — |
case-18 | pass→pass | 12,325 | 2,722 | -78% | 1 | 1 | 0% | 1,550 | 1,329 | -14% | 0 | 0 | — |
case-19 | pass→pass | 15,971 | 17,168 | +7% | 1 | 1 | 0% | 2,415 | 3,887 | +61% | 0 | 0 | — |
case-20 | fail→pass | 11,694 | 11,037 | -6% | 1 | 1 | 0% | 2,205 | 2,872 | +30% | 0 | 0 | — |
case-21 | fail→pass | 7,991 | 3,550 | -56% | 1 | 1 | 0% | 1,429 | 1,510 | +6% | 0 | 0 | — |
case-22 | pass→pass | 13,498 | 10,698 | -21% | 1 | 1 | 0% | 2,067 | 2,534 | +23% | 0 | 0 | — |
case-23 | pass→pass | 21,219 | 20,114 | -5% | 1 | 1 | 0% | 3,698 | 5,090 | +38% | 0 | 0 | — |
case-24 | pass→pass | 13,587 | 15,836 | +17% | 1 | 1 | 0% | 2,635 | 3,302 | +25% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 24 cases were attempted. The headline lift of +13 percentage points is the difference between those two pass rates over the 24 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.