Skip to main content
AI/MLjeremylongshore

anima-cost-tuning

'Optimize Anima API costs through caching, incremental generation, and

Stars
2,267
Source
jeremylongshore/claude-code-plugins-plus-skills
Updated
2026-05-31
Slug
jeremylongshore--claude-code-plugins-plus-skills--anima-cost-tuning
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/HEAD/plugins/saas-packs/anima-pack/skills/anima-cost-tuning/SKILL.md -o .claude/skills/anima-cost-tuning.md

Drops the SKILL.md into .claude/skills/anima-cost-tuning.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Anima Cost Tuning

Overview

Optimize design-to-code generation by measuring approved usage, avoiding duplicate work, and retaining only reusable outputs. Treat cost projections as planning inputs until the account owner confirms current contractual terms.

Pricing Context

Anima uses partner-based pricing (not self-service). API access is currently granted to partners with custom agreements. Costs are typically per-generation or per-seat.

Prerequisites

  • A current agreement or account report from the authorized Anima owner; do not infer consumption limits from the illustrative optimization table.
  • Aggregate generation telemetry that records file/node identifiers, generation version, cache state, and duration without exposing design tokens or content.
  • An explicit cache freshness and invalidation policy agreed by design and code owners so cached output cannot silently lag an approved design change.

Cost Optimization Strategies

Strategy Savings Implementation
Generation cache 60-80% Cache results; only regenerate on design change
Incremental generation 40-60% Detect changed components; skip unchanged
Batch scheduling 20-30% Generate during off-peak; avoid real-time
Output reuse 30-50% Generate once, customize programmatically

Instructions

Step 1: Usage Tracker

// src/cost/usage-tracker.ts
interface GenerationRecord {
  timestamp: string;
  fileKey: string;
  nodeId: string;
  cached: boolean;
  durationMs: number;
}

class AnimaUsageTracker {
  private records: GenerationRecord[] = [];

  record(entry: GenerationRecord): void { this.records.push(entry); }

  getReport(): { total: number; cached: number; savings: string } {
    const total = this.records.length;
    const cached = this.records.filter(r => r.cached).length;
    return {
      total,
      cached,
      savings: total > 0 ? `${((cached / total) * 100).toFixed(0)}% saved by caching` : 'No data',
    };
  }
}

Step 2: Smart Generation Policy

// Only generate when:
// 1. Figma file version changed (check via Figma API)
// 2. Cache is expired (>1 hour for active dev, >24h for CI)
// 3. Settings changed (new framework/styling)
// 4. Force flag passed (manual override)

async function shouldGenerate(
  fileKey: string,
  nodeId: string,
  cache: any,
): Promise<boolean> {
  // Check cache first
  const cached = cache.get(fileKey, nodeId);
  if (cached && Date.now() - new Date(cached.generatedAt).getTime() < 3600000) {
    console.log('Using cached generation (< 1 hour old)');
    return false;
  }
  return true;
}

Output

  • Usage tracking with cache hit rate reporting
  • Smart generation policy reducing unnecessary API calls
  • Cost savings through caching and incremental updates

Examples

For a weekly design-system sync, record aggregate generation counts for the approved component registry, then compare an uncached baseline with the smart generation policy. Regenerate only components whose Figma version or generation settings changed, and attach the source-version and cache decision to the PR. If the current usage report is incomplete, a cache cannot identify its source version, or a design owner requests an immediate change, bypass the cache only with an explicit force record and regenerate the affected component—not the entire design file by default.

Error Handling

Failure Response
Account limits or pricing data are unavailable Mark projections as incomplete and obtain current data from the account owner.
Cache source version is unknown Refuse reuse and regenerate the approved affected component.
Generation rate spikes unexpectedly Pause noncritical jobs, inspect aggregate telemetry, and enforce the scheduling policy.
Output is stale after an approved design change Invalidate the affected cache key and record the corrected generation receipt.

Resources

Next Steps

For architecture design, see anima-reference-architecture.