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

project-index项目索引

Agent Skill

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

总安装

1,176

周安装

49

GitHub Stars

5

下载量

392
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adeonir/agent-skills --skill project-index

简介

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

  • 适用于项目信息索引、知识库构建和资料归档等研究检索类任务场景。
  • 通过关键词输入和来源仓库路径,Agent 可自动提取并整理相关项目信息。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 需结合原始 README 进一步核验具体功能和使用限制,确保符合实际部署环境。

SKILL.md

Project Index

Recommended effort: xhigh for initialize and summary; medium for overview and integrate-feedback.

Generate project context and codebase documentation for AI agents. Use ultrathink for initialize and summary phases.

Workflow

initialize --> overview + summary

Each command can be used independently or chained via initialize.

Context Loading Strategy

Load only the reference matching the current trigger. Never load multiple references simultaneously.

Triggers

Trigger PatternReference
Initialize project, setup project, index projectinitialize.md/project-index/references/initialize.md)
Overview, project contextoverview.md/project-index/references/overview.md)
Summary, map codebase, analyze codebasesummary.md/project-index/references/summary.md)
Integrate feedback, integrate discoveries, sync knowledgeintegrate-feedback.md/project-index/references/integrate-feedback.md)

Cross-References

initialize.md ----> overview.md
initialize.md ----> summary.md (if brownfield)
overview.md ------> root-agents.md (auto-update AGENTS.md)
summary.md -------> root-agents.md (auto-update AGENTS.md)
spec-driven ---------------> integrate-feedback.md (consumes knowledge.md Codebase Feedback)
integrate-feedback.md -----> knowledge.md (clears integrated rows only)

Output Structure

.agents/
├── project.md              # Project context, purpose, scope
└── codebase/               # Deep codebase analysis
    ├── stack.md            # Framework, runtime, all dependencies with purpose
    ├── architecture.md     # Mermaid diagrams, component map, layers, data flows, interfaces
    ├── conventions.md      # Observed patterns with code snippets, abstractions, custom hooks
    ├── testing.md          # Patterns from actual tests, mocking, fixtures, coverage gaps
    ├── integrations.md     # External services, env vars, config details
    ├── commands.md         # All available scripts with descriptions
    ├── checklist.md        # Validation steps after completing a task
    ├── workflows.md        # Mermaid flowcharts for user and dev workflows
    ├── review-notes.md     # Self-assessment: consistency, completeness, gaps
    └── concerns.md         # Optional: tech debt, risks (only when detected)

AGENTS.md                   # Concise entry point pointing to .agents/codebase/ (skipped when CLAUDE.md is present)

Claude harness (root CLAUDE.md present): AGENTS.md is never created or updated. project-index maintains a single delimited section inside CLAUDE.md (<!-- project-index:start -->... <!-- project-index:end -->) and leaves the rest of the file untouched. Edits happen in place -- the file is never overwritten.

Templates

DocumentTemplate
Project overviewproject.md/project-index/templates/project.md)
Stackstack.md/project-index/templates/stack.md)
Architecturearchitecture.md/project-index/templates/architecture.md)
Conventionsconventions.md/project-index/templates/conventions.md)
Testingtesting.md/project-index/templates/testing.md)
Integrationsintegrations.md/project-index/templates/integrations.md)
Commandscommands.md/project-index/templates/commands.md)
Checklistchecklist.md/project-index/templates/checklist.md)
Workflowsworkflows.md/project-index/templates/workflows.md)
Review Notesreview-notes.md/project-index/templates/review-notes.md)
Concernsconcerns.md/project-index/templates/concerns.md)

Output Size Guidelines

These docs are loaded on-demand (research, implementation), not always in context. Be thorough -- document patterns with real code examples and file references. Avoid redundancy across files, but do not sacrifice depth for brevity.

DocumentGuideline
project.mdConcise overview (~30 lines)
stack.mdAll meaningful dependencies with purpose
architecture.mdStructure, patterns, data flows with code examples
conventions.mdEvery observed pattern with code snippets and file references
testing.mdPatterns with example test structure from actual tests
integrations.mdAll external touchpoints with config details
commands.mdAll available commands with descriptions
checklist.mdConcise validation steps (~15 lines)
workflows.mdCore flows with step-by-step detail
concerns.mdOnly real issues with evidence
AGENTS.mdConcise entry point (~60 lines) pointing to.agents/codebase/

Integration with Other Skills

docs-writer (.artifacts/docs/) --> project-index (overview) consumes as context source
spec-driven (design/implement) --> queues codebase discoveries to .agents/knowledge.md Codebase Feedback
integrate-feedback             --> merges knowledge.md Codebase Feedback into .agents/codebase/*.md
project-index (summary)        --> preserves knowledge.md as-is when re-running
project-index                  --> sole writer to .agents/codebase/*.md and .agents/project.md
  • docs-writer: Overview checks .artifacts/docs/ for existing briefs, PRDs, design docs, epics, and issues. When found, uses them as primary context for generating project.md.
  • spec-driven: queues codebase discoveries to .agents/knowledge.md ## Codebase Feedback; integrate-feedback merges them into codebase/*.md on demand. spec-driven never writes directly to .agents/codebase/*.md.
  • knowledge.md: Owned by spec-driven. Contains ## Decisions, ## Gotchas, and a ## Codebase Feedback queue. project-index reads the file for context and consumes the Codebase Feedback queue via integrate-feedback, but never modifies Decisions or Gotchas. When re-running summary, preserve the full file.

Guidelines

DO:

  • Read actual code files to extract patterns, not just list them
  • Keep all outputs concise and scannable
  • Document conventions as observed, not as prescribed
  • Document stable patterns and interfaces, not volatile implementation details
  • Cross-reference between output files rather than duplicating content
  • Update existing docs when re-running (merge, never overwrite)

DON'T:

  • Create outputs without reading representative source files (contrasts: read actual code)
  • Generate exhaustive catalogs of every component/file (contrasts: concise and scannable)
  • Include implementation details that change frequently (contrasts: stable patterns and interfaces)
  • Duplicate information across output files (contrasts: cross-reference between files)

Error Handling

  • No source code found: inform this is for existing projects
  • Empty project: skip summary, generate overview only
  • .agents/ already exists: update existing files, never overwrite blindly — merge new findings

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.5%
按下载量换算143

Claude

30.65%
按下载量换算120

Cursor

21.28%
按下载量换算83

Gemini CLI

9.45%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills