Refactor code structure for improved readability and maintainability

This commit is contained in:
catlog22
2026-02-28 22:32:07 +08:00
parent 19fb4d86c7
commit 67b2129f3c
60 changed files with 3002 additions and 643 deletions

View File

@@ -1,16 +1,16 @@
# What is Claude_dms3
# What is Claude Code Workflow
## One-Line Positioning
**Claude_dms3 is an AI-powered development workbench for VS Code** — Through semantic code indexing, multi-model CLI invocation, and team collaboration systems, it enables AI to deeply understand your project and generate high-quality code according to specifications.
**Claude Code Workflow is an AI-powered development workbench for VS Code** — Through semantic code indexing, multi-model CLI invocation, and team collaboration systems, it enables AI to deeply understand your project and generate high-quality code according to specifications.
> AI capabilities bloom like vines — Claude_dms3 is the trellis that guides AI along your project's architecture, coding standards, and team workflows.
> AI capabilities bloom like vines — Claude Code Workflow is the trellis that guides AI along your project's architecture, coding standards, and team workflows.
---
## 1.1 Pain Points Solved
| Pain Point | Current State | Claude_dms3 Solution |
| Pain Point | Current State | Claude Code Workflow Solution |
|------------|---------------|---------------------|
| **AI doesn't understand the project** | Every new session requires re-explaining project background, tech stack, and coding standards | Memory system persists project context, AI remembers project knowledge across sessions |
| **Difficult code search** | Keyword search can't find semantically related code, don't know where functions are called | CodexLens semantic indexing, supports natural language search and call chain tracing |
@@ -22,7 +22,7 @@
## 1.2 vs Traditional Methods
| Dimension | Traditional AI Assistant | **Claude_dms3** |
| Dimension | Traditional AI Assistant | **Claude Code Workflow** |
|-----------|-------------------------|-----------------|
| **Code Search** | Text keyword search | **Semantic vector search + LSP call chain** |
| **AI Invocation** | Single model fixed call | **Multi-model collaboration, optimal model per task** |
@@ -52,7 +52,7 @@
```mermaid
graph TB
subgraph Claude_dms3_Architecture[Claude_dms3 Architecture]
subgraph Claude Code Workflow_Architecture[Claude Code Workflow Architecture]
A[CodexLens<br/>Semantic Index]
B[CCW<br/>CLI Call Framework]
C[Memory<br/>Persistent Context]

View File

@@ -2,7 +2,7 @@
## One-Line Positioning
**Getting Started is a 5-minute quick-start guide** — Installation, first command, first workflow, quickly experience Claude_dms3's core features.
**Getting Started is a 5-minute quick-start guide** — Installation, first command, first workflow, quickly experience Claude Code Workflow's core features.
---

View File

@@ -2,17 +2,17 @@
## One-Line Positioning
**Core Concepts are the foundation for understanding Claude_dms3** — Three-layer abstraction of Commands, Skills, Prompts, Workflow session management, and team collaboration patterns.
**Core Concepts are the foundation for understanding Claude Code Workflow** — Three-layer abstraction of Commands, Skills, Prompts, Workflow session management, and team collaboration patterns.
---
## 3.1 Three-Layer Abstraction
Claude_dms3's command system is divided into three layers of abstraction:
Claude Code Workflow's command system is divided into three layers of abstraction:
### 3.1.1 Commands - Built-in Commands
**Commands are the atomic operations of Claude_dms3** — Predefined reusable commands that complete specific tasks.
**Commands are the atomic operations of Claude Code Workflow** — Predefined reusable commands that complete specific tasks.
| Category | Count | Description |
| --- | --- | --- |
@@ -137,7 +137,7 @@ graph LR
### 3.4.1 Role System
Claude_dms3 supports 8 team workflows, each defining different roles:
Claude Code Workflow supports 8 team workflows, each defining different roles:
| Workflow | Roles | Description |
| --- | --- | --- |

View File

@@ -312,7 +312,7 @@ graph LR
## Summary
Claude_dms3 best practices can be summarized as:
Claude Code Workflow best practices can be summarized as:
1. **Standards First** - Establish clear team standards
2. **Process Assurance** - Use appropriate workflows
@@ -324,7 +324,7 @@ Claude_dms3 best practices can be summarized as:
## Related Links
- [What is Claude_dms3](ch01-what-is-claude-dms3.md)
- [What is Claude Code Workflow](ch01-what-is-claude-dms3.md)
- [Getting Started](ch02-getting-started.md)
- [Core Concepts](ch03-core-concepts.md)
- [Workflow Basics](ch04-workflow-basics.md)