@eldrforge/kodrdriv 0.0.14 → 0.0.17

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 (84) hide show
  1. package/README.md +1 -9
  2. package/dist/arguments.js +306 -55
  3. package/dist/arguments.js.map +1 -1
  4. package/dist/audio/devices.js +284 -0
  5. package/dist/audio/devices.js.map +1 -0
  6. package/dist/audio/index.js +31 -0
  7. package/dist/audio/index.js.map +1 -0
  8. package/dist/audio/processor.js +766 -0
  9. package/dist/audio/processor.js.map +1 -0
  10. package/dist/audio/types.js +16 -0
  11. package/dist/audio/types.js.map +1 -0
  12. package/dist/audio/validation.js +35 -0
  13. package/dist/audio/validation.js.map +1 -0
  14. package/dist/commands/audio-commit.js +64 -248
  15. package/dist/commands/audio-commit.js.map +1 -1
  16. package/dist/commands/audio-review.js +90 -701
  17. package/dist/commands/audio-review.js.map +1 -1
  18. package/dist/commands/commit.js +18 -18
  19. package/dist/commands/commit.js.map +1 -1
  20. package/dist/commands/release.js +14 -15
  21. package/dist/commands/release.js.map +1 -1
  22. package/dist/commands/review.js +152 -0
  23. package/dist/commands/review.js.map +1 -0
  24. package/dist/commands/select-audio.js +265 -0
  25. package/dist/commands/select-audio.js.map +1 -0
  26. package/dist/constants.js +86 -68
  27. package/dist/constants.js.map +1 -1
  28. package/dist/content/diff.js +155 -1
  29. package/dist/content/diff.js.map +1 -1
  30. package/dist/content/issues.js +256 -0
  31. package/dist/content/issues.js.map +1 -0
  32. package/dist/content/releaseNotes.js +90 -0
  33. package/dist/content/releaseNotes.js.map +1 -0
  34. package/dist/main.js +9 -2
  35. package/dist/main.js.map +1 -1
  36. package/dist/prompt/instructions/commit.md +18 -15
  37. package/dist/prompt/instructions/release.md +6 -5
  38. package/dist/prompt/instructions/{audio-review.md → review.md} +24 -18
  39. package/dist/prompt/prompts.js +87 -19
  40. package/dist/prompt/prompts.js.map +1 -1
  41. package/dist/types.js +27 -3
  42. package/dist/types.js.map +1 -1
  43. package/dist/util/general.js +7 -1
  44. package/dist/util/general.js.map +1 -1
  45. package/dist/util/openai.js +34 -3
  46. package/dist/util/openai.js.map +1 -1
  47. package/dist/util/stdin.js +61 -0
  48. package/dist/util/stdin.js.map +1 -0
  49. package/package.json +6 -6
  50. package/.kodrdriv/config.yaml +0 -20
  51. package/.kodrdriv/context/content.md +0 -7
  52. package/RELEASE_NOTES.md +0 -14
  53. package/docs/index.html +0 -17
  54. package/docs/package.json +0 -36
  55. package/docs/pnpm-lock.yaml +0 -3441
  56. package/docs/public/README.md +0 -132
  57. package/docs/public/advanced-usage.md +0 -188
  58. package/docs/public/code-icon.svg +0 -4
  59. package/docs/public/commands.md +0 -116
  60. package/docs/public/configuration.md +0 -274
  61. package/docs/public/examples.md +0 -352
  62. package/docs/public/kodrdriv-logo.svg +0 -62
  63. package/docs/src/App.css +0 -387
  64. package/docs/src/App.tsx +0 -60
  65. package/docs/src/components/DocumentPage.tsx +0 -56
  66. package/docs/src/components/ErrorMessage.tsx +0 -15
  67. package/docs/src/components/LoadingSpinner.tsx +0 -14
  68. package/docs/src/components/MarkdownRenderer.tsx +0 -56
  69. package/docs/src/components/Navigation.css +0 -73
  70. package/docs/src/components/Navigation.tsx +0 -36
  71. package/docs/src/index.css +0 -61
  72. package/docs/src/main.tsx +0 -10
  73. package/docs/src/test/setup.ts +0 -1
  74. package/docs/src/vite-env.d.ts +0 -10
  75. package/docs/tsconfig.node.json +0 -13
  76. package/docs/vite.config.ts +0 -15
  77. package/docs/vitest.config.ts +0 -15
  78. package/eslint.config.mjs +0 -83
  79. package/nodemon.json +0 -14
  80. package/output/kodrdriv/250701-1442-release-notes.md +0 -3
  81. package/pnpm-workspace.yaml +0 -5
  82. package/tsconfig.tsbuildinfo +0 -1
  83. package/vite.config.ts +0 -90
  84. package/vitest.config.ts +0 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eldrforge/kodrdriv",
3
- "version": "0.0.14",
3
+ "version": "0.0.17",
4
4
  "description": "Create Intelligent Release Notes or Change Logs from Git",
5
5
  "main": "dist/main.js",
6
6
  "type": "module",
@@ -35,16 +35,16 @@
35
35
  "openai": "^5.8.2",
36
36
  "shell-escape": "^0.2.0",
37
37
  "winston": "^3.17.0",
38
- "zod": "^3.25.67"
38
+ "zod": "^3.25.69"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@eslint/eslintrc": "^3.3.1",
42
- "@eslint/js": "^9.30.0",
42
+ "@eslint/js": "^9.30.1",
43
43
  "@rollup/plugin-replace": "^6.0.2",
44
44
  "@swc/core": "^1.12.9",
45
45
  "@types/js-yaml": "^4.0.9",
