solmate-skills 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Curated skills for Solmate projects. Easily share and install AI tool skills across your team.
|
|
4
4
|
|
|
5
|
+
## What's New in 2.0.3
|
|
6
|
+
|
|
7
|
+
`solmate-skills@2.0.3` adds **Backlog Context Lock**, a documentation rule that prevents implementation work from drifting away from the dense project documents already written in the 5-Layer structure.
|
|
8
|
+
|
|
9
|
+
Key changes:
|
|
10
|
+
|
|
11
|
+
- Every backlog task must link to related Concept, UI, Technical Spec, and QA documents.
|
|
12
|
+
- `/rules-workflow` now treats linked backlog documents as implementation inputs before coding starts.
|
|
13
|
+
- `/verify-docs` fails backlog items that omit required related-document fields.
|
|
14
|
+
- Local Codex settings under `.codex/` are excluded from the npm package.
|
|
15
|
+
|
|
5
16
|
## Installation
|
|
6
17
|
|
|
7
18
|
You don't need to install this package globally. Simply use `npx`:
|
|
@@ -140,6 +151,47 @@ docs/
|
|
|
140
151
|
|
|
141
152
|
Backlog items are intentionally document-linked. Each task in `docs/04_Logic_Progress/00_BACKLOG.md` must include related Concept, UI, Technical Spec, and QA documents, plus implementation preconditions, acceptance criteria, and a document sync check. If a related document does not exist, the item must say `N/A - 사유`; implementation should pause when the missing document is required for a safe decision.
|
|
142
153
|
|
|
154
|
+
### Backlog Context Lock
|
|
155
|
+
|
|
156
|
+
Backlog Context Lock makes `docs/04_Logic_Progress/00_BACKLOG.md` act as a bridge between planning documents and implementation. A backlog item is not considered ready for coding until it names the documents that define why the task exists, how the UI should behave, what technical constraints apply, and how the work will be verified.
|
|
157
|
+
|
|
158
|
+
Required fields for every backlog item:
|
|
159
|
+
|
|
160
|
+
- `Related Concept Docs`
|
|
161
|
+
- `Related UI Docs`
|
|
162
|
+
- `Related Technical Docs`
|
|
163
|
+
- `Related QA Docs`
|
|
164
|
+
- `Implementation Preconditions`
|
|
165
|
+
- `Acceptance Criteria`
|
|
166
|
+
- `Document Sync Check`
|
|
167
|
+
|
|
168
|
+
If a related document does not exist, write `N/A - 사유`. Do not leave the field blank. If the missing document is required to make a safe implementation decision, pause implementation and write or update the document first.
|
|
169
|
+
|
|
170
|
+
**Backlog item template:**
|
|
171
|
+
|
|
172
|
+
```markdown
|
|
173
|
+
### [ ] TASK-000: Implement feature name
|
|
174
|
+
|
|
175
|
+
- Status: ToDo
|
|
176
|
+
- Related Concept Docs:
|
|
177
|
+
- [Product Specs](../01_Concept_Design/03_PRODUCT_SPECS.md) - feature purpose and user value
|
|
178
|
+
- Related UI Docs:
|
|
179
|
+
- [Screen Flow](../02_UI_Screens/00_SCREEN_FLOW.md) - target screen and interaction flow
|
|
180
|
+
- Related Technical Docs:
|
|
181
|
+
- [API Specs](../03_Technical_Specs/02_API_SPECS.md) - endpoint and data contract
|
|
182
|
+
- Related QA Docs:
|
|
183
|
+
- [QA Checklist](../05_QA_Validation/02_QA_CHECKLIST.md) - acceptance and release criteria
|
|
184
|
+
- Implementation Preconditions:
|
|
185
|
+
- [ ] Read all related documents before coding
|
|
186
|
+
- [ ] Confirm implementation scope does not conflict with documented intent
|
|
187
|
+
- Acceptance Criteria:
|
|
188
|
+
- [ ] Feature behavior matches linked Concept/UI/Technical docs
|
|
189
|
+
- [ ] QA criteria are testable and satisfied
|
|
190
|
+
- Document Sync Check:
|
|
191
|
+
- [ ] No mismatch between implementation and linked documents
|
|
192
|
+
- [ ] Update related documents if implementation changes the agreed behavior
|
|
193
|
+
```
|
|
194
|
+
|
|
143
195
|
---
|
|
144
196
|
|
|
145
197
|
### Pitch Deck
|