Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计通过

concept-cartographer概念制图师

Agent Skill

concept-cartographer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:concept-cartographer(概念制图师)
来源仓库:https://github.com/prakharmnnit/skills-and-personas
仓库路径:skills/concept-cartographer
安装命令:
npx skills add https://github.com/prakharmnnit/skills-and-personas --skill concept-cartographer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/prakharmnnit/skills-and-personas --skill concept-cartographer

简介

concept-cartographer 将文本知识转化为可视化图谱,揭示概念间层级与流程关系。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中整理复杂主题的结构化表达。
  • 自动生成 Mermaid 语法图表,支持概念树、时序图与矩阵等多种视图形式。
  • 安装前请确认是否生成公开分享图表、引用他人笔记或用于教学材料编制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Concept Cartographer - Visual Knowledge Mapper

Generate visual diagrams from structured notes and technical content using Mermaid syntax.

Core Purpose

Transform text-based knowledge into visual maps that reveal structure, relationships, and flow. Produce multiple diagram types tuned to different learning needs -- from high-level concept hierarchies to detailed process flows.

Diagram Types

For each set of notes, generate the most relevant subset of these diagram types:

1. Concept Hierarchy Map

Shows how topics relate parent-child.

graph TD
    A[Neural Networks] --> B[Architecture]
    A --> C[Training]
    A --> D[Activation Functions]
    B --> B1[Input Layer]
    B --> B2[Hidden Layers]
    B --> B3[Output Layer]
    C --> C1[Forward Pass]
    C --> C2[Loss Calculation]
    C --> C3[Backpropagation]
    C --> C4[Weight Update]
    D --> D1[Sigmoid]
    D --> D2[ReLU]

Use when: Content has clear topic hierarchy (most lectures).

2. Process Flowchart

Shows step-by-step procedures and decision points.

flowchart LR
    A[Input Data] --> B[Forward Pass]
    B --> C[Calculate Loss]
    C --> D{Loss acceptable?}
    D -->|No| E[Backpropagation]
    E --> F[Update Weights]
    F --> B
    D -->|Yes| G[Model Ready]

Use when: Content describes processes, algorithms, or workflows.

3. Architecture Diagram

Shows system components and data flow.

graph LR
    subgraph Input Layer
        I1[x1] & I2[x2]
    end
    subgraph Hidden Layer
        H1[h1] & H2[h2] & H3[h3]
    end
    subgraph Output
        O1[y]
    end
    I1 & I2 --> H1 & H2 & H3
    H1 & H2 & H3 --> O1

Use when: Content describes architectures, systems, or component relationships.

4. Comparison Diagram

Shows differences between concepts side by side.

graph TD
    A[Activation Functions] --> B[Sigmoid]
    A --> C[ReLU]
    B --> B1["Range: 0 to 1"]
    B --> B2["Use: Output layer"]
    B --> B3["Problem: Vanishing gradient"]
    C --> C1["Range: 0 to infinity"]
    C --> C2["Use: Hidden layers"]
    C --> C3["Problem: Dead neurons"]

Use when: Content compares alternatives, trade-offs, or choices.

5. Timeline / Sequence Diagram

Shows order of events or data flow over time.

sequenceDiagram
    participant D as Data
    participant N as Network
    participant L as Loss Function
    participant O as Optimizer
    D->>N: Forward pass
    N->>L: Predictions
    L->>L: Calculate error
    L->>N: Gradients (backprop)
    N->>O: Current weights + gradients
    O->>N: Updated weights

Use when: Content describes interactions, API flows, or sequential processes.

6. State Diagram

Shows states and transitions.

stateDiagram-v2
    [*] --> Untrained
    Untrained --> Training: Start training
    Training --> Evaluating: Each epoch
    Evaluating --> Training: Loss too high
    Evaluating --> Trained: Loss acceptable
    Trained --> Deployed: Deploy
    Deployed --> Training: Retrain

Use when: Content describes lifecycle, states, or mode changes.

Domain-Specific Focus

DomainPriority DiagramsSpecial Elements
AI/MLArchitecture, process flow, comparisonLayer structures, training loops, model pipelines
WebDevArchitecture, sequence, flowchartRequest/response flows, component trees, state management
Web3Sequence, architecture, stateTransaction flows, smart contract interactions, token flows
DSAFlowchart, state, comparisonAlgorithm steps, tree/graph structures, complexity comparisons

Output Format

For each set of notes, produce a markdown document with:

# Visual Concept Maps: [Topic]

## Overview Map
[Concept hierarchy - always include this one]

## [Diagram Type 2 title]
[Most relevant additional diagram]

## [Diagram Type 3 title]
[Second most relevant]

## Key Relationships Summary
- [Concept A] depends on [Concept B] because...
- [Concept C] is an alternative to [Concept D] when...
- [Process X] feeds into [Process Y] via...

Rules

  1. Every diagram must be valid Mermaid syntax - test mentally before output
  2. Always include concept hierarchy - this is the minimum output
  3. Pick 2-4 diagram types per set of notes based on content
  4. Label nodes clearly - use short but descriptive text
  5. Don't overcrowd - split large diagrams into focused sub-diagrams (max ~15 nodes per diagram)
  6. Use subgraphs for grouping related concepts
  7. Add a text summary of key relationships below diagrams
  8. Match the domain - use domain-appropriate terminology and diagram choices

Topic Inventory Verification

If a Topic Inventory was provided from Stage 1, verify that every concept from the inventory appears in at least one diagram. Report:

## Concept Coverage
- Concepts in diagrams: [N] / [N] from inventory
- Concepts not diagrammed: [list] (with reason: "too granular" or "no visual relationship")

Enhanced Diagram Types (Best-in-Class)

7. Learning Path / Prerequisite Map

Shows what to learn in what order.

graph LR
    A[Linear Algebra] --> B[Neural Network Basics]
    A --> C[Gradient Descent]
    B --> D[Backpropagation]
    C --> D
    D --> E[Training Loop]
    E --> F[PyTorch Implementation]

Use when: Content has concepts that build on each other. Always generate this for educational content.

8. Difficulty Landscape

Visual guide to concept difficulty and importance.

quadrantChart
    title Concept Difficulty vs Importance
    x-axis Low Difficulty --> High Difficulty
    y-axis Low Importance --> High Importance
    Neuron anatomy: [0.3, 0.7]
    Backpropagation: [0.8, 0.9]
    Activation functions: [0.5, 0.8]
    Learning rate tuning: [0.6, 0.7]

Use when: Content has concepts of varying difficulty -- helps prioritize study time.

9. Before/After Mental Model

Shows how understanding should shift.

graph LR
    subgraph Before
        B1["Neural network = black box"]
        B2["Training = magic"]
    end
    subgraph After
        A1["Neural network = layers of math functions"]
        A2["Training = iterative error minimization"]
    end
    B1 -.->|"this lecture"| A1
    B2 -.->|"this lecture"| A2

Use when: Lecture fundamentally changes how a concept should be understood.

Pipeline Position

This skill is Stage 3 in the lecture processing pipeline:

  1. transcribe-refiner → clean transcript + Topic Inventory
  2. lecture-alchemist → structured study notes
  3. concept-cartographer (this) → visual diagrams (verifies against inventory)
  4. obsidian-markdown → Obsidian vault formatting

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.33%
按下载量换算36

Claude

31.29%
按下载量换算30

Cursor

20.04%
按下载量换算19

Gemini CLI

9.2%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills