EV

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.zip

Installs 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.
57 charsno explicit “when” trigger
Intermediate

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

You give it
Evernote integration codebase and production environment configuration
You get back
Completed production readiness checklist and post-deployment verification report

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=false in 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 (.env in .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_REACHED errors
  • Minimum delay between API calls (100-200ms)
  • Response caching for listNotebooks() and listTags() (5-10 min TTL)
  • findNotesMetadata() used instead of findNotes() 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/updateNote call
  • 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=production set 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

ErrorCauseSolution
INVALID_AUTH in productionUsing sandbox token with production endpointVerify EVERNOTE_SANDBOX=false matches production key
Verification script failsService not healthy after deployCheck logs, rollback if needed
Rate limits on launchBurst of API calls at startupAdd startup delay, warm caches gradually
PERMISSION_DENIEDProduction key missing permissionsContact 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

Completed development and testing in sandboxProduction API key approved by EvernoteProduction infrastructure provisioned

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.

SkillInstallsUpdatedSafetyDifficulty
evernote-prod-checklist (this skill)025dCautionIntermediate
django-verification54moReviewIntermediate
deployment-validation-config-validate14moReviewAdvanced
documenso-prod-checklist125dCautionIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

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.

521

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

13

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".

12

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.

11

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".

11

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".

11

Search skills

Search the agent skills registry