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

codebase-analysis代码库分析

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

2

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/doubleslashse/claude-marketplace --skill codebase-analysis

简介

codebase-analysis 用于从现有代码库中提取业务需求、领域知识和技术规范,支持深度代码理解与分析。

  • 适用于新项目启动、重构规划或技术文档编写等需要全面掌握代码结构和设计意图的场景。
  • 能够识别核心实体关系、业务流程、集成接口和技术约束,输出结构化分析报告。
  • 使用时应确保具备文件读取权限,避免对生产环境造成影响,并核实工具是否执行系统命令。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Codebase Analysis Skill

Overview

This skill provides techniques for extracting business requirements, domain knowledge, and technical specifications from existing codebases.

Analysis Objectives

When analyzing a codebase, seek to understand:

  1. Domain Model: Core entities and their relationships
  2. Business Rules: Validation, calculations, workflows
  3. Integrations: External systems and data flows
  4. User Capabilities: What users can do in the system
  5. Technical Constraints: Architecture patterns and limitations

Analysis Process

Phase 1: Structure Discovery

  1. Map project structure and organization
  2. Identify main components and layers
  3. Locate configuration and entry points
  4. Understand build and deployment setup

Phase 2: Domain Model Extraction

  1. Find entity/model definitions
  2. Map relationships between entities
  3. Identify domain vocabulary (ubiquitous language)
  4. Document data types and constraints

Phase 3: Business Logic Identification

  1. Locate service/business logic layers
  2. Extract validation rules
  3. Document calculations and formulas
  4. Map state machines and workflows

Phase 4: Integration Mapping

  1. Find API endpoints and contracts
  2. Identify external service calls
  3. Map data flows in/out of system
  4. Document authentication patterns

Phase 5: Capability Documentation

  1. List user-facing features
  2. Map permissions and access control
  3. Document user workflows
  4. Identify edge cases and error handling

Code Pattern Recognition

Entity/Model Identification

Look for these patterns:

// C# Entity
public class Order { ... }

// Java Entity
@Entity
public class Order { ... }

// TypeScript Interface
interface Order { ... }

// Database Schema
CREATE TABLE orders ( ... )

Business Rule Indicators

Watch for these keywords and patterns:

  • Validation: Validate, Check, Ensure, Must, Should
  • Calculations: Calculate, Compute, Total, Sum
  • Conditions: If, When, Unless, Only
  • Constraints: Max, Min, Required, Limit

Service Layer Patterns

Identify business logic in:

// Service classes
public class OrderService { ... }

// Use cases / Application services
public class CreateOrderUseCase { ... }

// Command/Query handlers
public class CreateOrderHandler { ... }

API Endpoint Patterns

Look for:

// REST Controllers
[Route("api/orders")]
[HttpPost]
public async Task<Order> Create(...)

// Express routes
app.post('/api/orders', ...)

// GraphQL resolvers
Mutation: { createOrder: ... }

Analysis Heuristics

Finding Domain Models

  1. Search for class, interface, type definitions
  2. Look in folders named: Models, Entities, Domain
  3. Check database migrations and schema files
  4. Review ORM configurations

Finding Business Rules

  1. Search for validation attributes/decorators
  2. Look for throw statements (business exceptions)
  3. Find conditional logic in services
  4. Check for rule engines or policy patterns

Finding Integrations

  1. Search for HTTP client usage
  2. Look for message queue producers/consumers
  3. Find database connection configurations
  4. Check for external SDK imports

Finding User Capabilities

  1. Review API endpoints and their permissions
  2. Check UI components and forms
  3. Look at authorization/role definitions
  4. Review menu structures and navigation

Output Artifacts

Domain Model Documentation

## Entity: Order

### Attributes
| Name | Type | Description | Constraints |
|------|------|-------------|-------------|
| id | UUID | Unique identifier | Required |
| status | Enum | Order status | Required |
| total | Decimal | Order total | >= 0 |

### Relationships
- Order has many OrderItems (1:N)
- Order belongs to Customer (N:1)

### Business Rules
- Order total must equal sum of item totals
- Status can only transition: Draft -> Submitted -> Approved -> Completed

Business Rule Documentation

## Rule: Order Validation

### Description
Orders must meet these criteria before submission

### Conditions
1. Order must have at least one item
2. All items must have valid product references
3. Customer must have valid payment method
4. Total must be greater than $0

### Implementation
- File: src/Services/OrderService.cs
- Method: ValidateForSubmission()
- Line: 145-180

Integration Documentation

## Integration: Payment Gateway

### Type
REST API (Synchronous)

### Endpoint
POST https://api.payments.com/v1/charges

### Data Flow
- Input: Order total, Customer payment token
- Output: Transaction ID, Status

### Error Handling
- Timeout: Retry 3 times with exponential backoff
- Failure: Mark order as payment pending, notify support

### Implementation
- File: src/Integrations/PaymentGateway.cs

Code Search Patterns

Finding Entities (by language)

# C# / .NET
grep -r "public class.*Entity" --include="*.cs"
grep -r "\[Table\(" --include="*.cs"

# Java
grep -r "@Entity" --include="*.java"

# TypeScript
grep -r "interface.*{" --include="*.ts"

Finding Validation Rules

# C# Attributes
grep -r "\[Required\]|\[Range\]|\[StringLength\]" --include="*.cs"

# Java Annotations
grep -r "@NotNull|@Size|@Valid" --include="*.java"

# Custom validation
grep -r "Validate|throw.*Exception" --include="*.cs"

Finding API Endpoints

# .NET Controllers
grep -r "\[Http.*\]|\[Route\(" --include="*.cs"

# Express.js
grep -r "app\.(get|post|put|delete)\(" --include="*.js"

Reverse Engineering Tips

Start With Entry Points

  1. Find main() or startup configuration
  2. Follow dependency injection setup
  3. Trace from API controllers to services to data

Follow the Data

  1. Start with database schema or entities
  2. Trace how data flows through system
  3. Map CRUD operations for each entity

Look for Tests

  1. Unit tests reveal expected behavior
  2. Integration tests show workflows
  3. Test data shows valid/invalid scenarios

Check Documentation

  1. Look for README files
  2. Check API documentation (Swagger/OpenAPI)
  3. Review code comments and XML docs

Questions to Answer

After analysis, you should be able to answer:

  1. What entities exist and how do they relate?
  2. What can users do in this system?
  3. What business rules govern behavior?
  4. What external systems does this integrate with?
  5. What are the key workflows?
  6. What constraints exist (technical and business)?
  7. What data does the system manage?
  8. Who has access to what?

See patterns.md for common architectural patterns to identify.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

windsurf

29.7%
按下载量换算24

OpenCode

25.73%
按下载量换算21

weavefox

17.1%
按下载量换算14

Codex

13.25%
按下载量换算11

Claude Code

7.15%
按下载量换算6

Antigravity

3.21%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills