evernote-prod-checklist
A detailed checklist for hardening, securing, and validating Evernote integrations before go-live.
Install
mkdir -p .claude/skills/evernote-prod-checklist && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/9048" && unzip -o skill.zip -d .claude/skills/evernote-prod-checklist && rm skill.zipInstalls to .claude/skills/evernote-prod-checklist
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Production readiness checklist for Evernote integrations.Key capabilities
- →Validate production API key configuration and environment settings
- →Verify security measures including token encryption and log redaction
- →Implement rate limit handling strategies like exponential backoff
- →Configure monitoring for API latency, error rates, and quota usage
- →Perform data integrity checks for ENML content and note metadata
- →Execute post-deployment verification scripts for connectivity
How it works
The tool provides a structured checklist covering API authentication, security, performance, and monitoring requirements. It includes a bash script to verify connectivity and note operations after deployment.
Inputs & outputs
When to use evernote-prod-checklist
- →Preparing for production deployment
- →Auditing integration security
- →Verifying OAuth flow safety
- →Configuring production environment variables
About this skill
Evernote Production Checklist
Overview
Comprehensive checklist for deploying Evernote integrations to production, covering API key activation, security hardening, rate limit handling, monitoring, and go-live verification.
Prerequisites
- Completed development and testing in sandbox
- Production API key approved by Evernote (requires review process)
- Production infrastructure provisioned
Instructions
API Key & Authentication
- Production API key requested and approved by Evernote
-
EVERNOTE_SANDBOX=falsein production config - Consumer key and secret stored in secrets manager (not env files)
- OAuth callback URL uses HTTPS on production domain
- Token expiration tracking implemented (
edam_expires) - Token refresh/re-auth flow tested end-to-end
Security
- Access tokens encrypted at rest (AES-256-GCM)
- CSRF protection on OAuth flow
- API credentials not in source control (
.envin.gitignore) - Log output redacts tokens and PII
- Input validation on all user-supplied content (ENML sanitization)
- Rate limit handling prevents API key suspension
Rate Limits & Performance
- Exponential backoff on
RATE_LIMIT_REACHEDerrors - Minimum delay between API calls (100-200ms)
- Response caching for
listNotebooks()andlistTags()(5-10 min TTL) -
findNotesMetadata()used instead offindNotes()for listings - Batch operations use sequential processing with delays
Monitoring & Alerting
- Health check endpoint verifies Evernote API connectivity
- Metrics tracked: API call count, latency, error rate, rate limits
- Alerts configured for rate limits, auth failures, and high error rates
- Structured logging with correlation IDs
- Quota usage monitoring with threshold alerts (75%, 90%)
Data Integrity
- ENML validation before every
createNote/updateNotecall - Note titles sanitized (max 255 chars, no newlines)
- Tag names validated (max 100 chars, no commas)
- Resource hashes verified (MD5 match)
- Sync state (USN) tracked and persisted for incremental sync
Deployment
- Production Docker image built with multi-stage build
-
NODE_ENV=productionset in container - Graceful shutdown handles in-flight API calls
- Rollback plan documented and tested
- Deployment verification script runs post-deploy
Verification Script
#!/bin/bash
set -euo pipefail
echo "Verifying Evernote production deployment..."
# 1. Health check
curl -sf "$APP_URL/health" | jq '.evernoteApi' | grep -q '"connected"'
echo " Health check: PASS"
# 2. Create test note
GUID=$(curl -sf "$APP_URL/api/test-note" | jq -r '.guid')
echo " Note creation: PASS (GUID: $GUID)"
# 3. Clean up test note
curl -sf -X DELETE "$APP_URL/api/notes/$GUID"
echo " Cleanup: PASS"
echo "All checks passed."
For the complete checklist details and verification scripts, see Implementation Guide.
Output
- Production readiness checklist (API keys, security, performance, monitoring)
- Verification script for post-deployment testing
- Security audit checklist for credential and token management
- Monitoring setup verification
Error Handling
| Error | Cause | Solution |
|---|---|---|
INVALID_AUTH in production | Using sandbox token with production endpoint | Verify EVERNOTE_SANDBOX=false matches production key |
| Verification script fails | Service not healthy after deploy | Check logs, rollback if needed |
| Rate limits on launch | Burst of API calls at startup | Add startup delay, warm caches gradually |
PERMISSION_DENIED | Production key missing permissions | Contact Evernote developer support |
Resources
Next Steps
For version upgrades, see evernote-upgrade-migration.
Examples
Go-live checklist: Walk through each section, check off items, run the verification script, and sign off with the team before switching DNS to the production deployment.
Security audit: Review encrypted token storage, verify log redaction, confirm CSRF protection, and test token expiration handling before the production launch.
When not to use it
- →Development or sandbox environment setup
- →Non-Evernote API integrations
Prerequisites
Limitations
- →Requires manual review of API key permissions
- →Verification script assumes availability of curl and jq
How it compares
Unlike manual documentation, this tool provides a systematic audit path and automated verification scripts to ensure production compliance.
Compared to similar skills
evernote-prod-checklist side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| evernote-prod-checklist (this skill) | 0 | 25d | Caution | Intermediate |
| django-verification | 5 | 4mo | Review | Intermediate |
| deployment-validation-config-validate | 1 | 4mo | Review | Advanced |
| documenso-prod-checklist | 1 | 25d | Caution | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jeremylongshore
View all by jeremylongshore →You might also like
django-verification
affaan-m
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
deployment-validation-config-validate
sickn33
You are a configuration management expert specializing in validating, testing, and ensuring the correctness of application configurations. Create comprehensive validation schemas, implement configurat
documenso-prod-checklist
jeremylongshore
Execute Documenso production deployment checklist and rollback procedures. Use when deploying Documenso integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "documenso production", "deploy documenso", "documenso go-live", "documenso launch checklist".
gh-actions-validator
jeremylongshore
Validate use when validating GitHub Actions workflows for Google Cloud and Vertex AI deployments. Trigger with phrases like "validate github actions", "setup workload identity federation", "github actions security", "deploy agent with ci/cd", or "automate vertex ai deployment". Enforces Workload Identity Federation (WIF), validates OIDC permissions, ensures least privilege IAM, and implements security best practices.
ideogram-multi-env-setup
jeremylongshore
Configure Ideogram across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Ideogram configurations. Trigger with phrases like "ideogram environments", "ideogram staging", "ideogram dev prod", "ideogram environment setup", "ideogram config by env".
perplexity-prod-checklist
jeremylongshore
Execute Perplexity production deployment checklist and rollback procedures. Use when deploying Perplexity integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "perplexity production", "deploy perplexity", "perplexity go-live", "perplexity launch checklist".