generate-behavior-questions

generate-behavior-questions is a skill for Claude Code from bitovi/cascade-mcp. It costs 62 tokens per session (2,185 once invoked), scanned B, original, MIT.

A review assistant that compares a Jira work item with linked Figma designs and supporting documents to find unclear interface behavior.

In plain words
What is it for?
Use it to prepare feature reviews and create questions organized by each Figma screen or frame.
Why use it?
It exposes missing, conflicting, or ambiguous decisions before implementation begins, so the team can clarify them early.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; names the AskUserQuestion tool; mentions Claude Code.

Part of the cascade-mcp plugin — 13 skills shipped together

Good fit Use it to prepare feature reviews and create questions organized by each Figma screen or frame.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bitovi/cascade-mcp/generate-behavior-questions
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.

Any agent
npx skills add bitovi/cascade-mcp --skill generate-behavior-questions
Clone the repo
git clone --depth 1 https://github.com/bitovi/cascade-mcp

Made for: Claude Code.

Or install cascade-mcp, the plugin that ships this one along with the rest of its 13 skills.

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 generate-behavior-questions

README.md
[![agentmods](https://agentmods.dev/badge/skills/bitovi/cascade-mcp/generate-behavior-questions/github.svg)](https://agentmods.dev/skills/bitovi/cascade-mcp/generate-behavior-questions)
Your own site
<a href="https://agentmods.dev/skills/bitovi/cascade-mcp/generate-behavior-questions"><img src="https://agentmods.dev/badge/skills/bitovi/cascade-mcp/generate-behavior-questions/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for generate-behavior-questions

Your own site · 80×15
<a href="https://agentmods.dev/skills/bitovi/cascade-mcp/generate-behavior-questions"><img src="https://agentmods.dev/badge/skills/bitovi/cascade-mcp/generate-behavior-questions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,185 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00062 $0.02185
Opus 5 $0.00031 $0.01092
Sonnet 5 $0.00012 $0.00437
Haiku 4.5 $0.00006 $0.00218

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

Security

Grade B, and why

generate-behavior-questions scanned grade B with 2 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 9d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -sL "{downloadUrl}" -o /tmp/cascade-figma.zip && unzip -qo /tmp/cascade-figma.zip -d .temp/cascade/figma/ && rm /tmp/cascade-figma.zip

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL "{downloadUrl}" -o /tmp/cascade-figma.zip && unzip -qo /tmp/cascade-figma.zip -d .temp/cascade/figma/ && rm /tmp/cascade-figma.zip
plugins/cascade-mcp/skills/generate-behavior-questions/SKILL.md · 175 lines

How it starts

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

Generate Questions

Generate frame-specific clarifying questions for a feature by gathering all context (Jira, Confluence, Google Docs, Figma designs) and analyzing them comprehensively.

When to Use

Use when the user wants to:

  • Review a feature's designs and generate clarifying questions
  • Identify gaps, ambiguities, or contradictions in a feature spec
  • Prepare for a feature review by listing what needs clarification

Typical trigger: "Generate questions for PROJ-123" or "What questions do we have about this feature?"

Required Input

  • Jira issue key (e.g., PROJ-123) — the epic or story to analyze

Procedure

Phase 1: Fetch the Starting Issue

Call MCP tool extract-linked-resources with the Jira issue URL (e.g., https://myco.atlassian.net/browse/PROJ-123).

This returns the issue content as markdown with YAML frontmatter — save it directly to .temp/cascade/context/jira-PROJ-123.md.

The frontmatter contains discoveredLinks grouped by type (figma, confluence, jira, googleDocs) with relationship info (parent, blocks, etc.). Parse these to build your initial .temp/cascade/context/to-load.md.

If hasMoreComments: true, call again with commentsStartAt to get additional comment pages.

Phase 2: Iterative Content Loading

For each non-Figma URL in to-load.md (prioritize parent and blocks relationships first):

  1. Call extract-linked-resources with the URL
  2. Save the returned markdown to .temp/cascade/context/{type}-{identifier}.md
  3. Parse discoveredLinks from frontmatter — add any new URLs to to-load.md
  4. Repeat until no unloaded non-Figma URLs remain

Important: Figma URLs are collected but NOT loaded here — they go in the ## Figma section of to-load.md for Phase 3.

Phase 3: Figma Batch Load

For each Figma URL collected:

  1. Call MCP tool figma-batch-zip with the Figma file URL
    • This returns a downloadUrl for a zip file and a manifest
  2. Try to download and extract the zip:
    curl -sL "{downloadUrl}" -o /tmp/cascade-figma.zip && unzip -qo /tmp/cascade-figma.zip -d .temp/cascade/figma/ && rm /tmp/cascade-figma.zip
    
  3. If curl succeeds (exit code 0), the extracted data is at:
    .temp/cascade/figma/{fileKey}/
    ├── manifest.json              ← frame list with metadata
    ├── prompts/
    │   └── frame-analysis.md      ← analysis prompt for frames
    └── frames/
        ├── {nodeId}-{name}/
        │   ├── image.png           ← frame screenshot
        │   ├── structure.xml       ← semantic component tree
        │   └── context.md          ← annotations/connections
        └── ...
    
    → Proceed to Phase 4 (filesystem path).

Read the full file on GitHub · 175 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. 9d ago First seen · 175 lines · 62 tokens per session scan B f6ddc300614c

Subscribe to this mod's changes

generate-behavior-questions is a skill published in the GitHub repository bitovi/cascade-mcp (24 stars, last pushed 20d ago), licensed MIT. It adds 62 tokens to every session and 2,185 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). 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

huashu-keynote-black

OpenDesign's all-hands: the year in review, the three priorities, and what every team owns next quarter. Built as a decision-grade corporate strategy deck for whole company.

nexu-io/open-design · 43 tokens

kanban-board

A Kanban board is a visual task list with columns for stages such as To do, In progress, In review, and Done. It can show filters, labels, due dates, assignees, comments, and swimlanes that group cards.

nexu-io/html-anything · 26 tokens

acid-blue-business

A visual presentation style for modern business topics, using electric blue with black, white, and grey, directional layouts, and clear spacing. It is intended for business content rather than traditional data dashboards.

arcsin1/oh-my-ppt · 0 tokens

visual-dashboard

Start a browser-based dashboard that visualizes architecture, implementation plans, and project status. Persists artifacts in .bigpowers/dashboard/. Reads specs/state.yaml, release-plan.yaml, epics, and planning-status via HTTP API or opencode panel.

danielvm-git/bigpowers · 52 tokens

design-inventory

Use to run the Claude Design to ClosedLoop pipeline against the current web-ui. Stage A inventories a design export zip into schema-validated findings (typed design units - screens, regions like nav bars, standalone components like a chat dialog; UX and behavioral changes; Storybook component reuse mapping; token…

closedloop-ai/claude-plugins · 173 tokens

contribution-workflow

Create or document a contribution workflow for a design system — the multi-stage process for evaluating, accepting, and shepherding new contributions through to publication. Trigger when someone says: how should someone contribute, contribution process, adding a new component, contribution guidelines, what's the…

murphytrueman/design-system-ops · 99 tokens