it-tools-mcp 3.0.22 → 3.0.23

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.
Files changed (2) hide show
  1. package/README.md +39 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -256,7 +256,45 @@ src/
256
256
 
257
257
  ## 🤝 Contributing
258
258
 
259
- Contributions welcome! Please submit a Pull Request.
259
+ Contributions are welcome! Please follow the guidelines below:
260
+
261
+ ### Commit Message Format
262
+
263
+ This project uses **Conventional Commits** for clear, consistent commit messages.
264
+
265
+ **Version Management:**
266
+ - 🔧 **Manual version bumping** - Update `package.json` when you want to release
267
+ - 🤖 **Automatic publishing** - CI/CD detects changes and publishes automatically
268
+ - 🏷️ **Git tags** - Created automatically based on package.json version
269
+
270
+ **Examples:**
271
+ ```bash
272
+ git commit -m "feat: add new encryption tool"
273
+ git commit -m "fix: resolve base64 decoding issue"
274
+ git commit -m "docs: improve README examples"
275
+
276
+ # When ready to release, update package.json:
277
+ npm version patch # or minor, major
278
+ git commit -m "chore: bump version to v1.2.3"
279
+ git push
280
+ ```
281
+
282
+ 📖 See [COMMIT_TEMPLATE_SETUP.md](COMMIT_TEMPLATE_SETUP.md) for setup instructions.
283
+
284
+ ### Development Process
285
+
286
+ 1. Fork the repository
287
+ 2. Run `./setup-commit-template.sh` (recommended)
288
+ 3. Create a feature branch
289
+ 4. Make your changes following the project structure
290
+ 5. Use conventional commit messages
291
+ 6. Submit a Pull Request
292
+
293
+ The CI/CD pipeline will automatically:
294
+ - ✅ Build and test your changes
295
+ - 🏷️ Bump version based on commit messages (on merge to main)
296
+ - 📦 Publish to Docker Hub and NPM
297
+ - 🚀 Create GitHub releases
260
298
 
261
299
  ## 📄 License
262
300
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it-tools-mcp",
3
- "version": "3.0.22",
3
+ "version": "3.0.23",
4
4
  "description": "MCP server providing access to various IT tools and utilities for developers",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",