Skip to content

Commit 6a5daeb

Browse files
committed
chore: rename schd -> schedule
1 parent f17e1fd commit 6a5daeb

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ list_repos → get_repo_structure → get_package_structure → get_file_structu
125125
126126
| Command | Function | Description |
127127
|---------|----------|-------------|
128-
| [`/abcoder:schd`](docs/.claude/commands/abcoder:schd.md) | Design implementation | Analyze codebase using ABCoder, design technical solution |
128+
| [`/abcoder:schedule` <task_desc>](docs/.claude/commands/abcoder:schedule.md) | Design implementation | Analyze codebase using ABCoder, design technical solution |
129129
| [`/abcoder:task <name>`](docs/.claude/commands/abcoder:task.md) | Create coding task | Generate standardized CODE_TASK document |
130130
| [`/abcoder:recheck <task>`](docs/.claude/commands/abcoder:recheck.md) | Verify solution | Critically check CODE_TASK feasibility, useful when a CODE_TASK contains external dependencies |
131131
@@ -135,7 +135,7 @@ list_repos → get_repo_structure → get_package_structure → get_file_structu
135135
User Request
136136
137137
138-
/abcoder:schd ──────────→ Design Solution (ABCoder Analysis)
138+
/abcoder:schedule ──────────→ Design Solution (ABCoder Analysis)
139139
│ │
140140
▼ ▼
141141
/abcoder:task ─────────→ CODE_TASK (with Technical Specs, including accurate `get_ast_node` call args)
@@ -144,7 +144,7 @@ User Request
144144
/abcoder:recheck ────→ Verify Solution (ABCoder Validation. After `/abcoder:task` Claude Code will tell you what the external dependencies CODE_TASK contains, use `/abcoder:recheck` to analyze external ast_node and technical detail with ABCoder)
145145
│ │
146146
▼ ▼
147-
sub-agent ─────────→ Execute Implementation
147+
Start coding(sub-agent) ─────────→ Execute Implementation
148148
```
149149
150150
### Configuration Files
@@ -154,7 +154,7 @@ sub-agent ─────────→ Execute Implementation
154154
| [`CLAUDE.md`](docs/.claude/CLAUDE.md) | Core AST-Driven Coder role definition |
155155
| [`settings.json`](docs/.claude/settings.json) | Hooks and permissions configuration |
156156
| [`hooks/`](docs/.claude/hooks/) | Automation scripts (parse/prompt/reminder) |
157-
| [`commands/`](docs/.claude/commands/) | Slash command definitions (abcoder:task/abcoder:schd/abcoder:recheck) |
157+
| [`commands/`](docs/.claude/commands/) | Slash command definitions (abcoder:task/abcoder:schedule/abcoder:recheck) |
158158
| [`tmpls/ABCODER_CODE_TASK.md`](docs/.claude/tmpls/ABCODER_CODE_TASK.md) | Coding task template |
159159
160160
### Dependencies

cmd_init_spec.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ func copyEmbeddedDir(srcPath string, destDir string, projectRootDir string) erro
137137
switch baseName {
138138
case "recheck.md":
139139
destPath = filepath.Join(filepath.Dir(destPath), "abcoder:recheck.md")
140-
case "schd.md":
141-
destPath = filepath.Join(filepath.Dir(destPath), "abcoder:schd.md")
140+
case "schedule.md":
141+
destPath = filepath.Join(filepath.Dir(destPath), "abcoder:schedule.md")
142142
case "task.md":
143143
destPath = filepath.Join(filepath.Dir(destPath), "abcoder:task.md")
144144
}
@@ -264,7 +264,7 @@ Next steps:
264264
2. Restart Claude Code to apply the configuration
265265
266266
3. Use ABCoder tools in Claude Code:
267-
- /abcoder:schd - Analyze codebase and design solution
267+
- /abcoder:schedule - Analyze codebase and design solution
268268
- /abcoder:task - Create coding task
269269
- /abcoder:recheck - Verify solution
270270

docs/.claude/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Claude Code 的 AST 驱动开发配置,通过 MCP 工具、钩子和斜杠命
1414
│ └── reminder.sh # 提醒递归调用 get_ast_node
1515
├── commands/ # 斜杠命令定义
1616
│ ├── abcoder:task.md # /abcoder:task - 创建编码任务
17-
│ ├── abcoder:schd.md # /abcoder:schd - 设计实现方案
17+
│ ├── abcoder:schedule.md # /abcoder:schedule - 设计实现方案
1818
│ └── abcoder:recheck.md # /abcoder:recheck - 技术方案核对
1919
└── tmpls/ # 文档模板
2020
└── CODE_TASK.md # 编码任务模板
@@ -73,7 +73,7 @@ list_repos → get_repo_structure → get_package_structure → get_file_structu
7373
- 涉及 curl: 提供完整命令和响应结构
7474
- 提供具体验证方法
7575

76-
### /abcoder:schd
76+
### /abcoder:schedule
7777

7878
使用 mcp__abcoder 设计实现方案
7979

@@ -97,7 +97,7 @@ list_repos → get_repo_structure → get_package_structure → get_file_structu
9797
用户需求
9898
9999
100-
/abcoder:schd ──────────────→ 设计方案(abcoder分析)
100+
/abcoder:schedule ──────────────→ 设计方案(abcoder分析)
101101
│ │
102102
▼ ▼
103103
/abcoder:task ────────→ CODE_TASK(含技术规格)

docs/.claude/commands/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Claude Code 斜杠命令定义,用于规范化和自动化开发工作流。
3030

3131
---
3232

33-
### /abcoder:schd - 设计实现方案
33+
### /abcoder:schedule - 设计实现方案
3434

3535
使用 mcp__abcoder 分析代码库,设计技术实现方案。
3636

@@ -89,7 +89,7 @@ Claude Code 斜杠命令定义,用于规范化和自动化开发工作流。
8989
用户需求
9090
9191
92-
/abcoder:schd ──────────────→ 设计方案(abcoder分析)
92+
/abcoder:schedule ──────────────→ 设计方案(abcoder分析)
9393
│ │
9494
▼ ▼
9595
/abcoder:task ────────→ CODE_TASK(含技术规格)
@@ -107,7 +107,7 @@ coding-executor ──────→ 执行实现
107107
{{CLAUDE_HOME_PATH}}/.claude/
108108
├── commands/
109109
│ ├── abcoder:task.md
110-
│ ├── abcoder:schd.md
110+
│ ├── abcoder:schedule.md
111111
│ └── abcoder:recheck.md
112112
└── tmpls/
113113
└── ABCODER_CODE_TASK.md
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- 优先采用直接、最小改动的实现方式,只有在用户明确要求时才增加复杂度。
88
- 严格限制修改影响面在所请求的结果范围内。
99
- 找出任何模糊或含糊不清的细节,并在修改文件前提出必要的后续问题。
10-
- 在Schdule阶段禁止编写代码,禁止使用agent。
10+
- 在Schedule阶段禁止编写代码,禁止使用agent。
11+
1112
IMPORTANT: 必须从`mcp__abcoder__get_repo_strucure`开始
1213

0 commit comments

Comments
 (0)