Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Once setup, you can start coding with Claude Code:

### AST-Driven Coding Workflow

[`.claude/hooks`](docs/.claude/hooks) provide a 4-layer analysis chain from repository to node details:
[`.claude/hooks`](internal/utils/assets/.claude/hooks) provide a 4-layer analysis chain from repository to node details:

```
list_repos → get_repo_structure → get_package_structure → get_file_structure → get_ast_node
Expand All @@ -72,13 +72,13 @@ list_repos → get_repo_structure → get_package_structure → get_file_structu

### Claude Code Slash Commands

[`.claude/commands`](docs/.claude/commands) provide three custom slash commands to streamline development:
[`.claude/commands`](internal/utils/assets/.claude/commands) provide three custom slash commands to streamline development:

| Command | Function | Description |
|---------|----------|-------------|
| [`/abcoder:schedule` <task_desc>](docs/.claude/commands/abcoder:schedule.md) | Design implementation | Analyze codebase by using ABCoder, design technical solution |
| [`/abcoder:task <name>`](docs/.claude/commands/abcoder:task.md) | Create coding task | Generate standardized CODE_TASK document |
| [`/abcoder:recheck <task>`](docs/.claude/commands/abcoder:recheck.md) | Verify solution | Critically check CODE_TASK feasibility, useful when a CODE_TASK contains external dependencies |
| [`/abcoder:schedule` <task_desc>](internal/utils/assets/.claude/commands/schedule.md) | Design implementation | Analyze codebase by using ABCoder, design technical solution |
| [`/abcoder:task <name>`](internal/utils/assets/.claude/commands/task.md) | Create coding task | Generate standardized CODE_TASK document |
| [`/abcoder:recheck <task>`](internal/utils/assets/.claude/commands/recheck.md) | Verify solution | Critically check CODE_TASK feasibility, useful when a CODE_TASK contains external dependencies |

### Workflow

Expand All @@ -102,19 +102,19 @@ Start coding(sub-agent) ─────────→ Execute Implementation

| File | Purpose |
|------|---------|
| [`CLAUDE.md`](docs/.claude/CLAUDE.md) | Core AST-Driven Coder role definition |
| [`settings.json`](docs/.claude/settings.json) | Hooks and permissions configuration |
| [`hooks/`](docs/.claude/hooks/) | Automation scripts (parse/prompt/reminder) |
| [`commands/`](docs/.claude/commands/) | Slash command definitions (abcoder:task/abcoder:schedule/abcoder:recheck) |
| [`tmpls/ABCODER_CODE_TASK.md`](docs/.claude/tmpls/ABCODER_CODE_TASK.md) | Coding task template |
| [`CLAUDE.md`](internal/utils/assets/.claude/CLAUDE.md) | Core AST-Driven Coder role definition |
| [`settings.json`](internal/utils/assets/.claude/settings.json) | Hooks and permissions configuration |
| [`hooks/`](internal/utils/assets/.claude/hooks/) | Automation scripts (parse/prompt/reminder) |
| [`commands/`](internal/utils/assets/.claude/commands/) | Slash command definitions (abcoder:task/abcoder:schedule/abcoder:recheck) |
| [`tmpls/ABCODER_CODE_TASK.md`](internal/utils/assets/.claude/tmpls/ABCODER_CODE_TASK.md) | Coding task template |

### Dependencies

- Claude Code CLI
- ABCoder MCP server (provides `mcp__abcoder` tools)
- Sequential-thinking MCP server (provides `mcp__sequential_thinking` tools, automatically configured by init-spec)

> For detailed configuration, see [docs/.claude/README.md](docs/.claude/README.md)
> For detailed configuration, see [claude-code-spec.md](docs/claude-code-spec.md)

> Watch the demo video [here](https://github.com/cloudwego/abcoder/pull/141)

Expand Down
4 changes: 2 additions & 2 deletions docs/claude-code-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@ coding-executor ──────→ 执行实现

## 相关文档

- [hooks/README.md](hooks/README.md) - 钩子系统详解
- [commands/README.md](commands/README.md) - 斜杠命令详解
- [hooks/README.md](../internal/utils/assets/.claude/hooks/README.md) - 钩子系统详解
- [commands/README.md](../internal/utils/assets/.claude/commands/README.md) - 斜杠命令详解
Loading