@vuau/agent-memory 0.5.3 → 0.5.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/dist/bin/cli.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -142,7 +142,8 @@ function doctor(projectDir) {
|
|
|
142
142
|
{ file: AGENTS_MD, desc: "Root router file" },
|
|
143
143
|
{ file: CUSTOM_FILE, desc: "Project specific rules" },
|
|
144
144
|
{ file: MEMORY_FILE, desc: "Long-term memory" },
|
|
145
|
-
{ file: TASKS_FILE, desc: "Working memory" }
|
|
145
|
+
{ file: TASKS_FILE, desc: "Working memory" },
|
|
146
|
+
{ file: `${SPEC_DIR}/coding-principles.md`, desc: "Coding principles (run `agent-memory update` to create)" }
|
|
146
147
|
];
|
|
147
148
|
for (const { file, desc } of required) {
|
|
148
149
|
const filePath = join2(projectDir, file);
|
package/dist/index.js
CHANGED
|
@@ -136,7 +136,8 @@ function doctor(projectDir) {
|
|
|
136
136
|
{ file: AGENTS_MD, desc: "Root router file" },
|
|
137
137
|
{ file: CUSTOM_FILE, desc: "Project specific rules" },
|
|
138
138
|
{ file: MEMORY_FILE, desc: "Long-term memory" },
|
|
139
|
-
{ file: TASKS_FILE, desc: "Working memory" }
|
|
139
|
+
{ file: TASKS_FILE, desc: "Working memory" },
|
|
140
|
+
{ file: `${SPEC_DIR}/coding-principles.md`, desc: "Coding principles (run `agent-memory update` to create)" }
|
|
140
141
|
];
|
|
141
142
|
for (const { file, desc } of required) {
|
|
142
143
|
const filePath = join2(projectDir, file);
|
package/package.json
CHANGED