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.16",
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 is the agent's long-term memory for recurring errors and fixes.
14
- Always check this rule before debugging. If a matching error exists, apply that known fix first.
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 this file for matching symptoms.
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 remove existing lessons unless explicitly requested.
40
+ - Do not store lesson entries inside this file.
41
41
 
42
42
  ## Known Lessons
43
43
 
44
- <!-- New lessons are appended below this line. Do not remove this comment. -->
44
+ Lessons live in `memory.md` under the Lessons section.