You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: release v0.1.4 with comprehensive test coverage and enhanced error messages (#19)
* chore: release v0.1.4 with comprehensive test coverage and enhanced error messages
* Added 26 new tests, increasing overall code coverage from ~78% to ~86%, with a focus on cache cleanup, parameter validation, and error handling.
* Improved error messages across all MCP tools to provide actionable guidance and context for users.
* Fixed version inconsistencies in documentation and codebase to ensure alignment with package.json version 0.1.4.
* Introduced a Code of Conduct to promote a respectful and inclusive community environment.
* Added a roadmap for future enhancements and features to guide project development.
- Example improvement: "context_main.json not found" → "context_main.json not found in /path/to/project. This file is required for comparison but hasn't been generated yet. Options: (1) Run logicstamp_refresh_snapshot first to generate context files, (2) Use forceRegenerate: true in this call to regenerate automatically before comparing, (3) Run 'stamp context' manually from the project directory."
44
+
45
+
-**Code of Conduct** - Added Contributor Covenant Code of Conduct to establish community standards and promote a respectful, inclusive environment
46
+
- Available at [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)
47
+
48
+
-**Roadmap** - Added roadmap document outlining planned enhancements and future features to guide project development
49
+
- Available at [`ROADMAP.md`](ROADMAP.md)
50
+
51
+
### Fixed
52
+
53
+
-**Version Consistency** - Fixed version mismatches across codebase to ensure all version references match `package.json`
54
+
-**README.md** - Updated version badge from `0.1.2` to `0.1.4`
55
+
-**src/mcp/server.ts** - Updated server version from `0.1.2` to `0.1.4` (was incorrectly `0.1.2` for version `0.1.3`)
56
+
-**docs/mcp_integration.md** - Updated example config version from `0.1.2` to `0.1.4`
57
+
- All version references now consistently match `package.json` version `0.1.4`
58
+
- Prevents confusion when users check version information across different sources
59
+
8
60
## [0.1.3] - 2026-01-13
9
61
10
62
### Changed
@@ -170,6 +222,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170
222
- Requires `logicstamp-context` CLI to be installed globally (`npm install -g logicstamp-context`)
171
223
- All tools are read-only - they analyze but never modify your codebase
We pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
6
+
7
+
We commit to acting in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+
## Scope
10
+
11
+
This Code of Conduct applies to all official community spaces (GitHub issues, pull requests, discussions) and when officially representing the community in public spaces.
12
+
13
+
## Enforcement
14
+
15
+
The project maintainer(s) are responsible for enforcing these standards, and additional moderators may be designated as the project grows.
16
+
They may remove, edit, or reject contributions that violate this Code of Conduct and will communicate moderation decisions when appropriate.
17
+
18
+
**Reporting:** Report violations to logicstamp.dev@gmail.com. All complaints will be reviewed promptly and fairly. Reporter privacy will be respected.
19
+
20
+
**Enforcement Guidelines:**
21
+
22
+
1.**Correction** - Inappropriate language or unprofessional behavior
23
+
- Private written warning with explanation; public apology may be requested
24
+
25
+
2.**Warning** - Single incident or series of violations
26
+
- Warning with consequences; no interaction with involved parties for a specified period; violation may lead to ban
27
+
28
+
3.**Temporary Ban** - Serious or sustained violations
29
+
- Temporary ban from all community interaction; no contact with involved parties; violation may lead to permanent ban
30
+
31
+
4.**Permanent Ban** - Pattern of violations, harassment, or aggression toward individuals or groups
32
+
- Permanent ban from all community interaction
33
+
34
+
## Attribution
35
+
36
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
37
+
38
+
Enforcement guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
39
+
40
+
For answers to common questions, see [https://www.contributor-covenant.org/faq][FAQ].
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
Thank you for your interest in contributing! This guide will help you get started.
4
4
5
+
## Code of Conduct
6
+
7
+
This project adheres to a [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to logicstamp.dev@gmail.com.
8
+
5
9
## Development Setup
6
10
7
11
### Prerequisites
@@ -199,7 +203,7 @@ If you already ran `npm link` during installation (see [Installation](#installat
199
203
2.**Verify it's linked:**
200
204
```bash
201
205
npm list -g logicstamp-mcp
202
-
# Should show: logicstamp-mcp@0.1.2 -> /path/to/logicstamp-mcp
206
+
# Should show: logicstamp-mcp@0.1.4 -> /path/to/logicstamp-mcp
203
207
```
204
208
205
209
3.**Your MCP clients will automatically use the local version** if they're configured with `npx logicstamp-mcp` (which is the standard configuration). No additional configuration needed!
@@ -415,9 +419,6 @@ When adding features, update:
415
419
- Configuration file support
416
420
- Multiple project support
417
421
418
-
## Code of Conduct
419
-
420
-
Be respectful, inclusive, and constructive in all interactions.
0 commit comments