Refactor documentation for code commands and workflows

- Updated command syntax formatting to use code blocks for clarity in `prep.md`, `review.md`, and `spec.md`.
- Enhanced architectural diagrams in `ch01-what-is-claude-dms3.md` and core concepts in `ch03-core-concepts.md` using mermaid syntax for better visualization.
- Improved workflow diagrams in `ch04-workflow-basics.md` and `4-level.md` to provide clearer representations of processes.
- Added troubleshooting section in `installation.md` to address common installation issues and provide quick start examples.
- Revised skill documentation in `claude-meta.md` and `claude-workflow.md` to standardize command triggers and output structures.
- Updated best practices and workflow index documentation to enhance readability and understanding of workflow levels and practices.
This commit is contained in:
catlog22
2026-02-28 19:53:24 +08:00
parent b0bfdb907a
commit 4a89f626fc
51 changed files with 741 additions and 619 deletions

View File

@@ -50,32 +50,24 @@
## 1.4 架构概览
```
┌─────────────────────────────────────────────────────────────┐
Claude_dms3 架构 │
├─────────────────────────────────────────────────────────────┤
│ │
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
CodexLens │ │ CCW │ │ Memory │ │
(语义索引) │ (CLI调用 │ │ (持久化 │ │
│ │ │ │ 框架) │ │ 上下文) │ │
└──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
│ │ │ │ │
└────────────────┼────────────────┘ │
│ │ │
┌─────┴─────┐ │
│ Spec │ │
│ 规范系统 │ │
└─────┬─────┘ │
│ │ │
│ ┌────────────────┼────────────────┐ │
│ │ │ │ │
│ ┌────┴────┐ ┌─────┴─────┐ ┌────┴────┐ │
│ │ Hooks │ │ Skills │ │ Agents │ │
│ │ (注入) │ │ (可复用) │ │ (角色) │ │
│ └─────────┘ └───────────┘ └─────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
```mermaid
graph TB
subgraph Claude_dms3_Architecture[Claude_dms3 架构]
A[CodexLens<br/>语义索引]
B[CCW<br/>CLI调用框架]
C[Memory<br/>持久化上下文]
D[Spec 规范系统]
E[Hooks<br/>注入]
F[Skills<br/>可复用]
G[Agents<br/>角色]
A --> D
B --> D
C --> D
D --> E
D --> F
D --> G
end
```
---