cullit 1.9.1 → 1.9.2
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/README.md +62 -62
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
# cullit CLI
|
|
2
|
-
|
|
3
|
-
AI-powered release notes from your terminal.
|
|
4
|
-
|
|
5
|
-
`cullit` reads your git history (and optionally Jira/Linear context), then generates and publishes release notes to the channels your team already uses.
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
# one-off
|
|
11
|
-
npx cullit generate --from v1.0.0 --to v1.1.0
|
|
12
|
-
|
|
13
|
-
# global
|
|
14
|
-
npm install -g cullit
|
|
15
|
-
|
|
16
|
-
# dev dependency
|
|
17
|
-
npm install -D cullit
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Quick Start
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
# initialize .cullit.yml
|
|
24
|
-
cullit init
|
|
25
|
-
|
|
26
|
-
# generate between refs
|
|
27
|
-
cullit generate --from v1.0.0 --to v1.1.0
|
|
28
|
-
|
|
29
|
-
# autodetect last two tags
|
|
30
|
-
cullit generate
|
|
31
|
-
|
|
32
|
-
# no AI key needed (template mode)
|
|
33
|
-
cullit generate --from HEAD~10 --provider none
|
|
34
|
-
|
|
35
|
-
# select a named template profile from .cullit.yml
|
|
36
|
-
cullit generate --from v1.8.0 --template customer-facing
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## Common Flags
|
|
40
|
-
|
|
41
|
-
- `--from <ref>` source git ref / tag / query
|
|
42
|
-
- `--to <ref>` target ref (defaults to `HEAD`)
|
|
43
|
-
- `--provider <name>` `anthropic|openai|gemini|ollama|openclaw|none`
|
|
44
|
-
- `--model <id>` override model
|
|
45
|
-
- `--audience <type>` tune output for `developer|end-user|executive`
|
|
46
|
-
- `--tone <style>` tone controls for generated output
|
|
47
|
-
- `--format <fmt>` output format
|
|
48
|
-
- `--template <name>` select named template profile from config
|
|
49
|
-
- `--quiet` minimal logs
|
|
50
|
-
- `--verbose` detailed logs
|
|
51
|
-
|
|
52
|
-
## Docs
|
|
53
|
-
|
|
54
|
-
- Full docs: https://cullit.io/docs
|
|
55
|
-
- Tutorial: https://cullit.io/tutorial
|
|
56
|
-
- Pricing: https://cullit.io/pricing
|
|
57
|
-
|
|
58
|
-
## Source and Issues
|
|
59
|
-
|
|
60
|
-
- Repository: https://github.com/mttaylor/cullit
|
|
61
|
-
- Issues: https://github.com/mttaylor/cullit/issues
|
|
62
|
-
- Security: see `SECURITY.md` in the repository
|
|
1
|
+
# cullit CLI
|
|
2
|
+
|
|
3
|
+
AI-powered release notes from your terminal.
|
|
4
|
+
|
|
5
|
+
`cullit` reads your git history (and optionally Jira/Linear context), then generates and publishes release notes to the channels your team already uses.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# one-off
|
|
11
|
+
npx cullit generate --from v1.0.0 --to v1.1.0
|
|
12
|
+
|
|
13
|
+
# global
|
|
14
|
+
npm install -g cullit
|
|
15
|
+
|
|
16
|
+
# dev dependency
|
|
17
|
+
npm install -D cullit
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Quick Start
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# initialize .cullit.yml
|
|
24
|
+
cullit init
|
|
25
|
+
|
|
26
|
+
# generate between refs
|
|
27
|
+
cullit generate --from v1.0.0 --to v1.1.0
|
|
28
|
+
|
|
29
|
+
# autodetect last two tags
|
|
30
|
+
cullit generate
|
|
31
|
+
|
|
32
|
+
# no AI key needed (template mode)
|
|
33
|
+
cullit generate --from HEAD~10 --provider none
|
|
34
|
+
|
|
35
|
+
# select a named template profile from .cullit.yml
|
|
36
|
+
cullit generate --from v1.8.0 --template customer-facing
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Common Flags
|
|
40
|
+
|
|
41
|
+
- `--from <ref>` source git ref / tag / query
|
|
42
|
+
- `--to <ref>` target ref (defaults to `HEAD`)
|
|
43
|
+
- `--provider <name>` `anthropic|openai|gemini|ollama|openclaw|none`
|
|
44
|
+
- `--model <id>` override model
|
|
45
|
+
- `--audience <type>` tune output for `developer|end-user|executive`
|
|
46
|
+
- `--tone <style>` tone controls for generated output
|
|
47
|
+
- `--format <fmt>` output format
|
|
48
|
+
- `--template <name>` select named template profile from config
|
|
49
|
+
- `--quiet` minimal logs
|
|
50
|
+
- `--verbose` detailed logs
|
|
51
|
+
|
|
52
|
+
## Docs
|
|
53
|
+
|
|
54
|
+
- Full docs: https://cullit.io/docs
|
|
55
|
+
- Tutorial: https://cullit.io/tutorial
|
|
56
|
+
- Pricing: https://cullit.io/pricing
|
|
57
|
+
|
|
58
|
+
## Source and Issues
|
|
59
|
+
|
|
60
|
+
- Repository: https://github.com/mttaylor/cullit
|
|
61
|
+
- Issues: https://github.com/mttaylor/cullit/issues
|
|
62
|
+
- Security: see `SECURITY.md` in the repository
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cullit",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Cull the noise from your releases. AI-powered release notes from the CLI.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"node": ">=18"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@cullit/core": "1.9.
|
|
34
|
-
"@cullit/config": "1.9.
|
|
33
|
+
"@cullit/core": "1.9.2",
|
|
34
|
+
"@cullit/config": "1.9.2"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsup src/index.ts --format esm --clean",
|