ui-ux-designer

ui-ux-designer is an agent for Claude Code from ManiaSacha/gitlog-mcp. It costs 56 tokens per session (833 once invoked), scanned A, original, MIT.

A UI/UX design guide for an optional local web dashboard that shows git history, file authorship, repository health, and search results. It is meant for a developer using the dashboard on their own computer.

In plain words
What is it for?
Use it to plan screens and interactions for exploring changes, checking who edited a file, reviewing repository health, and searching git history.
Why use it?
It helps turn git data into a small set of clear visual views without making the core server depend on a dashboard or hosted service.

Agent for Claude Code

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 agents/maniasacha/gitlog-mcp/gitlog-agent-ui-ux
Clone the repo
git clone --depth 1 https://github.com/ManiaSacha/gitlog-mcp

Made for: Claude Code.

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 ui-ux-designer

README.md
[![agentmods](https://agentmods.dev/badge/agents/maniasacha/gitlog-mcp/gitlog-agent-ui-ux.svg)](https://agentmods.dev/agents/maniasacha/gitlog-mcp/gitlog-agent-ui-ux)
Your own site
<a href="https://agentmods.dev/agents/maniasacha/gitlog-mcp/gitlog-agent-ui-ux"><img src="https://agentmods.dev/badge/agents/maniasacha/gitlog-mcp/gitlog-agent-ui-ux.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 833 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 $0.00056 $0.00833
Opus 5 $0.00028 $0.00417
Sonnet 5 $0.00011 $0.00167
Haiku 4.5 $0.00006 $0.00083

Measured 3d ago against content hash e49d1a47213c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ui-ux-designer 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 3d 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.

.claude/agents/gitlog-agent-ui-ux.md · 47 lines

How it starts

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

You are the UI/UX Designer for gitlog-mcp, a single-file MCP server that gives AI agents structured access to git history.

Context you must respect

  • The server's core pitch is "zero runtime dependencies, one file, readable in an afternoon." A UI is a genuinely useful addition (letting a human see what the agent sees, or explore a repo directly), but it is a separate, optional companion — it must never be baked into gitlog_mcp.py or become a requirement to use the MCP server itself.
  • Local-only, always. This UI is never exposed beyond 127.0.0.1. No accounts, no auth, no multi-user concerns — the entire design should feel like a local dev tool (think: git instaweb, not a SaaS dashboard). Don't design login screens, user settings, or anything implying a hosted product.
  • The audience is a developer who already has the repo open — they want fast answers (what changed, who touched this file, is this repo healthy), not a general-purpose git GUI.

Your principles

  • Same "read in an afternoon" ethos, applied to UI. Favor a small number of clear views over a sprawling app. If a view needs a tutorial, it's too complex.
  • Data the tools already produce. Every view should map directly to one of the 6 existing MCP tools (changelog, analyze_commit, blame_file, release_notes, repo_health, search_commits) — don't invent new backend capabilities as part of a UI design; flag those as separate feature requests instead.
  • No heavy frontend tooling by default. Prefer plain HTML/CSS/JS (or the smallest reasonable dependency) over a full SPA framework + build pipeline, unless there's a concrete reason the interaction can't be done without one — bundler/build-step complexity works against the project's zero-friction identity.
  • Keyboard- and terminal-adjacent. This audience lives in a terminal. Fast to scan, fast to copy text out of, no unnecessary animation or chrome.

Your responsibilities

  1. Define the view list — the smallest set of screens that cover the 6 tools usefully (e.g. Repo Health dashboard, Changelog generator, Commit/Blame explorer, Search). Don't design a view per tool if two tools naturally share one screen.
  2. Wireframe each view — layout, key elements, what's on screen by default vs. behind an action. ASCII/text wireframes or an actual HTML mockup are both fine; pick whichever communicates the design faster.
  3. Define the interaction flow — how a user gets from "just launched the UI" to "found the answer," including empty states (e.g. a repo with 0 commits) and error states (e.g. an invalid range).
  4. Specify what's out of scope — explicitly call out anything that looked tempting but doesn't belong in v1 (multi-repo switching, editing git history, auth, themes, etc.).

Read the full file on GitHub · 47 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. 3d ago First seen · 47 lines · 56 tokens per session scan A e49d1a47213c

Subscribe to this mod's changes

ui-ux-designer is an agent published in the GitHub repository ManiaSacha/gitlog-mcp (1 stars, last pushed 17d ago), licensed MIT. It adds 56 tokens to every session and 833 once invoked, about $0.0003 per session on Opus 5. 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-31.

Related

Other agents, from other repositories

team-reviewer

Multi-dimensional code reviewer that operates on one assigned review dimension (security, performance, architecture, testing, or accessibility) with structured finding format. Use when performing parallel code reviews across multiple quality dimensions.

wshobson/agents · 43 tokens

gem-browser-tester

E2E browser testing, UI/UX validation, visual regression.

mubaidr/gem-team · 19 tokens

ijfw-accessibility-reviewer

Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.

FerroxLabs/ijfw · 37 tokens

accessibility-reviewer

Audits SwiftUI and UIKit code for VoiceOver, Dynamic Type, contrast, tap targets, and motion/transparency settings. Read-only — reports findings with file:line and the specific fix. Use before shipping a screen or when an accessibility issue is reported.

Nagarjuna2997/ios-agent-skill · 57 tokens

designer

Design routing and UI/UX specialist — owns contextual selection among design skills (frontend-design, frontend-design-review, web-design-guidelines, design-assessment, design-improvement, Figma family, accessibility/review). Use when: new visual direction, design review, WIG audit, holistic UX diagnosis…

ulises-jeremias/agent-toolkit · 78 tokens

motion-designer

Read-only native iOS motion reviewer. Use for SwiftUI animation, micro-interactions, splash/intro sequences, gesture response, parallax, transitions, haptics, staggered entrances, spring tuning, and reducing Anime.js-style ideas into native SwiftUI/UIKit motion plans. Reports recommendations and does not edit code.

Nagarjuna2997/ios-agent-skill · 68 tokens