adobe-load-scale

Featured

Implement load testing, auto-scaling, and capacity planning for Adobe API integrations with k6 scripts targeting Firefly, PDF Services, and Photoshop APIs, plus Kubernetes HPA configuration. Trigger with phrases like "adobe load test", "adobe scale", "adobe performance test", "adobe capacity", "adobe benchmark".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Adobe Load & Scale ## Overview Load testing and scaling strategies for Adobe API integrations. Adobe APIs are async and relatively slow (5-30s per operation), requiring different load testing approaches than typical REST APIs. ## Prerequisites - k6 load testing tool installed (`npm install -g k6` or `brew install k6`) - Adobe Developer Console credentials for testing (separate from production) - Kubernetes cluster with HPA configured (for auto-scaling) - Understanding of your Adobe API rate limits ## Instructions ### Step 1: k6 Load Test for Firefly API ```javascript // adobe-firefly-load.js import http from 'k6/http'; import { check, sleep } from 'k6'; import { Rate, Trend } from 'k6/metrics'; const errorRate = new Rate('adobe_errors'); const fireflyDuration = new Trend('firefly_duration'); export const options = { stages: [ { duration: '1m', target: 2 }, // Warm up (Adobe APIs are slow) { duration: '3m', target: 5 }, // Steady state { duration: '2m', target: 10 }, // Stress (watch for 429s) { duration: '1m', target: 0 }, // Ramp down ], thresholds: { http_req_duration: ['p(95)<30000'], // 30s — Firefly is async/slow adobe_errors: ['rate<0.05'], // < 5% error rate }, }; // Pre-generate token (shared across VUs) const TOKEN = __ENV.ADOBE_ACCESS_TOKEN; const CLIENT_ID = __ENV.ADOBE_CLIENT_ID; export default function () { const response = http.post( 'https://firefly-api.adobe.io/v3/images/generate', JSON...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

canva-load-scale

Implement Canva Connect API load testing, auto-scaling, and capacity planning. Use when running performance tests, planning capacity around Canva rate limits, or scaling Canva integrations for production workloads. Trigger with phrases like "canva load test", "canva scale", "canva performance test", "canva capacity", "canva k6", "canva benchmark".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-load-scale

Implement Salesforce load testing, API limit capacity planning, and Bulk API scaling. Use when running performance tests against Salesforce, planning API consumption, or scaling high-volume Salesforce integrations. Trigger with phrases like "salesforce load test", "salesforce scale", "salesforce performance test", "salesforce capacity planning", "salesforce high volume".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-load-scale

Load test Figma API integrations and plan for scale. Use when benchmarking API throughput, testing rate limit behavior, or planning capacity for high-volume Figma integrations. Trigger with phrases like "figma load test", "figma scale", "figma benchmark", "figma capacity", "figma throughput".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-load-scale

Load test HubSpot integrations and plan capacity around API rate limits. Use when running performance tests, planning for traffic growth, or sizing your HubSpot integration for production load. Trigger with phrases like "hubspot load test", "hubspot scale", "hubspot capacity", "hubspot benchmark", "hubspot traffic planning".

2,266 Updated today
jeremylongshore
Testing & QA Listed

k6-performance-testing

Performance and load testing skill using k6, covering load test scripts, thresholds, scenarios, checks, custom metrics, and results analysis.

3 Updated today
KaliBellion