cullit 1.10.1 → 1.11.1

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 CHANGED
@@ -54,7 +54,7 @@ cullit generate --from v1.8.0 --provider none --template customer-facing
54
54
 
55
55
  - `--from <ref>` source git ref / tag / query
56
56
  - `--to <ref>` target ref (defaults to `HEAD`)
57
- - `--provider <name>` `anthropic|openai|gemini|ollama|openclaw|none`
57
+ - `--provider <name>` `anthropic|openai|gemini|ollama|none`
58
58
  - `--model <id>` override model
59
59
  - `--audience <type>` tune output for `developer|end-user|executive`
60
60
  - `--tone <style>` tone controls for generated output
package/dist/index.js CHANGED
@@ -50,7 +50,7 @@ var HELP = `
50
50
  --format Output format: markdown, html, html-dark, html-minimal, html-edgy, json
51
51
  --template Template profile name from config.templates
52
52
  --dry-run Generate but don't publish
53
- --provider Override AI provider (anthropic, openai, gemini, ollama, openclaw, none)
53
+ --provider Override AI provider (anthropic, openai, gemini, ollama, none)
54
54
  --source Override source type (local, jira, linear, gitlab, bitbucket)
55
55
  --audience Override audience (developer, end-user, executive)
56
56
  --tone Override tone (professional, casual, terse, edgy, hype, snarky)
@@ -297,7 +297,7 @@ async function interactiveInit() {
297
297
  const VALID_TONES = TONES;
298
298
  const VALID_ENRICHMENTS = ["jira", "linear", "both", "none"];
299
299
  console.log("\n Cullit \u2014 Project Setup\n");
300
- const provider = await ask(rl, " AI provider (anthropic/openai/gemini/ollama/openclaw/none) [none]: ") || "none";
300
+ const provider = await ask(rl, " AI provider (anthropic/openai/gemini/ollama/none) [none]: ") || "none";
301
301
  if (!VALID_PROVIDERS.includes(provider)) {
302
302
  console.error(`
303
303
  \u2717 Invalid provider: ${provider}. Must be one of: ${VALID_PROVIDERS.join(", ")}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cullit",
3
- "version": "1.10.1",
3
+ "version": "1.11.1",
4
4
  "type": "module",
5
5
  "description": "Public Cullit CLI for local, template-based release notes. Licensed AI and integrations are delivered separately.",
6
6
  "license": "MIT",
@@ -34,8 +34,8 @@
34
34
  "node": ">=22"
35
35
  },
36
36
  "dependencies": {
37
- "@cullit/config": "1.10.1",
38
- "@cullit/core": "1.10.1"
37
+ "@cullit/core": "1.11.1",
38
+ "@cullit/config": "1.11.1"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "tsup src/index.ts --format esm --clean",