Skip to content

Commit 983c125

Browse files
committed
fix: metadata dir name in skills
1 parent 994c420 commit 983c125

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.ai-ready/rules/auto-feature-design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
2. 使用 EARS 模式生成需求文档
4646
3. 通过迭代问答完善需求
4747
4. 生成技术设计文档
48-
5. 将文档保存到 `.ai-ready/specs/{FEATURE_NAME}/` 目录
48+
5. 将文档保存到 `.monkeycode/specs/{FEATURE_NAME}/` 目录
4949

5050
## 输出文件
5151

52-
执行后会在 `.ai-ready/specs/{FEATURE_NAME}/` 目录下生成:
52+
执行后会在 `.monkeycode/specs/{FEATURE_NAME}/` 目录下生成:
5353
- `requirements.md` - 符合 EARS 规范的需求文档
5454
- `design.md` - 技术设计规格说明书
5555

.ai-ready/skills/feature-design/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,20 +130,20 @@ Updated: yyyy-mm-dd
130130

131131
1. **Initialize Feature**
132132
- Generate a short feature name in `kebab-case` format (e.g., `user-authentication`)
133-
- Create directory `.ai-ready/specs/{FEATURE_NAME}/`
133+
- Create directory `.monkeycode/specs/{FEATURE_NAME}/`
134134

135135
2. **Gather Context**
136-
- Read project documentation from `.ai-ready/docs/` if available:
136+
- Read project documentation from `.monkeycode/docs/` if available:
137137
- `INDEX.md` - Project overview
138138
- `ARCHITECTURE.md` - System architecture
139-
- Scan `.ai-ready/specs/*/` for related historical requirements
139+
- Scan `.monkeycode/specs/*/` for related historical requirements
140140
- Understand existing code structure
141141

142142
3. **Generate Initial Requirements**
143143
- Decompose the feature idea into user stories
144144
- Apply EARS patterns to each acceptance criterion
145145
- Validate against INCOSE quality rules
146-
- Write to `.ai-ready/specs/{FEATURE_NAME}/requirements.md`
146+
- Write to `.monkeycode/specs/{FEATURE_NAME}/requirements.md`
147147

148148
4. **Iterate with User**
149149
- Present requirements document to user
@@ -161,12 +161,12 @@ Updated: yyyy-mm-dd
161161
1. **Initialize Design Document**
162162
- Get current date via `date '+%Y-%m-%d'`
163163
- Create feature name with date prefix (e.g., `2025-01-15-user-authentication`)
164-
- Create initial design outline in `.ai-ready/specs/{FEATURE_NAME}/design.md`
164+
- Create initial design outline in `.monkeycode/specs/{FEATURE_NAME}/design.md`
165165

166166
2. **Gather Technical Context**
167-
- Read `.ai-ready/docs/INDEX.md` and `.ai-ready/docs/ARCHITECTURE.md`
167+
- Read `.monkeycode/docs/INDEX.md` and `.monkeycode/docs/ARCHITECTURE.md`
168168
- Analyze project structure and existing patterns
169-
- Review related specifications in `.ai-ready/specs/`
169+
- Review related specifications in `.monkeycode/specs/`
170170

171171
3. **Generate Design Document**
172172
- Include all required sections:
@@ -206,7 +206,7 @@ During the workflow, ask the user about:
206206
## Output Files
207207

208208
```
209-
.ai-ready/specs/{FEATURE_NAME}/
209+
.monkeycode/specs/{FEATURE_NAME}/
210210
├── requirements.md # EARS-compliant requirements
211211
└── design.md # Technical design specification
212212
```

0 commit comments

Comments
 (0)