Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

map-project-monorepo地图项目 monorepo

Agent Skill

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

总安装

1,384

周安装

56

GitHub Stars

公开资料未说明

下载量

435
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill map-project-monorepo

简介

map-project-monorepo 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Map Project Monorepo

Inputs

  • $request: Optional scope or refresh note such as all crates, only packages/api-*, or refresh workspace docs after adding the sql crate.

Goal

Refresh the root and per-member CLAUDE.md files so each workspace member has accurate, self-contained local guidance and the root stays thin and project-wide.

Step 0: Resolve workspace scope and detect monorepo shape

Determine:

  • whether the repo is a Cargo workspace or a package monorepo
  • whether the user wants a full refresh or a scoped member refresh
  • which members exist and which already have CLAUDE.md files
  • which root-level memory files and architectural rules already exist and should be preserved

Load references/workspace-discovery.md for:

  • workspace detection order
  • member inventory expectations
  • discovery rules for exported surface, wiring, and dependency mapping

Stop early if:

  • the workspace shape cannot be identified
  • the target member set is too ambiguous to update safely

Success criteria: The workspace shape and refresh scope are explicit before discovery starts.

Step 1: Discover members, public surface, and wiring

For every in-scope member, inventory:

  • actual exported or reachable surface
  • key source files
  • wiring files such as crate roots, package entry points, manifests, barrels, startup hooks, registries, routers, or feature flags
  • inter-member dependencies
  • tests, benchmarks, or runtime entry points
  • real consumer usage patterns when available

Rules:

  • do not equate raw pub or raw export counts with the real public surface
  • verify what consumers can actually reach first
  • prefer actual imports, re-exports, and runtime registration points over guesses
  • preserve existing member docs when they are still correct; extend or tighten them instead of regenerating blindly

Load references/workspace-discovery.md and complete the relevant discovery steps for the detected monorepo shape.

Success criteria: You have enough concrete inventory to write self-contained member docs without placeholders or false surface claims.

Step 2: Refresh per-member CLAUDE.md files

For each in-scope member, update or create a focused local CLAUDE.md that covers:

  • purpose
  • public or exported surface
  • key files
  • dependencies
  • wiring and entry points
  • usage pattern
  • architecture notes
  • testing guidance

Load:

  • references/output-contract.md for required sections, size targets, and verification rules
  • references/package-template.md for library or package members
  • references/app-template.md for apps, binaries, or entrypoint-heavy members

Writing rules:

  • use real workspace examples, not placeholders
  • keep tables and bullets preferred over repetitive prose
  • make each member file self-contained for Claude's lazy-loading behavior
  • document hidden wiring points if a future change would need them to make behavior reachable

Success criteria: Every targeted member has an accurate, self-contained CLAUDE.md.

Step 3: Simplify the root CLAUDE.md

Treat the root file as the project-wide router:

  • keep project-wide rules, locked decisions, testing policy, and workspace layout
  • remove member-specific API tables or file listings from root
  • ensure the root points clearly to member-local docs rather than duplicating them

Rules:

  • preserve root-level architectural constraints and steering decisions
  • do not erase useful human-authored global rules
  • move member detail down instead of letting the root become a second copy of every member file

Load references/output-contract.md for the root-file expectations and budget rules.

Success criteria: Root stays thin and project-wide while member detail lives where Claude will lazy-load it.

Step 4: Verify coverage, self-containment, and budget

Validate the refresh before declaring completion:

  • every in-scope member has a CLAUDE.md
  • member docs describe the real reachable surface, not just raw visibility markers
  • wiring and entry points are documented where relevant
  • root no longer duplicates member-local details heavily
  • line budgets remain sane
  • the refreshed docs would let an implementation agent work in a touched member without searching blindly

Load references/output-contract.md for verification gates and budget targets.

If verification fails:

  • improve coverage
  • restore missing sections
  • tighten duplicated content
  • correct stale reachability or wiring claims

Success criteria: The workspace memory is compact, member-local, and actually useful to future agents.

Step 5: Report what changed

Summarize:

  • detected workspace shape
  • members refreshed
  • files created or updated
  • coverage or inventory highlights
  • budget status
  • intentionally deferred or out-of-scope members

Do not claim a perfect refresh if the workspace is only partially covered or if the requested scope excluded some members.

Success criteria: The user gets a clear summary of what workspace memory was refreshed and how complete it is.

Guardrails

  • Do not use this skill proactively; it is explicit-user-only because it mutates durable project memory.
  • Do not add context: fork; this workflow writes into the active repository.
  • Do not add paths:; this is a generic maintenance skill.
  • Do not overwrite useful root-level project rules without evidence they are stale.
  • Do not keep workspace discovery matrices, template encyclopedias, or quality scorecards inline in SKILL.md.
  • Do not bloat the root CLAUDE.md; push member detail down.
  • Do not mark the refresh complete without verifying self-containment and reachability.

When To Load References

  • references/workspace-discovery.md Use for workspace detection order, member discovery rules, and exported-surface versus raw-visibility guidance.
  • references/output-contract.md Use for required member/root sections, budget rules, and verification gates.
  • references/package-template.md Use when refreshing library-style members.
  • references/app-template.md Use when refreshing binaries, apps, servers, or entrypoint-heavy members.

Output Contract

Report:

  1. detected workspace shape and scope
  2. members refreshed
  3. files created or updated
  4. coverage and self-containment summary
  5. budget and verification result
  6. deferred or intentionally skipped members

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.79%
按下载量换算160

Claude

30.16%
按下载量换算131

Cursor

19.92%
按下载量换算87

Gemini CLI

10.06%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills