frontend-analyzer

frontend-analyzer is a skill for Cursor from kubev2v/forklift-console-plugin. It costs 0 tokens per session (651 once invoked), scanned A, original, Apache-2.0.

A tool that examines a frontend codebase and writes reference notes about its pages, providers, mappings, and shared components.

In plain words
What is it for?
Use it to analyze the frontend, refresh its notes, or scrape frontend pages after the code changes.
Why use it?
It gives developers a current map of how the user interface is put together, reducing the need to search through many files.

Skill for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions Cursor.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/kubev2v/forklift-console-plugin/frontend-analyzer
Any agent
npx skills add kubev2v/forklift-console-plugin --skill frontend-analyzer
Clone the repo
git clone --depth 1 https://github.com/kubev2v/forklift-console-plugin

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for frontend-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/kubev2v/forklift-console-plugin/frontend-analyzer.svg)](https://agentmods.dev/skills/kubev2v/forklift-console-plugin/frontend-analyzer)
Your own site
<a href="https://agentmods.dev/skills/kubev2v/forklift-console-plugin/frontend-analyzer"><img src="https://agentmods.dev/badge/skills/kubev2v/forklift-console-plugin/frontend-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 651 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00651
Opus 5 $0.00000 $0.00326
Sonnet 5 $0.00000 $0.00130
Haiku 4.5 $0.00000 $0.00065

Measured 6d ago against content hash 97104f159d48, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

frontend-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/skills/frontend-analyzer/SKILL.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frontend Analyzer Skill

Invoke with: "analyze frontend", "refresh frontend knowledge", "update frontend architect", "scrape frontend pages"

Purpose

Systematically analyze the Forklift Console Plugin frontend codebase (src/) and generate structured knowledge files as .mdc Cursor rules under .cursor/rules/frontend/.

These knowledge files power the Frontend Architect agent (architect.mdc) by providing page-level composition maps, shared component usage indexes, and cross-feature connection graphs.

Configuration

  • Source directory: src/ (this repo)
  • Output directory: .cursor/rules/frontend/
  • State file: .cursor/skills/frontend-analyzer/state.json

Modes

Full Analysis (first run or forced refresh)

Run all 5 analysis agents in parallel:

Agent Output file Source paths
Providers frontend/providers.mdc src/providers/
Plans frontend/plans.mdc src/plans/
Mappings frontend/mappings.mdc src/networkMaps/, src/storageMaps/
Overview frontend/overview.mdc src/overview/
Shared Components frontend/shared-components.mdc src/components/, cross-feature grep

Incremental Refresh

  1. Read state.json for lastAnalyzedDate
  2. Run git diff --name-only --since=<lastDate> -- src/ to find changed files
  3. Map changed files to knowledge areas using the domain mapping below
  4. Re-run analysis only for affected areas
  5. Update state.json

Domain-to-Path Mapping

Knowledge file Source paths
providers.mdc src/providers/
plans.mdc src/plans/
mappings.mdc src/networkMaps/, src/storageMaps/
overview.mdc src/overview/
shared-components.mdc src/components/, then grep across all feature dirs

Analysis Template

Each agent MUST follow this template:

---
description: <one-line description for Cursor rule matching>
alwaysApply: false
---

# <Feature Title> - Page Composition

> Analyzed on <date>

## Page Composition

<Component trees per page, 1-2 levels deep. Include route entry point.>

## Shared Component Usage

<Which src/components/* are used on these pages>

## Data Sources

<K8s watches, hooks, context providers>

## Cross-Feature Connections

<How this feature connects to others -- imports, navigation, shared data>

## Blast Radius Notes

<What else is affected when changing components here>

Read the full file on GitHub · 90 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 90 lines · 0 tokens per session scan A 97104f159d48

Subscribe to this mod's changes

frontend-analyzer is a skill published in the GitHub repository kubev2v/forklift-console-plugin (11 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 651 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens