agents-templated 2.2.16 → 2.2.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.18",
|
|
4
4
|
"description": "Technology-agnostic development template with multi-AI agent support (Cursor, Copilot, VSCode, Gemini), security-first patterns, and comprehensive testing guidelines",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,15 +10,15 @@ tags: ["debugging", "memory", "lessons", "error-patterns"]
|
|
|
10
10
|
|
|
11
11
|
## Purpose
|
|
12
12
|
|
|
13
|
-
This rule
|
|
14
|
-
|
|
13
|
+
This rule defines how persistent debugging lessons are managed.
|
|
14
|
+
All lesson entries are stored in `memory.md` (project root), not in this rule file.
|
|
15
15
|
|
|
16
16
|
## Required Workflow
|
|
17
17
|
|
|
18
|
-
1. Before debugging, check
|
|
18
|
+
1. Before debugging, check `memory.md` for matching symptoms.
|
|
19
19
|
2. If a match is found, apply the known fix immediately.
|
|
20
20
|
3. If no match is found, debug using the `error-patterns` skill checklist.
|
|
21
|
-
4. After every successful fix, append a new lesson entry.
|
|
21
|
+
4. After every successful fix, append a new lesson entry in `memory.md`.
|
|
22
22
|
|
|
23
23
|
## Lesson Entry Format
|
|
24
24
|
|
|
@@ -37,8 +37,8 @@ Allowed categories: `[BUILD]` `[DB]` `[API/AUTH]` `[UI]` `[TYPE]` `[CONFIG]` `[O
|
|
|
37
37
|
|
|
38
38
|
- This rule is non-overrideable.
|
|
39
39
|
- Lesson recording is mandatory after each resolved error.
|
|
40
|
-
- Do not
|
|
40
|
+
- Do not store lesson entries inside this file.
|
|
41
41
|
|
|
42
42
|
## Known Lessons
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Lessons live in `memory.md` under the Lessons section.
|