AI Agent Hub
Back to plugins
🧰

frameevidence

Web Tools Updated 2026.08.15

Run the following command in DeepSeek Harness:

dsh plugin install fieldnote-ops/frameevidence

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install fieldnote-ops/frameevidence in DeepSeek Harness to install this plugin; the full source repository is at https://github.com/fieldnote-ops/frameevidence

About this plugin

When an agent implements a Figma design, it often guesses field names, style tokens, and component hierarchy, producing code that drifts from the source design. FrameEvidence closes that gap by handing the agent a bounded, read-only slice of design evidence before a single line of code is written: layout structure, typography variables, and component references pulled through the Figma REST API at a limited depth and node count.

Two read-only tools do the work. figma_inspect returns an implementation-focused node tree rather than dumping the full Figma JSON schema into the model context. figma_render yields a temporary PNG, JPG, SVG, or PDF render URL for a chosen node. The entire pipeline is strictly read-only: the personal access token is sourced exclusively from a host environment variable and never appears in model arguments or output; requests target api.figma.com only and reject all redirects; raw responses are byte-capped, node trees are bounded in depth and count, and an in-memory cache reduces rate-limit pressure.

FrameEvidence fits developers running Figma-to-code workflows on DeepSeek Harness or similar agent frameworks; teams that need to inject minimal usable design context without introducing OAuth, multi-user credential stores, or a maintained server; and security owners who want a clear, auditable boundary around agent access to design files.

Use Cases

  • An agent inspects a depth-limited layout, typography, and component reference before implementing a Figma component
  • A reviewer checks whether agent-generated code covers every key node and style token in the source design file
  • A team injects minimal, credential-safe design evidence into an agent without running an OAuth server

Best For

  • Developers running Figma-to-code workflows on DeepSeek Harness or similar agent frameworks
  • Security owners who need an auditable boundary around agent access to design files
  • Lightweight teams that want to avoid a maintained server, OAuth broker, or multi-user credential store