@vheins/local-memory-mcp 0.14.2 → 0.14.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/{chunk-T7WY5E4Y.js → chunk-U67YH7MG.js} +2 -2
- package/dist/dashboard/public/assets/{index-DHd85KEJ.js → index-CD8w6eaB.js} +27 -27
- package/dist/dashboard/public/index.html +1 -1
- package/dist/dashboard/server.js +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/prompts/architecture-design.md +22 -16
- package/dist/prompts/create-task.md +37 -0
- package/dist/prompts/csl-from-docs.md +9 -6
- package/dist/prompts/csl-scrapper.md +9 -6
- package/dist/prompts/documentation-sync.md +7 -0
- package/dist/prompts/export-task-to-github.md +20 -13
- package/dist/prompts/fix-suggestion.md +19 -17
- package/dist/prompts/import-github-issues.md +7 -0
- package/dist/prompts/learning-retrospective.md +5 -5
- package/dist/prompts/memory-agent-core.md +7 -0
- package/dist/prompts/memory-guided-review.md +6 -5
- package/dist/prompts/memory-index-policy.md +7 -0
- package/dist/prompts/project-briefing.md +7 -0
- package/dist/prompts/review-and-audit.md +14 -10
- package/dist/prompts/review-and-post-issue.md +13 -12
- package/dist/prompts/root-cause-analysis.md +12 -9
- package/dist/prompts/security-triage.md +12 -9
- package/dist/prompts/senior-code-review.md +9 -6
- package/dist/prompts/sentinel-issue-resolver.md +14 -5
- package/dist/prompts/session-planner.md +7 -6
- package/dist/prompts/task-management-guidelines.md +7 -0
- package/dist/prompts/task-memory-executor.md +52 -101
- package/dist/prompts/tech-affinity-scout.md +6 -5
- package/dist/prompts/technical-planning.md +45 -14
- package/dist/prompts/tool-usage-guidelines.md +7 -0
- package/package.json +4 -3
|
@@ -3,14 +3,15 @@ name: session-planner
|
|
|
3
3
|
description: Break objective into atomic tasks.
|
|
4
4
|
arguments:
|
|
5
5
|
- name: objective
|
|
6
|
-
description: High-level session goal.
|
|
7
|
-
required:
|
|
6
|
+
description: High-level session goal.
|
|
7
|
+
required: true
|
|
8
8
|
agent: Strategy Lead
|
|
9
|
+
version: "1.0.0"
|
|
10
|
+
category: workflows
|
|
11
|
+
tags: [workflow, planning, task-breakdown]
|
|
9
12
|
---
|
|
10
|
-
## 0. CONTEXT RESOLUTION
|
|
11
|
-
- **objective**: If provided, use directly. If omitted — extract from the active `in_progress` task description, the most recent pending handoff, or the last user request in conversation context.
|
|
12
13
|
|
|
13
|
-
Plan execution for
|
|
14
|
+
Plan execution for: '{{objective}}'.
|
|
14
15
|
|
|
15
16
|
Steps:
|
|
16
17
|
1. **Orient**: Call `task-list` to avoid duplicate active/backlog work.
|
|
@@ -20,6 +21,6 @@ Steps:
|
|
|
20
21
|
5. **Phase**: Group into `research`, `implementation`, and `validation`.
|
|
21
22
|
6. **Hierarchy**: Use `parent_id` / `depends_on` for sequencing.
|
|
22
23
|
7. **Priority Scale**: When creating tasks, use the exact MCP scale `1=Low`, `2=Normal`, `3=Medium`, `4=High`, `5=Critical`. Higher number means higher urgency.
|
|
23
|
-
8. **Create**: Use `task-create` in current repo with stable `task_code`, tags, and acceptance criteria
|
|
24
|
+
8. **Create**: Use `task-create` in current repo with stable `task_code`, tags, and acceptance criteria.
|
|
24
25
|
|
|
25
26
|
Display final plan to user.
|
|
@@ -3,6 +3,13 @@ name: task-management-guidelines
|
|
|
3
3
|
description: Task tracking & progress management standards.
|
|
4
4
|
arguments: []
|
|
5
5
|
agent: Project Manager
|
|
6
|
+
version: "1.0.0"
|
|
7
|
+
license: Proprietary — Personal Use Only
|
|
8
|
+
category: workflows
|
|
9
|
+
type: Utility
|
|
10
|
+
complexity: Beginner
|
|
11
|
+
tags: [workflow, tasks, status-management, mcp]
|
|
12
|
+
author: vheins
|
|
6
13
|
---
|
|
7
14
|
# Task Management Standards
|
|
8
15
|
|
|
@@ -3,27 +3,31 @@ name: task-memory-executor
|
|
|
3
3
|
description: Sequentially execute pending tasks for current repository.
|
|
4
4
|
arguments:
|
|
5
5
|
- name: agent_identity
|
|
6
|
-
description: Optional runner identity (e.g., Codex-Jarvis, Codex-HulkBuster, Gemini-Ultron). If omitted, identity
|
|
6
|
+
description: Optional runner identity (e.g., Codex-Jarvis, Codex-HulkBuster, Gemini-Ultron). If omitted, infer identity from the active CLI/IDE and append short session token.
|
|
7
7
|
required: false
|
|
8
8
|
agent: Task Executor
|
|
9
|
+
version: "1.5.4"
|
|
10
|
+
license: Proprietary — Personal Use Only
|
|
11
|
+
category: workflows
|
|
12
|
+
type: Orchestrator
|
|
13
|
+
complexity: Advanced
|
|
14
|
+
tags: [workflow, task-execution, memory]
|
|
15
|
+
author: vheins
|
|
9
16
|
---
|
|
17
|
+
# Skill: task-memory-executor
|
|
10
18
|
|
|
11
19
|
## 1. SYNC & FILTER
|
|
12
|
-
1. **Identify**:
|
|
13
|
-
- Resolver priority: `agent_identity` argument -> auto session identity
|
|
20
|
+
1. **Identify**: Resolve runner identity + repo name.
|
|
21
|
+
- Resolver priority: `agent_identity` argument -> auto-generated session identity for this run.
|
|
22
|
+
- Compute this once and reuse it across the full execution loop.
|
|
14
23
|
- Auto identity format: `<runner>-<randomName>`.
|
|
15
24
|
- `<runner>` should come from the active CLI/IDE label (for example `vibe-coding-cli`, `vibe-coding-ide`, `Codex`, `Gemini`) and `<randomName>` is a short stable session token.
|
|
16
|
-
- Use this identity
|
|
25
|
+
- Use this identity in task claim/update and handoff metadata so parallel terminals remain attributable.
|
|
17
26
|
2. **List**: Call `task-list` ONCE for active tasks.
|
|
18
|
-
3. **Dependency-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
- `depends_on` is empty, or the dependency task exists and is `completed`, and
|
|
23
|
-
- `parent_id` is empty, or the parent task is `completed`.
|
|
24
|
-
- Keep non-ready tasks out of execution for now.
|
|
25
|
-
- If a task is blocked by unresolved dependency/parent, do not claim it and continue to the next ready task.
|
|
26
|
-
- If all active tasks are blocked, report blockers and stop execution loop.
|
|
27
|
+
3. **Dependency-ready filtering**: In the returned `task-list` order, only run `backlog`/`pending` tasks where:
|
|
28
|
+
- `depends_on` is empty or completed, and
|
|
29
|
+
- `parent_id` is empty or completed.
|
|
30
|
+
- If all are blocked, report blockers and pause.
|
|
27
31
|
4. **Handoffs**: Call `handoff-list` with `status=pending` and inspect relevant transfer context before selecting work. Treat a pending handoff as active only when it has unfinished work, a blocker, a next owner, or a linked task. If it is obsolete or only describes completed work, close it with `handoff-update status=expired`.
|
|
28
32
|
5. **Audit**: Identify stale `in_progress` tasks (>30m no update). Hydrate via `task-detail` to check timestamps.
|
|
29
33
|
|
|
@@ -33,14 +37,14 @@ agent: Task Executor
|
|
|
33
37
|
- do NOT re-fetch or re-inject full detail
|
|
34
38
|
|
|
35
39
|
## 2. EXECUTION LOOP
|
|
36
|
-
1. **Parallelism & Sub-Agents**:
|
|
40
|
+
1. **Parallelism & Sub-Agents**:
|
|
37
41
|
- **MANDATORY**: Tasks MUST be delegated to sub-agents if the current agent has sub-agent capabilities.
|
|
38
|
-
- **Decomposition**: If a task is too broad, the agent is allowed to decompose it into multiple tasks (via `task-create`) and delegate them to sub-agents.
|
|
42
|
+
- **Decomposition**: If a task is too broad, the agent is allowed to decompose it into multiple tasks (via `task-create`) and delegate them to sub-agents.
|
|
39
43
|
- **Spawn Limit**: The total number of parallel sub-agents MUST NOT exceed 2. Each sub-agent executes EXACTLY ONE task at a time.
|
|
40
44
|
- **Fallback**: If the current agent CANNOT spawn sub-agents, it MUST execute tasks sequentially (exactly ONE concurrent task) until the queue is clear.
|
|
41
45
|
2. **Hydrate**: Fetch full context via `task-detail` for the assigned task.
|
|
42
|
-
3. **Readiness re-check**: Re-check
|
|
43
|
-
4. **Claim**: Use `task-claim` with `task_code` or `task_id` before implementation
|
|
46
|
+
3. **Readiness re-check**: Re-check `depends_on`/`parent_id` from hydrated detail; if still blocked, skip and pick next ready task.
|
|
47
|
+
4. **Claim**: Use `task-claim` with `task_code` or `task_id` before implementation. Include the runner identity in claim metadata.
|
|
44
48
|
5. **Start**: `task-update` status to `in_progress` (MUST transition: `pending` → `in_progress`). Add agent/role metadata and the same runner identity used by claims.
|
|
45
49
|
6. **Research**: Call `memory-search` (Hybrid Search) and hydrate relevant results with `memory-detail`.
|
|
46
50
|
7. **Standards (MANDATORY PER TASK)**: Call `standard-search` for every task inside the execution loop before any code edit, test edit, refactor, migration, or implementation decision, using the task intent, affected files, inferred language, stack, and repo as filters. This is required even for small tasks, decomposed tasks, and sub-agent assignments. Apply only relevant standards, hydrate details when needed, and if no relevant standards are returned, continue and state that no applicable standards were found.
|
|
@@ -57,16 +61,19 @@ agent: Task Executor
|
|
|
57
61
|
- **Cleanup**: Completing/canceling a task automatically releases active claims and expires linked pending handoffs.
|
|
58
62
|
- **Memory**: Store insights as `code_fact`/`pattern` via `memory-store`.
|
|
59
63
|
- **Standards**: Store durable implementation rules via `standard-store`, not generic memory.
|
|
60
|
-
- **Handoff**: If work remains or ownership changes, create `handoff-create` with concise summary and structured context containing next steps/blockers/remaining work. Do not create handoffs for completed-work summaries. Include runner identity in handoff metadata
|
|
64
|
+
- **Handoff**: If work remains or ownership changes, create `handoff-create` with concise summary and structured context containing next steps/blockers/remaining work. Do not create handoffs for completed-work summaries. Include the runner identity in handoff context/metadata.
|
|
61
65
|
- **Retrospective**: Invoke `learning-retrospective`.
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
- **Commit**: Atomic git commit. The commit message MUST follow this format:
|
|
67
|
+
```
|
|
68
|
+
type(scope): your commit message
|
|
69
|
+
|
|
70
|
+
- {{task_title}}
|
|
71
|
+
{{summary_task}}
|
|
72
|
+
|
|
73
|
+
{{keyword}} #{{issue_number}}
|
|
74
|
+
```
|
|
75
|
+
Use `fix` for bug fixes, `closes` for features/chores, `resolve` as general. Multiple issues: e.g., `fix #123, closes #124, resolve #125`. Issues close only when merged into the default branch.
|
|
76
|
+
- **Issue Number Extraction**: Read the issue number from task metadata when available. If metadata only contains a GitHub Issue URL, extract the trailing issue number from that URL before committing.
|
|
70
77
|
|
|
71
78
|
10A. **BLOCKER HANDLING (AUTOMATIC TASK CREATION)**:
|
|
72
79
|
- **Trigger**: When task status is updated to `blocked` with a comment explaining the blocker reason.
|
|
@@ -82,25 +89,16 @@ agent: Task Executor
|
|
|
82
89
|
- Task Code: `${parent_task_code}-FIX-${unix_timestamp}`
|
|
83
90
|
- Title: `FIX: [${parent_task_title}] - Resolve: ${blocker_reason_extracted}`
|
|
84
91
|
- Description: Follow standard format (1. Context & Analysis, 2. Step & Implementation, 3. Acceptance & Verification)
|
|
85
|
-
- Context: Reference parent task code and explain the blocking factor
|
|
86
|
-
- Steps: Identify root cause and implement fix
|
|
87
|
-
- Verification: Confirm parent task can proceed
|
|
88
92
|
- Parent ID: Set to current blocked task ID
|
|
89
93
|
- Priority: `4` (HIGH)
|
|
90
94
|
- Phase: `blocker-resolution`
|
|
91
95
|
- Tags: `["blocker-fix", "auto-generated"]`
|
|
92
96
|
- Metadata: Include `triggered_by_task`, `blocker_reason`, `creation_timestamp`, and `agent_identity`
|
|
93
|
-
- **Update Parent Task**: Add comment linking to the new blocker-fix task
|
|
94
|
-
- **Link Dependencies**: Set parent task's `depends_on` to the new blocker-fix task
|
|
97
|
+
- **Update Parent Task**: Add comment linking to the new blocker-fix task
|
|
98
|
+
- **Link Dependencies**: Set parent task's `depends_on` to the new blocker-fix task
|
|
95
99
|
- **Skip Creation** (if external): Log that blocker is external, keep task status as `blocked`, no automatic task created.
|
|
96
100
|
|
|
97
|
-
11. **
|
|
98
|
-
- `task-list` (pending) → claim next
|
|
99
|
-
- If empty → promote backlog → loop
|
|
100
|
-
- If backlog empty → check stale in_progress → loop
|
|
101
|
-
- If stale empty → check handoff → loop
|
|
102
|
-
- **Only then → STOP**
|
|
103
|
-
- **Violation = incomplete execution**
|
|
101
|
+
11. **Repeat**: Claim next task from `task-list`.
|
|
104
102
|
|
|
105
103
|
## 3. BACKLOG MAINTENANCE
|
|
106
104
|
If active queue is empty:
|
|
@@ -112,90 +110,43 @@ If active queue is empty:
|
|
|
112
110
|
|
|
113
111
|
### Internal Solvable Blocker Patterns (Trigger Auto Task Creation)
|
|
114
112
|
|
|
115
|
-
**Missing Dependencies/Modules**:
|
|
116
|
-
- `module not found`, `missing dependency`, `import not installed`, `undefined function`, `no such file`
|
|
113
|
+
**Missing Dependencies/Modules**: `module not found`, `missing dependency`, `import not installed`
|
|
117
114
|
- Example: "ImportError: Function 'validateToken' not found"
|
|
118
115
|
|
|
119
|
-
**Not Implemented**:
|
|
120
|
-
- `function/method not implemented`, `interface not exists`, `component undefined`
|
|
116
|
+
**Not Implemented**: `function not implemented`, `interface not exists`, `component undefined`
|
|
121
117
|
- Example: "Function 'processPayment' not implemented - exists in type definitions but no implementation"
|
|
122
118
|
|
|
123
|
-
**Configuration/Setup Issues**:
|
|
124
|
-
- `.env missing`, `configuration not set`, `setup invalid`, `environment variable not found`
|
|
119
|
+
**Configuration/Setup Issues**: `.env missing`, `configuration not set`, `setup invalid`
|
|
125
120
|
- Example: "DATABASE_URL environment variable not set"
|
|
126
121
|
|
|
127
|
-
**Test/Build Failures
|
|
128
|
-
- `test failed`, `assertion failed`, `type error`, `build error`, `compilation failed`
|
|
122
|
+
**Test/Build Failures**: `test failed`, `assertion failed`, `type error`, `build error`
|
|
129
123
|
- Example: "Type error: Property 'user' does not exist on type 'Request'"
|
|
130
124
|
|
|
131
|
-
**Implementation Gaps**:
|
|
132
|
-
- `endpoint not implemented`, `API route missing`, `middleware not registered`
|
|
133
|
-
- Example: "GET /api/users endpoint returns 404 - not implemented"
|
|
134
|
-
|
|
135
125
|
### External Blocker Patterns (Skip Auto Task Creation)
|
|
136
126
|
|
|
137
|
-
**Awaiting User/External Action**:
|
|
138
|
-
-
|
|
139
|
-
- Example: "Awaiting user approval for database migration", "Requires manual infrastructure setup"
|
|
127
|
+
**Awaiting User/External Action**: `awaiting user`, `requires manual`, `external dependency`
|
|
128
|
+
- Example: "Awaiting user approval for database migration"
|
|
140
129
|
|
|
141
|
-
**External Service Issues**:
|
|
142
|
-
-
|
|
143
|
-
- Example: "Payment gateway API not responding - external service unavailable"
|
|
130
|
+
**External Service Issues**: `API not responding`, `service unavailable`, `server not ready`
|
|
131
|
+
- Example: "Payment gateway API not responding"
|
|
144
132
|
|
|
145
|
-
|
|
146
|
-
- `install locally`, `run script manually`, `requires external tool`
|
|
147
|
-
- Example: "Requires manual Docker setup - not part of this task"
|
|
133
|
+
### Auto Task Creation Example
|
|
148
134
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
**Parent Task Blocked:**
|
|
135
|
+
**Parent Task Blocked**:
|
|
152
136
|
```
|
|
153
|
-
Task
|
|
154
|
-
Title: Add payment processing middleware
|
|
137
|
+
Task: FEATURE-42 (Add payment middleware)
|
|
155
138
|
Status: blocked
|
|
156
|
-
Comment: "Function 'chargeCard'
|
|
139
|
+
Comment: "Function 'chargeCard' not implemented"
|
|
157
140
|
```
|
|
158
141
|
|
|
159
|
-
**
|
|
160
|
-
```
|
|
161
|
-
Pattern detected: "Function .* not implemented" → INTERNAL SOLVABLE ✅
|
|
162
|
-
Action: Create blocker-fix task
|
|
142
|
+
**Auto-Generated Fix Task**:
|
|
163
143
|
```
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
Task Code: FEATURE-42-FIX-1714737908
|
|
168
|
-
Title: FIX: [Add payment processing middleware] - Resolve: Function 'chargeCard' not implemented
|
|
169
|
-
Parent ID: FEATURE-42
|
|
144
|
+
Code: FEATURE-42-FIX-1714737908
|
|
145
|
+
Title: FIX: [Add payment middleware] - Resolve: Function 'chargeCard' not implemented
|
|
146
|
+
Parent: FEATURE-42
|
|
170
147
|
Priority: 4 (HIGH)
|
|
171
|
-
Phase: blocker-resolution
|
|
172
148
|
Tags: ["blocker-fix", "auto-generated"]
|
|
173
|
-
|
|
174
|
-
Description:
|
|
175
|
-
1. Context & Analysis:
|
|
176
|
-
Parent task FEATURE-42 blocked due to: Function 'chargeCard' in services/payment.ts not implemented
|
|
177
|
-
The function exists in the interface but has no implementation body
|
|
178
|
-
Blocking factor: services/payment.ts - chargeCard function stub
|
|
179
|
-
|
|
180
|
-
2. Step & Implementation:
|
|
181
|
-
- Review services/payment.ts chargeCard function signature
|
|
182
|
-
- Implement full payment processing logic (charges, refunds, error handling)
|
|
183
|
-
- Add proper error handling and validation
|
|
184
|
-
- Write unit tests for charge scenarios
|
|
185
|
-
|
|
186
|
-
3. Acceptance & Verification:
|
|
187
|
-
- chargeCard function fully implemented
|
|
188
|
-
- Unit tests passing
|
|
189
|
-
- Function can be called from FEATURE-42 middleware
|
|
190
|
-
- FEATURE-42 parent task can proceed without blockers
|
|
191
149
|
```
|
|
192
150
|
|
|
193
|
-
**Execution Workflow:**
|
|
194
|
-
1. Agent picks blocker-fix task first (independent, no dependencies)
|
|
195
|
-
2. Implements `chargeCard` function
|
|
196
|
-
3. Completes blocker-fix task
|
|
197
|
-
4. Parent task FEATURE-42 becomes ready (fix completed)
|
|
198
|
-
5. Agent proceeds with FEATURE-42 execution
|
|
199
|
-
|
|
200
151
|
## 5. REPORT
|
|
201
152
|
Provide progress summary.
|
|
@@ -3,14 +3,15 @@ name: tech-affinity-scout
|
|
|
3
3
|
description: Scout best practices from similar tech projects.
|
|
4
4
|
arguments:
|
|
5
5
|
- name: tags
|
|
6
|
-
description: CSV tech tags (e.g., 'react, tailwind').
|
|
7
|
-
required:
|
|
6
|
+
description: CSV tech tags (e.g., 'react, tailwind').
|
|
7
|
+
required: true
|
|
8
8
|
agent: Tech Scout
|
|
9
|
+
version: "1.0.0"
|
|
10
|
+
category: planning
|
|
11
|
+
tags: [planning, patterns, memory, tech-affinity]
|
|
9
12
|
---
|
|
10
|
-
## 0. CONTEXT RESOLUTION
|
|
11
|
-
- **tags**: If provided, use directly. If omitted — detect from repo package files, file extensions, or active task tags.
|
|
12
13
|
|
|
13
|
-
Scout for relevant knowledge using
|
|
14
|
+
Scout for relevant knowledge using tags: [{{tags}}].
|
|
14
15
|
|
|
15
16
|
Steps:
|
|
16
17
|
1. **Search**: Call `memory-search` with `current_tags=[{{tags}}]`.
|
|
@@ -1,23 +1,54 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: technical-planning
|
|
3
|
-
description: Technical blueprint for new feature/product.
|
|
3
|
+
description: Technical blueprint for new feature/product, including full-roadmap execution planning.
|
|
4
4
|
arguments:
|
|
5
5
|
- name: objective
|
|
6
|
-
description: High-level goal.
|
|
7
|
-
required:
|
|
6
|
+
description: High-level goal.
|
|
7
|
+
required: true
|
|
8
8
|
agent: Technical Architect
|
|
9
|
+
version: "1.0.0"
|
|
10
|
+
license: Proprietary — Personal Use Only
|
|
11
|
+
category: workflows
|
|
12
|
+
type: Pipeline
|
|
13
|
+
complexity: Advanced
|
|
14
|
+
tags: [workflow, technical-planning]
|
|
15
|
+
author: vheins
|
|
9
16
|
---
|
|
10
|
-
## 0. CONTEXT RESOLUTION
|
|
11
|
-
- **objective**: If provided, use directly. If omitted — extract from the active `in_progress` task description, the most recent pending handoff summary, or the last user instruction in conversation context.
|
|
12
17
|
|
|
13
|
-
|
|
18
|
+
# Skill: Technical Planning Pipeline
|
|
14
19
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
2. **Architecture**: Components & data flow.
|
|
18
|
-
3. **Domain Model**: Entities, value objects, events.
|
|
19
|
-
4. **Database**: Normalized schema & relationships.
|
|
20
|
-
5. **API Contracts**: Requests, responses, errors.
|
|
21
|
-
6. **Execution**: Roadmap & phased delivery.
|
|
20
|
+
## Purpose
|
|
21
|
+
Produces a comprehensive technical blueprint (tech stack, architecture, domain, database, API contracts, execution plan).
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
## Input
|
|
24
|
+
| Variable | Type | Req | Description |
|
|
25
|
+
|----------|------|-----|-------------|
|
|
26
|
+
| `objective` | string | Yes | High-level goal |
|
|
27
|
+
|
|
28
|
+
## FSM
|
|
29
|
+
Entry: create-task → task-claim Exit: task-update completed|blocked
|
|
30
|
+
Guard: A(N) requires all prev A✅
|
|
31
|
+
|
|
32
|
+
A1 | tech-stack-selection | — | tech stack decision | —
|
|
33
|
+
A2 | architecture-design | A1✅ | architecture plan | design/architecture/
|
|
34
|
+
G1 | approve stack + arch | A2✅ | → proceed | —
|
|
35
|
+
A3 | domain-modeling | G1✅ | domain model | design/domain/
|
|
36
|
+
A4 | database-schema-planning | A3✅ | schema plan | design/database/
|
|
37
|
+
G2 | approve domain + db | A4✅ | → proceed | —
|
|
38
|
+
A5 | api-contract-design | G2✅ | API contract | design/api/
|
|
39
|
+
G3 | approve API contracts | A5✅ | → proceed | —
|
|
40
|
+
A6 | roadmap-creation + all sprint plans + MCP tasks | G3✅ | roadmap + sprint-1..sprint-N + allocation audit + MCP task tree | tasks/roadmap/ + tasks/sprints/ + local-memory-mcp
|
|
41
|
+
GF | final approve | A6✅ | → documentation | —
|
|
42
|
+
|
|
43
|
+
## Execution Planning Rule
|
|
44
|
+
A6 MUST cover the full delivery horizon. `sprint-planning` is per sprint, so A6 must derive `total_sprints` from roadmap timeline/capacity and generate one sprint-planning task for every sprint number from 1 through `total_sprints`. After sprint allocation audit passes, A6 must invoke `create-task` to create the Local Memory MCP task tree with parent/child and `depends_on` links. The final approval is blocked if only `sprint-1.md` exists while the roadmap contains later sprint-ready work, or if the MCP task tree was not created from the final sprint plans.
|
|
45
|
+
|
|
46
|
+
## Optional
|
|
47
|
+
A7 | capacity-planning | — | capacity plan | —
|
|
48
|
+
A8 | event-storming | — | domain discovery | —
|
|
49
|
+
A9 | dependency-mapping | — | dependency map | —
|
|
50
|
+
A10 | microservices-boundary | — | service boundaries | —
|
|
51
|
+
A11 | monolith-decomposition | — | migration plan | —
|
|
52
|
+
A12 | sla-slo-definition | — | SLA/SLO doc | —
|
|
53
|
+
A13 | system-design-review | — | review findings | —
|
|
54
|
+
A14 | tech-affinity-scout | — | best practices | —
|
|
@@ -3,6 +3,13 @@ name: tool-usage-guidelines
|
|
|
3
3
|
description: Tool usage standards & data integrity.
|
|
4
4
|
arguments: []
|
|
5
5
|
agent: System Architect
|
|
6
|
+
version: "1.0.0"
|
|
7
|
+
license: Proprietary — Personal Use Only
|
|
8
|
+
category: workflows
|
|
9
|
+
type: Utility
|
|
10
|
+
complexity: Beginner
|
|
11
|
+
tags: [workflow, tooling, memory, policy, mcp]
|
|
12
|
+
author: vheins
|
|
6
13
|
---
|
|
7
14
|
# Tool Usage Standards
|
|
8
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vheins/local-memory-mcp",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.4",
|
|
4
4
|
"description": "MCP Local Memory Service for coding copilot agents",
|
|
5
5
|
"mcpName": "io.github.vheins/local-memory-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"prettier": "^3.8.2",
|
|
79
79
|
"prettier-plugin-svelte": "^3.5.1",
|
|
80
80
|
"shx": "^0.4.0",
|
|
81
|
-
"svelte": "^5.55.
|
|
81
|
+
"svelte": "^5.55.9",
|
|
82
82
|
"svelte-check": "^4.4.6",
|
|
83
83
|
"svelte-eslint-parser": "^1.6.0",
|
|
84
84
|
"tsup": "^8.5.1",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"vitest": "^4.1.7"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
|
-
"protobufjs": "^7.5.
|
|
92
|
+
"protobufjs": "^7.5.8",
|
|
93
|
+
"brace-expansion": "^5.0.6"
|
|
93
94
|
}
|
|
94
95
|
}
|