Search: "visualization"
Showing 21 of 21 results
mesh flow
What it does Mesh Flow replaces fragile, implicit prompt-chaining with a robust, artifact-driven DAG (Directed Acyclic Graph) orchestration system. By defining your agent workflows in a structured project.yaml, you move logic out of the prompt and into a compile-time validated system. It enforces hard gates—such as human approval or dependency verification—that the AI cannot bypass or hallucinate past. Why use this skill Standard agentic workflows often fail because the LLM decides to skip steps or "forgets" requirements. Mesh Flow treats your agentic workflow like a CI/CD pipeline. It features a Compile-then-Run architecture that validates your topology for cycles and missing artifacts before single token is generated. This ensures 100% predictable execution paths, explicit failure states (failed, blocked, rejected), and absolute control over recovery paths. Supported tools YAML-based workflow configurations Standardized Adapter Interfaces for cross-skill communication Mermaid DAG visualization for debugging Zod-backed schema validation CLI tools for compilation and execution (mesh compile, mesh run) Output structure The skill produces a normalized execution plan and a detailed execution trace. Every node execution returns a standardized status, a list of produced artifacts, and comprehensive metadata including tool calls and verification reasoning. Use Cases Build multi-step agent pipelines with hard verification gates Enforce human-in-the-loop approval before sensitive code deployments Visualize complex agent task dependencies using Mermaid DAGs Standardize artifact sharing between disparate AI skills and agents
Mapbox Data Visualization Patterns
Patterns for visualizing data on maps including choropleth maps, heat maps, 3D visualizations, data-driven styling, and animated data. Covers layer types, co...
Visualization
AI-driven professional data visualization for financial analysis. Create stock charts, portfolio dashboards, and industry comparisons via natural language.
Lightweight charting skill: powerful styling & direct PNG export
Default skill for structured-data visualization, chart generation, and dashboard-style reporting. Use when the user asks to create charts, graphs, plots, das...
Data Visualization
Data visualization with chart selection, color theory, and annotation best practices. Covers chart types (bar, line, scatter, heatmap), axes rules, and story...
System Data Intelligence — File · Analysis · Visualization
专为文件操作、数据分析、可视化、数据库连接、API 接入和敏感数据处理设计的系统级 Agent Skill。 【强制触发场景】: - 用户提及任何文件操作:Excel / WPS / Word / TXT / Markdown / RTZ / CSV / JSON - 「分析」「读取」「提取」「处理」「建模」「预...
Data Visualization Studio
Create interactive and static data visualizations from datasets. Supports charts, graphs, dashboards, and statistical plots with multiple output formats (PNG...
Chief Data & Insight Officer
首席数据智能官 — 多维数据分析与可视化洞察。当用户提供任何形式的业务数据(截图、表格、文本、聊天记录、碎片化信息)并希望获得深度数据分析、业务诊断、象限定位、ROI归因、决策建议时触发。
Scientific Visualization
Meta-skill for publication-ready figures. Use when creating journal submission figures requiring multi-panel layouts, significance annotations, error bars, c...
Intelligent Data Analysis Assistant
LLM-powered intelligent data analysis assistant supporting natural language queries, SQL generation, visualization, and multi-turn conversation. Suitable for...
D3.js — A JavaScript library for data visualization.
D3.js (Data-Driven Documents) — A JavaScript library for data visualization. Covers installation, selections, data binding, scales, shapes, transitions, 30+...
It is designed for scenarios that require direct operating system application and in-depth data analysis. [Forced trigger scenario]: - User mentions reading/writing/manipulating Excel, WPS, Word, TXT, Markdown, RTZ, etc. - User wants to "grab", "extract", and "get" data from any application - User needs to perform "in-depth analysis", "trend research", "anomaly detection", and "prediction" on the data - User requests to generate "charts", "visualizations", "dashboards", "data reports" - users say, "Help me see in this document..." Analyze this data...", "Make a chart presentation..." - Any task involving cross-application data flow [Core Competencies]: System interface calls × Data in-depth analysis × Professional visualization IMPORTANT: As long as it involves any of the file operations, data analysis, and visualization, this skill must be used. Don't skip tasks just because they "look simple" - there are many pitfalls in the underlying interface calls, and there are pitfall avoidance guides in the skills.
专为需要直接操作系统应用并进行深度数据分析的场景设计。 【强制触发场景】: - 用户提及 Excel、WPS、Word、TXT、Markdown、RTZ 等文件的读取/写入/操控 - 用户想从任何应用中「抓取」「提取」「获取」数据 - 用户需要对数据进行「深度分析」「趋势研究」「异常检测」「预测」 - 用户要求生...
d3-visualization
Build deterministic, verifiable data visualizations with D3.js (v6). Generate standalone HTML/SVG (and optional PNG) from local data files without external n...
chart-visualization
请根据用户输入的内容,将数据可视化为图表。 ## 步骤 1. 分析用户数据和需求,选择最合适的图表类型 2. 构造符合规范的 JSON 请求体 3. 使用 curl 工具调用 API 生成图表图片 4. 将返回的图片 URL 以 Markdown 图片格式输出 ## 图表选择指南 根据用户的数据特征和需求,选择最合适的图表类型: - **时间序列**:用 `line`(趋势)或 `area`(累计趋势);两个不同量纲用 `dual-axes` - **比较类**:用 `bar`(横向分类对比)或 `column`(纵向分类对比);频率分布用 `histogram` - **占比类**:用 `pie`(比例构成)或 `treemap`(层级占比) - **关系与流程**:用 `scatter`(相关性)、`sankey`(流向)或 `venn`(集合重叠) - **层级与树形**:用 `organization-chart` 或 `mind-map` - **专用类型**: - `radar`:多维度对比 - `funnel`:流程阶段转化 - `liquid`:百分比/进度 - `word-cloud`:文本
data-visualization
# Data Visualization Skill Chart selection guidance, Python visualization code patterns, design principles, and accessibility considerations for creating effective data visualizations. ## Chart Selection Guide ### Choose by Data Relationship | What You're Showing | Best Chart | Alternatives | |---|---|---| | **Trend over time** | Line chart | Area chart (if showing cumulative or composition) | | **Comparison across categories** | Vertical bar chart | Horizontal bar (many categories), lollipop chart | | **Ra
interior-design-visualization
# Interior Design Visualization Transform and visualize interior spaces using each::sense. This skill takes photos of existing rooms and generates redesigned versions with different styles, furniture, colors, and layouts. ## Features - **Room Redesign**: Transform existing rooms into completely new designs - **Style Transformation**: Apply modern, minimalist, bohemian, industrial, and other styles - **Furniture Visualization**: See how new furniture would look in your space - **Color Scheme Changes**: Previ
antv-g2-chart
# G2 v5 Chart Visualization ## Overview G2 v5 is AntV's grammar-of-graphics charting library. It uses **Spec Mode** — a declarative, JSON-like configuration style where `chart.options()` defines the entire visualization in one call. ```javascript import { Chart } from '@antv/g2'; const chart = new Chart({ container: 'container', autoFit: true }); chart.options({ type: 'interval', data: [{ genre: 'Sports', sold: 275 }], encode: { x: 'genre', y: 'sold' }, }); chart.render(); ``` ### CDN Usage ```html <script
antv-skills-maintainer
# AntV Skills Maintainer This skill ensures that all documentation and configuration files remain in sync whenever a skill is added or updated in this repository. ## Important The `antv-skills-maintainer` skill is **internal-only** — it is used solely for this repository's iteration workflow. Do **not** add it to `README.md` "Available Skills" or `.claude-plugin/marketplace.json`. Only user-facing skills should appear in those files. ## When to Apply Apply this skill automatically after **every code change*
icon-retrieval
# Icon Search Use the icon HTTP API directly with `curl`. ## API ### Search Endpoint - **Method**: `GET` - **URL**: `https://lab.weavefox.cn/api/v1/infographic/icon` - **Query params**: - `text` (required): search keyword, e.g. `"data analysis"` - `topK` (optional): number of icons to fetch (1-20), default `5` Example: ```bash curl -sS -L --max-time 20 "https://lab.weavefox.cn/api/v1/infographic/icon?text=document&topK=5" ``` Typical response: ```json { "success": true, "data": [ "https://example.com/icon1.
narrative-text-visualization
# Narrative Text Visualization Skill This skill provides a workflow for transforming data into structured narrative text visualizations using **T8 Syntax** - a declarative Markdown-like language for creating data narratives with semantic entity annotations. ## What is T8 T8 is a text visualization solution under the AntV technology stack designed specifically for insight-based narrative text display. Instead of manually constructing DOM elements, you write simple, human-readable syntax that describes your d
infographic-creator
Infographics convert data, information, and knowledge into perceptible visual language. They combine visual design with data visualization, compressing complex information with intuitive symbols to help audiences quickly understand and remember key points. `Infographic = Information Structure + Visual Expression` This task uses [AntV Infographic](https://infographic.antv.vision/) to create visual infographics. Before starting the task, you need to understand the AntV Infographic syntax specifications, inclu