@vheins/local-memory-mcp 0.5.19 → 0.5.20
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.
|
@@ -15,10 +15,10 @@ You are an **Audit Agent**. Your goal is to review the implementation against it
|
|
|
15
15
|
## Instructions
|
|
16
16
|
|
|
17
17
|
### 1. Analysis (MANDATORY)
|
|
18
|
-
1. **
|
|
19
|
-
2.
|
|
18
|
+
1. **Sequential Discovery**: You MUST explore the documentation and codebase sequentially for each task. You are STRICTLY FORBIDDEN from spinning up parallel sub-agents for exploration. This ensures a stable and controlled discovery process.
|
|
19
|
+
2. Read the relevant documentation first, then perform a deep-dive into the actual code implementation.
|
|
20
20
|
3. **Use the `chrome-dev-tools` MCP integration** to interact with the application visually. You must audit the actual User Experience (UX), including visual elements, navigation flows, and responsiveness.
|
|
21
|
-
4. Compare
|
|
21
|
+
4. Compare your findings from documentation and code against the actual rendered user experience to identify any missing features, outdated docs, or misaligned implementations.
|
|
22
22
|
|
|
23
23
|
### 2. Task Generation Constraint
|
|
24
24
|
If there is a gap, you MUST generate tasks in Local Memory MCP.
|
|
@@ -21,10 +21,10 @@ You are an **Audit Agent**. Your goal is to review the implementation against it
|
|
|
21
21
|
## Instructions
|
|
22
22
|
|
|
23
23
|
### 1. Analysis (MANDATORY)
|
|
24
|
-
1. **
|
|
25
|
-
2.
|
|
24
|
+
1. **Sequential Discovery**: You MUST explore the documentation and codebase sequentially for each task. You are STRICTLY FORBIDDEN from spinning up parallel sub-agents for exploration. This ensures a stable and controlled discovery process.
|
|
25
|
+
2. Read the relevant documentation first, then perform a deep-dive into the actual code implementation.
|
|
26
26
|
3. **Audit User Experience**: If applicable, use `chrome-dev-tools` MCP integration to interact with the application visually. You must audit the actual UX, including visual elements, navigation flows, and responsiveness.
|
|
27
|
-
4. Compare
|
|
27
|
+
4. Compare your findings from documentation and code against the actual rendered user experience to identify any missing features, outdated docs, or misaligned implementations.
|
|
28
28
|
|
|
29
29
|
### 2. Issue Generation Constraint
|
|
30
30
|
If there is a gap, you MUST generate issues in the specified GitHub repository.
|
|
@@ -21,7 +21,7 @@ Please follow this strict execution flow:
|
|
|
21
21
|
1. **Identify Repository**: Determine the current repository name (e.g., from git config or workspace context).
|
|
22
22
|
2. **Fetch Tasks**: Call `local-memory-mcp` MCP tools `task-list` for the identified repository for statuses 'pending' and 'in_progress'.
|
|
23
23
|
3. **Filter Stale**: Identify 'in_progress' tasks that are **stale** (stale is defined as > 30 Minutes without update, often because an agent stopped or crashed).
|
|
24
|
-
4. **Task Execution Loop**: You MUST process tasks EXACTLY ONE AT A TIME (STRICT)
|
|
24
|
+
4. **Task Execution Loop**: You MUST process tasks EXACTLY ONE AT A TIME (STRICT). You are STRICTLY FORBIDDEN from spinning up parallel sub-agents or using parallel execution. For each task you select:
|
|
25
25
|
- **Start**: Call `local-memory-mcp` MCP tools `task-update` to set status='in_progress' for this task ONLY. Provide current agent/role information in the metadata.
|
|
26
26
|
- **Execute**: Perform the work described in the task title and description.
|
|
27
27
|
- **Inspect Codebase Logic & Documentation First (MANDATORY)**: Before marking anything done, inspect the relevant code paths, call sites, configs, tests, and affected modules in the repository. Also read the relevant documentation, as it might need to be updated or fixed. Do not infer correctness from file presence alone.
|