Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

update-workspace-map更新工作区地图

Agent Skill

update-workspace-map 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

272

周安装

11

GitHub Stars

2

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:update-workspace-map(更新工作区地图)
来源仓库:https://github.com/abdullahbeam/nexus-design-abdullah
仓库路径:skills/update-workspace-map
安装命令:
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill update-workspace-map
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill update-workspace-map

简介

用于查找、检索和筛选相关信息。update-workspace-map 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 注意该技能当前分类为研究检索,功能聚焦信息组织。

SKILL.md

Validate Workspace Map

Ensure workspace-map.md stays synchronized with actual 04-workspace/ folder structure up to 3 levels deep.

Purpose

The workspace-map.md file helps AI understand your custom folder organization in 04-workspace/. When it becomes stale (folders added/removed/reorganized but not documented), AI navigation becomes unreliable.

This skill:

  • Scans workspace structure 3 levels deep (root → level 1 → level 2 → level 3)
  • Compares actual folders with documented folders at all levels
  • Identifies mismatches (missing or extra folders, incorrect nesting)
  • Provides detailed structure report with depth indicators
  • Guides you through comprehensive updates
  • Validates accuracy after changes

Improvements over v1:

  • 3-layer deep scanning (vs 1 layer)
  • Hierarchical validation (parent-child relationships)
  • File detection (warns about files that should be documented)
  • Depth indicators in reports (├──, │ ├──, │ │ ├──)
  • Comprehensive documentation prompts for nested structures

When to use:

  • You reorganized 04-workspace/ folders
  • You notice AI can't find your folders
  • During onboarding (Project 03, Task 5.6)
  • As part of regular maintenance (via close-session)

Workflow

Step 1: Scan Actual Workspace Structure (3 Levels Deep)

Scan workspace recursively (up to 3 levels):

find 04-workspace -maxdepth 3 -type d | sort

Parse into hierarchical structure:

04-workspace/
├── input/
│   ├── skills/
│   │   ├── examples/
│   │   └── templates/
│   └── docs/
├── clients/
│   ├── acme/
│   │   ├── deliverables/
│   │   └── notes/
│   └── globex/
└── templates/

Also scan for important files (for documentation warnings):

find 04-workspace -maxdepth 3 -type f -name "*.md" -o -name "README*" | sort

Store:

  • ACTUAL_STRUCTURE (tree with 3 levels)
  • IMPORTANT_FILES (markdown/README files)

Exclude:

  • Hidden folders (.,..,.git,.DS_Store)
  • workspace-map.md itself
  • System folders

Time: 10 seconds


Step 2: Parse workspace-map.md (3 Levels Deep)

Read: 04-workspace/workspace-map.md

Extract documented structure:

  1. From tree structure (in "Your Workspace Structure" section):

- Parse lines with ├──, │ ├──, │ │ ├── (depth indicators) - Build hierarchical tree from indentation - Capture folder descriptions (inline comments with #)

  1. From folder descriptions (in "Folder Descriptions" section):

- Parse ### headers (level 1 folders) - Parse #### headers (level 2 folders) - Parse ##### headers (level 3 folders) - Extract purpose, contents, and notes

  1. Cross-reference both sections for completeness

Store:

  • MAPPED_STRUCTURE (tree with 3 levels)
  • MAPPED_DESCRIPTIONS (folder purposes and details)

Time: 10 seconds


Step 3: Deep Comparison (Hierarchical)

Compare at each level:

Level 1 (04-workspace/ direct children):

  • Missing from map
  • Extra in map (stale)
  • Matches

Level 2 (within each level 1 folder):

  • For each level 1 folder, compare children
  • Track parent-child relationships
  • Identify orphaned level 2 folders (parent missing)

Level 3 (within each level 2 folder):

  • For each level 2 folder, compare children
  • Validate full path accuracy
  • Identify deeply nested mismatches

Identify:

  • Missing folders (at each level)
  • Extra folders (stale documentation at each level)
  • Hierarchy issues (documented under wrong parent)
  • Undocumented files (important.md files with no description)
  • Perfect match (all levels accurate)

Time: 5 seconds


Step 4: Generate Comprehensive Report

Show detailed validation results at all 3 levels with clear depth indicators and actionable feedback.


Total Time Estimates

Scenarios:

  • Perfect match (3 levels): ~20 seconds
  • Minor updates (1-2 folders): 2-3 minutes
  • Major reorganization (5+ folders): 5-7 minutes
  • Deep restructure (many level 2-3 changes): 8-10 minutes

Integration

close-session Integration

This skill is automatically triggered during close-session. If mismatches found, prompts user to update.


Remember: Deep 3-level validation = Comprehensive AI navigation!

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.41%
按下载量换算25

Antigravity

23.76%
按下载量换算20

windsurf

16.3%
按下载量换算14

Codex

11.85%
按下载量换算10

OpenCode

7.8%
按下载量换算7

Gemini CLI

3.86%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills