Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

evernote-prod-checklistEvernote 产品清单

Agent Skill

evernote-prod-checklist 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

649

周安装

26

GitHub Stars

2,134

下载量

210
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:evernote-prod-checklist(Evernote 产品清单)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/evernote-prod-checklist
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill evernote-prod-checklist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill evernote-prod-checklist

简介

evernote-prod-checklist 列出上线前的安全检查项,涵盖密钥激活、安全加固与限流处理。

  • 适用于发布前验证配置正确性与生产就绪状态的综合审计。
  • 包含 OAuth 回调验证、监控埋点与 go-live 确认清单。
  • 使用前需完成沙箱测试并获得生产 API 密钥的正式审批。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.1%
按下载量换算74

Claude

30.06%
按下载量换算63

Cursor

16.18%
按下载量换算34

Gemini CLI

8.88%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills