maiass 5.10.5 → 5.10.6
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/CODE_OF_CONDUCT.md +27 -0
- package/CONTRIBUTING.md +38 -0
- package/package.json +3 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We are committed to making participation in this project a respectful and harassment-free experience for everyone.
|
|
6
|
+
|
|
7
|
+
## Our Standards
|
|
8
|
+
|
|
9
|
+
Expected behaviour:
|
|
10
|
+
- Be respectful and constructive in all interactions
|
|
11
|
+
- Accept feedback gracefully
|
|
12
|
+
- Focus on what is best for the project and its users
|
|
13
|
+
|
|
14
|
+
Unacceptable behaviour:
|
|
15
|
+
- Harassment, insults, or personal attacks of any kind
|
|
16
|
+
- Trolling or deliberately disruptive behaviour
|
|
17
|
+
- Publishing others' private information without consent
|
|
18
|
+
|
|
19
|
+
## Enforcement
|
|
20
|
+
|
|
21
|
+
Instances of unacceptable behaviour may be reported by contacting the maintainer at [mark@pottie.com](mailto:mark@pottie.com). All reports will be reviewed and responded to.
|
|
22
|
+
|
|
23
|
+
Maintainers reserve the right to remove, edit, or reject comments, commits, and other contributions that violate this code of conduct.
|
|
24
|
+
|
|
25
|
+
## Attribution
|
|
26
|
+
|
|
27
|
+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.1.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Contributing to MAIASS
|
|
2
|
+
|
|
3
|
+
Thanks for your interest in contributing!
|
|
4
|
+
|
|
5
|
+
## Reporting Issues
|
|
6
|
+
|
|
7
|
+
- Search [existing issues](https://github.com/vsmash/nodemaiass/issues) before opening a new one
|
|
8
|
+
- Include your OS, Node.js version, and `maiass --version` output
|
|
9
|
+
- For bugs, include the full error output and the command you ran
|
|
10
|
+
|
|
11
|
+
## Pull Requests
|
|
12
|
+
|
|
13
|
+
1. Fork the repo and create a branch from `develop`
|
|
14
|
+
2. Make your changes following the code style below
|
|
15
|
+
3. Add or update tests if relevant (`npm run test:unit`)
|
|
16
|
+
4. Ensure all tests pass (`npm run test:unit && npm test`)
|
|
17
|
+
5. Submit a PR against `develop` — not `main`
|
|
18
|
+
|
|
19
|
+
## Code Style
|
|
20
|
+
|
|
21
|
+
- ES modules (`import`/`export`, `.js` extensions)
|
|
22
|
+
- No comments unless the *why* is non-obvious
|
|
23
|
+
- No new dependencies without discussion
|
|
24
|
+
|
|
25
|
+
## Development Setup
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
git clone https://github.com/vsmash/nodemaiass.git
|
|
29
|
+
cd nodemaiass
|
|
30
|
+
npm install
|
|
31
|
+
node maiass.mjs --help
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
See [docs/development.md](docs/development.md) for full details.
|
|
35
|
+
|
|
36
|
+
## Questions
|
|
37
|
+
|
|
38
|
+
Open a [GitHub Discussion](https://github.com/vsmash/nodemaiass/discussions) or file an issue.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maiass",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.10.
|
|
4
|
+
"version": "5.10.6",
|
|
5
5
|
"description": "AI commit message generator, semantic versioning, and changelog automation for Git. One command stages, commits with AI, bumps version, and merges branches. Free credits on install — no sign-up needed.",
|
|
6
6
|
"main": "maiass.mjs",
|
|
7
7
|
"bin": {
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
"maiass.mjs",
|
|
25
25
|
"setup-env.js",
|
|
26
26
|
"README.md",
|
|
27
|
+
"CONTRIBUTING.md",
|
|
28
|
+
"CODE_OF_CONDUCT.md",
|
|
27
29
|
"LICENSE"
|
|
28
30
|
],
|
|
29
31
|
"engines": {
|