Skip to content

Commit 06ba475

Browse files
committed
feat: local updates before sync (v2.0.0 prep)
1 parent fd467d6 commit 06ba475

26 files changed

Lines changed: 5270 additions & 714 deletions
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
name: 🐛 Bug Report
3+
about: Report something that is not working correctly
4+
title: "[BUG] "
5+
labels: bug
6+
---
7+
8+
## 📝 Description
9+
10+
What happened?
11+
12+
---
13+
14+
## 🎯 Expected Behavior
15+
16+
What should have happened?
17+
18+
---
19+
20+
## ❌ Actual Behavior
21+
22+
What actually happened?
23+
24+
---
25+
26+
## 🔁 Steps to Reproduce
27+
28+
1.
29+
2.
30+
3.
31+
32+
---
33+
34+
## 🧠 MCP Context
35+
36+
- Agent:
37+
- Tools used:
38+
- Memory server running: (Yes/No)
39+
- Errors:
40+
41+
---
42+
43+
## 🏗 System Area
44+
45+
- [ ] Memory
46+
- [ ] Tasks
47+
- [ ] Agents
48+
- [ ] Messaging
49+
- [ ] Project Map
50+
51+
---
52+
53+
## 💻 Environment
54+
55+
- OS:
56+
- Node.js:
57+
- MongoDB:
58+
59+
---
60+
61+
## 📜 Logs
62+
63+
```
64+
(paste logs)
65+
```
66+
67+
---
68+
69+
## 📂 Affected Files
70+
71+
-
72+
73+
---
74+
75+
## 📎 Additional Context
76+
77+
Anything else?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 💬 Discussions
4+
url: https://github.com/your-repo/discussions
5+
about: Ask questions or discuss ideas here
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: ✨ Feature Request
3+
about: Suggest a new feature or improvement
4+
title: "[FEATURE] "
5+
labels: enhancement
6+
---
7+
8+
## 🚀 Feature Description
9+
10+
What do you want to add?
11+
12+
---
13+
14+
## 🎯 Problem It Solves
15+
16+
Why is this needed?
17+
18+
---
19+
20+
## 🧠 Proposed Solution
21+
22+
How should it work?
23+
24+
---
25+
26+
## 🔄 Alternatives Considered
27+
28+
Other approaches?
29+
30+
---
31+
32+
## 🏗 System Impact
33+
34+
- [ ] Memory
35+
- [ ] Tasks
36+
- [ ] Agents
37+
- [ ] Messaging
38+
- [ ] Project Map
39+
40+
---
41+
42+
## 📎 Additional Context
43+
44+
Examples, diagrams, references
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
name: 🌱 First Contribution
3+
about: Help new contributors get started
4+
title: "[GOOD FIRST ISSUE] "
5+
labels: good first issue
6+
---
7+
8+
## 👋 Welcome!
9+
10+
Thanks for your interest in contributing!
11+
12+
---
13+
14+
## 🧩 Task Description
15+
16+
What needs to be done?
17+
18+
---
19+
20+
## 🎯 Goal
21+
22+
What should the final outcome look like?
23+
24+
---
25+
26+
## 📂 Suggested Files
27+
28+
-
29+
30+
---
31+
32+
## 🧠 System Context
33+
34+
This project is a **multi-agent MCP system**.
35+
36+
Relevant areas:
37+
38+
- [ ] Memory
39+
- [ ] Tasks
40+
- [ ] Agents
41+
- [ ] Messaging
42+
- [ ] Project Map
43+
44+
---
45+
46+
## 🛠 Steps to Start
47+
48+
1. Fork the repo
49+
2. Clone locally
50+
3. Run:
51+
```bash
52+
npm install
53+
npm start
54+
````
55+
56+
4. Explore the code
57+
58+
---
59+
60+
## 💡 Tips
61+
62+
* Keep changes small
63+
* Follow existing patterns
64+
* Avoid breaking MCP protocol (stdout rules)
65+
66+
---
67+
68+
## 🙌 Need Help?
69+
70+
Comment here — guidance will be provided.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
name: 🤖 MCP / Agent Behavior Issue
3+
about: Issues related to agent coordination, MCP tools, or system behavior
4+
title: "[MCP] "
5+
labels: mcp
6+
---
7+
8+
## 🧠 Description
9+
10+
What behavior is incorrect?
11+
12+
---
13+
14+
## 🔁 Scenario
15+
16+
Describe what the agent did:
17+
18+
---
19+
20+
## ❌ Problem
21+
22+
What went wrong?
23+
24+
---
25+
26+
## 🎯 Expected Behavior
27+
28+
What should the system/agent do?
29+
30+
---
31+
32+
## 🧩 System Context
33+
34+
- Tasks involved:
35+
- Messages involved:
36+
- Agent(s):
37+
- Project map relevance:
38+
39+
---
40+
41+
## 📜 MCP Tool Usage
42+
43+
- search_context:
44+
- store_context:
45+
- fetch_tasks:
46+
- request_messages:
47+
48+
---
49+
50+
## ⚠️ Errors
51+
52+
Any MCP errors?
53+
54+
---
55+
56+
## 💡 Notes
57+
58+
Anything else?

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
# 🚀 Pull Request — Local MCP Memory Server
2+
3+
## 📌 Summary
4+
5+
Briefly describe what this PR does.
6+
7+
- What was added/changed/fixed?
8+
- Why is this needed?
9+
10+
---
11+
12+
## 🔍 Type of Change
13+
14+
Select all that apply:
15+
16+
- [ ] 🐛 Bug fix
17+
- [ ] ✨ New feature
18+
- [ ] ⚡ Performance improvement
19+
- [ ] ♻️ Refactor
20+
- [ ] 📚 Documentation update
21+
- [ ] 🔥 Breaking change
22+
23+
---
24+
25+
## 🧠 Context
26+
27+
Explain the problem or motivation behind this PR.
28+
29+
- What issue does this solve?
30+
- Any related issues?
31+
32+
Closes: #
33+
34+
---
35+
36+
## 🏗 System Impact (IMPORTANT for v2+)
37+
38+
Does this affect:
39+
40+
- [ ] Memory system
41+
- [ ] Task system
42+
- [ ] Agent system
43+
- [ ] Messaging system
44+
- [ ] Project Map
45+
- [ ] MCP protocol behavior
46+
47+
Explain impact:
48+
49+
---
50+
51+
## 🔄 Changes Made
52+
53+
List key changes:
54+
55+
-
56+
-
57+
-
58+
59+
---
60+
61+
## 🧪 Testing
62+
63+
How was this tested?
64+
65+
- [ ] Manual testing
66+
- [ ] MCP tools tested
67+
- [ ] Edge cases considered
68+
69+
Steps:
70+
71+
1.
72+
2.
73+
3.
74+
75+
---
76+
77+
## ⚠️ Breaking Changes
78+
79+
- [ ] Yes
80+
- [ ] No
81+
82+
If yes, explain:
83+
84+
---
85+
86+
## 📸 Screenshots / Logs (if applicable)
87+
```
88+
(paste logs or screenshots)
89+
```
90+
91+
---
92+
93+
## 📂 Affected Files
94+
95+
-
96+
-
97+
-
98+
99+
---
100+
101+
## ✅ Checklist
102+
103+
Before submitting:
104+
105+
- [ ] Code follows project structure
106+
- [ ] No unnecessary complexity added
107+
- [ ] No console logs affecting MCP stdout
108+
- [ ] Tested with MCP tools
109+
- [ ] No duplicate logic introduced
110+
111+
---
112+
113+
## 🤝 Notes for Reviewers
114+
115+
Anything specific you want reviewers to focus on?
116+
117+
---
118+
119+
## 🧠 Final Note
120+
121+
This project operates as a **multi-agent system**.
122+
123+
Ensure:
124+
- no duplication of logic
125+
- coordination compatibility
126+
- system-wide consistency

0 commit comments

Comments
 (0)