46
46
  "@types/luxon": "^3.6.2",
47
- "@types/node": "^24.0.8",
47
+ "@types/node": "^24.0.10",
48
48
  "@types/shell-escape": "^0.2.3",
49
49
  "@types/winston": "^2.4.4",
50
50
  "@typescript-eslint/eslint-plugin": "^8.35.1",
@@ -52,7 +52,7 @@
52
52
  "@vitest/coverage-v8": "^3.2.4",
53
53
  "copyfiles": "^2.4.1",
54
54
  "esbuild": "0.25.5",
55
- "eslint": "^9.30.0",
55
+ "eslint": "^9.30.1",
56
56
  "eslint-plugin-import": "^2.32.0",
57
57
  "globals": "^16.3.0",
58
58
  "mockdate": "^3.0.5",
@@ -60,7 +60,7 @@
60
60
  "rollup-plugin-visualizer": "^6.0.3",
61
61
  "typescript": "^5.8.3",
62
62
  "vite": "^7.0.0",
63
- "vite-plugin-node": "^5.0.1",
63
+ "vite-plugin-node": "^7.0.0",
64
64
  "vitest": "^3.2.4"
65
65
  },
66
66
  "scripts": {
@@ -1,20 +0,0 @@
1
- verbose: false
2
- model: gpt-4.1
3
- contextDirectories:
4
- - .kodrdriv/context
5
- commit:
6
- add: true
7
- cached: true
8
- sendit: true
9
- release:
10
- from: main
11
- to: HEAD
12
- publish:
13
- mergeMethod: squash
14
- dependencyUpdatePatterns: ["@theunwalked/*", "@riotprompt/*"]
15
- requiredEnvVars: ["NODE_AUTH_TOKEN"]
16
- link:
17
- scopeRoots:
18
- "@theunwalked": "../../SemicolonAmbulance"
19
- "@riotprompt": "../../StJustReckoning"
20
- workspaceFile: "pnpm-workspace.yaml"
@@ -1,7 +0,0 @@
1
- KodrDriv is a tool that is designed to help automate the creation of commit messages and release notes. It is also a tool that has been designed to support an opinionated approach to organizing related projects and conducting structured releases with Git. This initial version focuses on pnpm and GitHub, but there are plans to expand coverage over time.
2
-
3
- KodrDriv is available as an module on npmjs.org under @eldrforge/kodrdriv
4
-
5
- The name sometimes sounds like "Coder Driv" or "Coder Riv" but that should be corrected to "KodrDriv"
6
-
7
- Same with the name of the scope "Elder Forge" or "Elderforth" should be corrected to "Edlrforge"
package/RELEASE_NOTES.md DELETED
@@ -1,14 +0,0 @@
1
- This release updates workspace management and CI deployment for projects using pnpm with an opinionated structure. The changes restore explicit workspace scoping and local package link overrides, improving multi-package development while streamlining documentation deployment.
2
-
3
- **Improvements**
4
-
5
- * Restored exclusions for the `docs` directory and local dependency overrides in `pnpm-workspace.yaml` to clarify project boundaries and enable local development workflows for core packages.
6
- * Simplified the `deploy-docs.yml` workflow by removing temporary renaming of the workspace file; documentation builds and deployments now work directly with the refined workspace configuration.
7
-
8
- **Why these changes matter:**
9
-
10
- * Empower clearer separation between core packages and documentation in the monorepo setup.
11
- * Align local development processes and CI deployment behavior.
12
- * Reduce special-casing and ad-hoc workarounds in documentation workflows.
13
-
14
- _No breaking changes or new features are introduced for end users._
package/docs/index.html DELETED
@@ -1,17 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
-
4
- <head>
5
- <meta charset="UTF-8" />
6
- <link rel="icon" type="image/svg+xml" href="/code-icon.svg" />
7
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
- <title>🚀 KodrDriv - Intelligent Git Release Notes</title>
9
- <meta name="description" content="Create Intelligent Release Notes and Change Logs from Git using AI">
10
- </head>
11
-
12
- <body>
13
- <div id="root"></div>
14
- <script type="module" src="/src/main.tsx"></script>
15
- </body>
16
-
17
- </html>
package/docs/package.json DELETED
@@ -1,36 +0,0 @@
1
- {
2
- "name": "kodrdriv-docs",
3
- "private": true,
4
- "version": "0.0.0",
5
- "type": "module",
6
- "scripts": {
7
- "dev": "vite",
8
- "build": "tsc && vite build",
9
- "preview": "vite preview",
10
- "test": "vitest run --coverage",
11
- "test:watch": "vitest --watch"
12
- },
13
- "dependencies": {
14
- "react": "^19.1.0",
15
- "react-dom": "^19.1.0",
16
- "react-markdown": "^10.1.0",
17
- "react-router-dom": "^7.6.3",
18
- "react-syntax-highlighter": "^15.6.1",
19
- "remark-gfm": "^4.0.1"
20
- },
21
- "devDependencies": {
22
- "@testing-library/jest-dom": "^6.6.3",
23
- "@testing-library/react": "^16.3.0",
24
- "@testing-library/user-event": "^14.6.1",
25
- "@types/react": "^19.1.8",
26
- "@types/react-dom": "^19.1.6",
27
- "@types/react-syntax-highlighter": "^15.5.13",
28
- "@vitejs/plugin-react": "^4.6.0",
29
- "@vitest/coverage-v8": "^3.2.4",
30
- "@vitest/ui": "^3.2.4",
31
- "jsdom": "^26.1.0",
32
- "typescript": "^5.8.3",
33
- "vite": "^7.0.0",
34
- "vitest": "^3.2.4"
35
- }
36
- }