api-enhancement

api-enhancement is a cursor rule for Cursor from madebyaris/rakitui-ai. It costs 0 tokens per session (569 once invoked), scanned A, original, MIT.

A guide for extending an MCP tool API, including richer responses and additional configuration options. MCP is a standard way for an AI assistant to call external tools.

In plain words
What is it for?
Use it when planning or implementing new response data and configuration settings in the design-selection MCP tool.
Why use it?
It gives a concrete shape for adding fields such as selection details, timing, analytics, timeouts, and display options to the design-selection tool.

Cursor rule for 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 rules/madebyaris/rakitui-ai/api-enhancement
Clone the repo
git clone --depth 1 https://github.com/madebyaris/rakitui-ai

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 api-enhancement

README.md
[![agentmods](https://agentmods.dev/badge/rules/madebyaris/rakitui-ai/api-enhancement.svg)](https://agentmods.dev/rules/madebyaris/rakitui-ai/api-enhancement)
Your own site
<a href="https://agentmods.dev/rules/madebyaris/rakitui-ai/api-enhancement"><img src="https://agentmods.dev/badge/rules/madebyaris/rakitui-ai/api-enhancement.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 569 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.00000 $0.00569
Opus 5 $0.00000 $0.00284
Sonnet 5 $0.00000 $0.00114
Haiku 4.5 $0.00000 $0.00057

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

Security

Grade A, and why

api-enhancement 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 5d 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/rules/api-enhancement.mdc · 99 lines

How it starts

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

API Enhancement Guide

Guidelines for enhancing the MCP tool API and adding new features.

Enhanced Response Format

The tool in src/tools/DesignselectionTool.ts should return richer data:

interface EnhancedResponse {
  // Current fields
  message: string;
  url: string;
  design_options: Array<{name: string, description: string}>;
  selectedDesign: string | null;
  
  // New fields
  selectedDesignHtml: string;
  selectionTimestamp: string;
  selectionDuration: number;
  sessionId: string;
  analytics: {
    timeToFirstInteraction: number;
    hoverCounts: Record<string, number>;
    viewOrder: string[];
  };
}

Configuration Schema Enhancement

Add new optional parameters to the tool schema:

schema = {
  // Existing parameters...
  
  // New configuration options
  timeout_minutes: {
    type: z.number().optional().default(15),
    description: "Timeout duration in minutes"
  },
  auto_close: {
    type: z.boolean().optional().default(true),
    description: "Auto-close browser after selection"
  },
  show_code: {
    type: z.boolean().optional().default(false),
    description: "Show HTML code alongside preview"
  },
  allow_multiple: {
    type: z.boolean().optional().default(false),
    description: "Allow multiple design selections"
  },
  theme: {
    type: z.enum(['light', 'dark', 'auto']).optional().default('light'),
    description: "UI theme for selection interface"
  },
  export_format: {
    type: z.enum(['html', 'react', 'vue', 'angular']).optional(),
    description: "Export selected design in specific format"
  }
}

Callback/Webhook Support

Add event callbacks for integrations:

callbacks?: {
  onSelectionStart?: (sessionId: string) => void;
  onDesignHover?: (designName: string) => void;
  onSelectionComplete?: (selection: EnhancedResponse) => void;
  onTimeout?: (sessionId: string) => void;
  onError?: (error: Error) => void;
}

Export Functionality

Read the full file on GitHub · 99 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. 5d ago First seen · 99 lines · 0 tokens per session scan A 8eca192284df

Subscribe to this mod's changes

api-enhancement is a cursor rule published in the GitHub repository madebyaris/rakitui-ai (5 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 569 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-31.