Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

maintain-data-structures维护数据结构

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

220

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:maintain-data-structures(维护数据结构)
来源仓库:https://github.com/dudusoar/vrp-toolkit
仓库路径:skills/maintain-data-structures
安装命令:
npx skills add https://github.com/dudusoar/vrp-toolkit --skill maintain-data-structures
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dudusoar/vrp-toolkit --skill maintain-data-structures

简介

用于辅助数据整理、表格分析和指标计算。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合清洗字段、汇总数据或生成统计口径。
  • 使用时需确认数据来源、字段含义和时间范围。
  • 涉及敏感数据时应先确认脱敏边界和导出权限。
  • maintain-data-structures 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Data Structures Reference

Quick access to all data structure definitions in the VRP toolkit. This skill saves tokens by providing pre-documented structures instead of reading source code repeatedly.

Quick Navigation

Choose the appropriate reference based on what you're working with:

By Layer

- Instance, PDPTWInstance, Solution, Node, Constraint - When: Defining or working with problem instances

- Solver, ALNSSolver, Operators, SearchState, ALNSConfig - When: Implementing or understanding algorithms

- OSMnx graphs, GeoDataFrame, distance matrices, data generators - When: Loading data, working with OSMnx, benchmarks

- How routes, time windows, coordinates are actually represented in code - When: Understanding how to work with data structures in Python

By Common Questions

QuestionReferenceSection
"What attributes does Instance have?"problem_layer.mdInstance
"How are routes represented?"runtime_formats.mdRoute Representation
"What's in an OSMnx Graph?"data_layer.mdGraph (NetworkX)
"How do I configure ALNS?"algorithm_layer.mdALNSConfig
"What's the structure of a Node?"problem_layer.mdNode
"How are time windows stored?"runtime_formats.mdTime Window Representation
"How do destroy operators work?"algorithm_layer.mdDestroyOperator
"What's in a distance matrix?"runtime_formats.mdDistance Matrix
"How do I work with OSMnx nodes?"data_layer.mdGeoDataFrame
"What's a Solution object?"problem_layer.mdSolution

By Data Type

TypeReferenceDescription
Instanceproblem_layer.mdProblem definition
Solutionproblem_layer.mdSolution with routes
Nodeproblem_layer.mdLocation/customer
Routeruntime_formats.mdList[int] format
TimeWindowruntime_formats.mdTuple[float, float] format
ALNSConfigalgorithm_layer.mdAlgorithm configuration
Operatoralgorithm_layer.mdDestroy/repair/local search
nx.MultiDiGraphdata_layer.mdOSMnx network graph
np.ndarrayruntime_formats.mdDistance/time matrices
GeoDataFramedata_layer.mdOSMnx nodes/edges

When to Use This Skill

Trigger this skill when:

  1. Understanding structures: "What attributes does X have?"
  2. Working with data: "How do I access Y in Z?"
  3. Migrating code: Need to understand existing data structures
  4. Implementing features: Need to know structure interfaces
  5. Debugging: Need to understand what data looks like
  6. Avoiding repeated reads: Instead of reading source code files repeatedly

Reference Files Overview

problem_layer.md

Size: ~300 lines Contains:

  • Instance, PDPTWInstance classes
  • Solution class with methods
  • Node class with all attributes
  • Constraint types
  • Type aliases
  • Common usage patterns

Use when: Defining problems, creating instances, working with solutions

algorithm_layer.md

Size: ~350 lines Contains:

  • Solver interface
  • ALNSSolver and ALNSConfig
  • Destroy/Repair/LocalSearch operators
  • SearchState tracking
  • Operator statistics
  • ALNS main loop pattern

Use when: Implementing algorithms, understanding operators, configuring ALNS

data_layer.md

Size: ~300 lines Contains:

  • OSMnx Graph structure (NetworkX)
  • GeoDataFrame (nodes and edges)
  • Distance/time matrix creation
  • Data generators (OrderGenerator)
  • Benchmark formats (Solomon)
  • OSMnx → VRP conversions

Use when: Loading data, OSMnx integration, working with benchmarks

runtime_formats.md

Size: ~400 lines Contains:

  • Route as List[int] with examples
  • TimeWindow as Tuple[float, float]
  • Coordinates as tuples
  • Distance matrices as NumPy arrays
  • Pickup-delivery pairs as list of tuples
  • Configuration dictionaries
  • Common type conversions
  • Memory efficiency tips

Use when: Understanding practical code representations, writing/reading routes

Usage Examples

Example 1: Understanding a Route

Question: "I see route = [0, 5, 3, 7, 0] in the code. What does this mean?"

Action: Load runtime_formats.md → Route Representation

Answer:

  • Route is a list of node IDs
  • 0 = depot (start and end)
  • [5, 3, 7] = customers visited in order
  • This represents: Depot → Node 5 → Node 3 → Node 7 → Depot

Example 2: Creating an Instance

Question: "How do I create a PDPTW instance?"

Action: Load problem_layer.md → PDPTWInstance

Answer:

instance = PDPTWInstance(
    nodes=node_list,
    battery_capacity=100.0,
    max_route_time=480.0,
    vehicle_capacity=50.0
)

Example 3: Configuring ALNS

Question: "What parameters can I configure for ALNS?"

Action: Load algorithm_layer.md → ALNSConfig

Answer: See all parameters with defaults, explanations, and usage example.

Example 4: Working with OSMnx

Question: "What attributes does an OSMnx node have?"

Action: Load data_layer.md → Node Attributes

Answer: y (lat), x (lon), osmid, street_count, etc.

Benefits of This Skill

  1. Token Efficiency: Read structured docs once instead of code files repeatedly
  2. Quick Reference: Find information faster with organized structure
  3. Complete Coverage: All data structures in one place
  4. Practical Examples: Shows actual usage, not just definitions
  5. Cross-Referenced: Easy to navigate between related structures

Integration with Other Skills

This skill is referenced by:

  • migrate-module: Understanding structures when migrating code
  • osmnx-integration: OSMnx data structure details (when created)
  • add-algorithm: Algorithm layer structures for new implementations

When other skills need data structure information, they reference this skill instead of reading source code.

Maintenance

This reference should be updated when:

  • New data structures are added to the codebase
  • Existing structures change significantly
  • New attributes or methods are added to core classes

Keep this as the single source of truth for data structure documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

31.13%
按下载量换算22

windsurf

23.14%
按下载量换算16

trae

17.42%
按下载量换算12

OpenCode

11.34%
按下载量换算8

Codex

7.28%
按下载量换算5

github-copilot

3.68%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills