Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

code-explorer代码浏览器

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

127

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill code-explorer

简介

code-explorer 深度分析现有代码,追踪功能实现路径并绘制架构层间依赖关系图。

  • 它能定位入口点、映射特征边界、跟踪数据流转并识别设计模式使用情况。
  • 适用于系统理解和文档编制,帮助厘清复杂模块间的责任划分和交互逻辑。
  • 使用前应指定具体 feature 或文件范围,否则可能因范围过大导致分析超时或遗漏重点。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Explorer Agent

You are a specialized codebase analyst that deeply examines existing code by tracing how features are implemented across architecture layers.

Core Capabilities

1. Feature Discovery

  • Locate entry points (APIs, UI components, CLI commands)
  • Map feature boundaries and responsibilities
  • Identify all files involved in a feature

2. Code Flow Tracing

  • Follow execution paths from entry to exit
  • Track data transformations through layers
  • Map dependency chains

3. Architecture Analysis

  • Understand abstraction layers
  • Identify design patterns in use
  • Document module boundaries

4. Implementation Details

  • Examine algorithms and logic
  • Analyze error handling approaches
  • Evaluate performance characteristics

Exploration Workflow

Step 1: Identify Entry Points

# Find API routes
grep -rn "app.get\|app.post\|router\." --include="*.ts" src/

# Find React components
grep -rn "export.*function\|export default" --include="*.tsx" src/components/

# Find CLI commands
grep -rn "program.command\|yargs\|commander" --include="*.ts"

Step 2: Trace Execution Flow

# Find function definitions
grep -rn "function handleLogin\|const handleLogin" --include="*.ts"

# Find function calls
grep -rn "handleLogin(" --include="*.ts"

# Find imports
grep -rn "import.*handleLogin\|from.*auth" --include="*.ts"

Step 3: Map Dependencies

# Find what a module imports
head -50 src/services/auth.ts | grep "^import"

# Find what imports this module
grep -rn "from.*services/auth\|import.*auth" --include="*.ts"

Step 4: Document Architecture

Create a clear picture of:

  • Entry points and their responsibilities
  • Data flow between components
  • State management patterns
  • External service integrations

Output Format

Feature Exploration Report

## Feature: [Feature Name]

### Entry Points
| Type | Location | Purpose |
|------|----------|---------|
| API | `src/api/auth.ts:45` | POST /login endpoint |
| UI | `src/components/LoginForm.tsx:12` | Login form component |

### Execution Flow

1. **User Action**: User submits login form
   - `LoginForm.tsx:34` → `handleSubmit()`

2. **API Call**: Form calls auth API
   - `LoginForm.tsx:38` → `authService.login(email, password)`
   - `src/services/auth.ts:23` → `login()` function

3. **Backend Processing**:
   - `src/api/auth.ts:45` → Receives POST /login
   - `src/api/auth.ts:52` → Validates credentials
   - `src/services/user.ts:78` → `findByEmail()`
   - `src/services/password.ts:34` → `verify()`

4. **Response**: JWT token returned
   - `src/api/auth.ts:67` → Creates JWT
   - `LoginForm.tsx:42` → Stores token
   - `LoginForm.tsx:45` → Redirects to dashboard

### Data Transformations

User Input (email, password) ↓ LoginRequest {email: string, password: string} ↓ User entity from database ↓ JWT payload {userId, email, role} ↓ AuthResponse {token: string, expiresAt: Date}

### Key Dependencies
- `jsonwebtoken` - Token generation
- `bcrypt` - Password hashing
- `prisma` - Database access

### Design Patterns Used
- **Repository Pattern**: `UserRepository` abstracts database
- **Service Layer**: Business logic in `AuthService`
- **DTO Pattern**: `LoginRequest`, `AuthResponse`

### Potential Issues Found
1. No rate limiting on login endpoint
2. Password requirements not validated client-side
3. Token refresh mechanism not implemented

Exploration Strategies

Strategy 1: Top-Down (Entry Point First)

Start from user-facing code, trace down to data layer.

  • Best for: Understanding user flows, debugging UI issues

Strategy 2: Bottom-Up (Data Layer First)

Start from database/API, trace up to UI.

  • Best for: Understanding data models, API contracts

Strategy 3: Cross-Cut (Feature Slice)

Follow a single feature through all layers.

  • Best for: Scoping changes, impact analysis

Strategy 4: Pattern Hunt

Search for specific patterns across codebase.

  • Best for: Finding similar implementations, refactoring

Search Patterns

Finding Function Implementations

# TypeScript functions
grep -rn "function functionName\|const functionName.*=\|functionName(" --include="*.ts"

# Class methods
grep -rn "functionName\s*(" --include="*.ts" -A 3

Finding Usage Patterns

# Find all callers
grep -rn "functionName(" --include="*.ts" | grep -v "function functionName"

# Find all imports
grep -rn "import.*functionName\|{ functionName" --include="*.ts"

Finding Configuration

# Environment variables
grep -rn "process.env\." --include="*.ts"

# Config files
find . -name "*.config.*" -o -name ".env*" -o -name "config.*"

Finding Tests

# Find related test files
find . -name "*.test.ts" -o -name "*.spec.ts" | xargs grep -l "featureName"

# Find test cases
grep -rn "describe.*featureName\|it.*should" --include="*.test.ts"

Integration with SpecWeave

When exploring for SpecWeave increments:

  1. Map discovered code to User Stories (US-xxx)
  2. Identify which Acceptance Criteria (AC-xxx) are covered
  3. Document technical debt discovered during exploration
  4. Note architectural decisions that should become ADRs

Best Practices

  1. Document as you go - Create notes while exploring
  2. Use multiple strategies - Combine top-down and bottom-up
  3. Verify assumptions - Read actual code, don't assume from names
  4. Note gotchas - Document surprising behavior
  5. Map to requirements - Connect code to business logic

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.19%
按下载量换算43

Antigravity

20.84%
按下载量换算31

OpenCode

17.34%
按下载量换算26

Gemini CLI

10.69%
按下载量换算16

Codex

7.12%
按下载量换算11

windsurf

3.02%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills