kodu 3.0.2 → 3.0.3

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 (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,11 +46,14 @@ Requires Go 1.25+ and a C toolchain (CGO is used for the tree-sitter parsers).
46
46
 
47
47
  ```bash
48
48
  git clone https://github.com/uxname/kodu.git && cd kodu
49
- make build # → dist/kodu
50
- make test # run the test suite
51
- make lint # gofmt + go vet + golangci-lint
49
+ task build # → dist/kodu
50
+ task test # run the test suite
51
+ task lint # gofmt + go vet + golangci-lint
52
52
  ```
53
53
 
54
+ > Tasks are defined in `Taskfile.yml` and run with [Task](https://taskfile.dev).
55
+ > Run `task` (or `task --list`) to see all available targets.
56
+
54
57
  ---
55
58
 
56
59
  ## kodu init
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodu",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "High-performance CLI to prepare a codebase for LLMs, automate reviews, and draft commits. Native Go binary.",
5
5
  "repository": {
6
6
  "type": "git",