tend-cli 0.1.1 → 0.1.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 +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
> [!NOTE]
|
|
8
8
|
> **Early days (v0.x).** tend works, but it's young — flags and config may still
|
|
9
|
-
> change before 1.0.
|
|
10
|
-
>
|
|
9
|
+
> change before 1.0. The fix sessions run on Claude via [Claude Code](https://www.anthropic.com/claude-code)
|
|
10
|
+
> for now; support for other models is planned. As with any tool that edits code, run it on a
|
|
11
|
+
> committed repo and review the changes. Feedback and issues are very welcome.
|
|
11
12
|
|
|
12
13
|
An open-source CLI that audits a JS/TS repo with standard scanners, then fixes the findings
|
|
13
14
|
with parallel AI sessions in a safe **scan → fix → re-scan** loop. It never commits — fixes
|
|
@@ -21,8 +22,9 @@ npx tend-cli src/app lib/ # only findings under these paths
|
|
|
21
22
|
npx tend-cli --all # the entire backlog, repo-wide
|
|
22
23
|
```
|
|
23
24
|
|
|
24
|
-
Requires **Node ≥ 20
|
|
25
|
-
|
|
25
|
+
Requires **Node ≥ 20**, a git repo, and the [Claude Code](https://www.anthropic.com/claude-code)
|
|
26
|
+
CLI (`claude`) installed and signed in — tend drives it to make the fixes. Review the edits with
|
|
27
|
+
`tend diff`; undo the whole run with `tend undo`.
|
|
26
28
|
|
|
27
29
|
## What it does
|
|
28
30
|
|
package/package.json
CHANGED