@denisvieiradev/gitwise-core 0.1.0
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 +3 -0
- package/dist/index.d.ts +840 -0
- package/dist/index.js +3077 -0
- package/dist/index.js.map +1 -0
- package/dist/testing/index.d.ts +58 -0
- package/dist/testing/index.js +83 -0
- package/dist/testing/index.js.map +1 -0
- package/dist/types-DnMpR1qf.d.ts +29 -0
- package/package.json +58 -0
- package/templates/.gitkeep +0 -0
- package/templates/commit.md +1 -0
- package/templates/pr.md +11 -0
- package/templates/release-changelog.md +19 -0
- package/templates/release-notes.md +13 -0
- package/templates/release-version.md +11 -0
- package/templates/review.md +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# `@denisvieiradev/gitwise-core`
|
|
2
|
+
|
|
3
|
+
Shared logic for [gitwise](https://github.com/denisvieiradev/gitwise): the four non-interactive product commands (`commit`, `review`, `pr`, `release`), the LLM provider abstraction (Anthropic API + Claude Code subprocess), `git` and `gh` primitives, prompt templates, and the per-user / per-repo config loaders. The CLI (`@denisvieiradev/gitwise`) and the Claude Code plugin (`@denisvieiradev/gitwise-skills`) both depend on this package; nothing in `core` depends back on them, and `core` performs no interactive I/O. A `MockLLMProvider` is published from the `./testing` subpath for downstream test suites.
|