runtrim 0.1.10 → 0.1.13
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 +13 -0
- package/dist-cli/runtrim.cjs +11447 -3
- package/dist-cli/runtrim.js +5174 -390
- package/package.json +15 -6
- package/dist-cli/package.json +0 -3
package/README.md
CHANGED
|
@@ -84,6 +84,19 @@ npm run runtrim -- init
|
|
|
84
84
|
npm run runtrim -- start
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
+
## CLI release checklist
|
|
88
|
+
|
|
89
|
+
Before publishing to npm:
|
|
90
|
+
|
|
91
|
+
1. `npm run build`
|
|
92
|
+
2. `npm run verify:cli`
|
|
93
|
+
3. `npm run verify:package`
|
|
94
|
+
4. `npm link`
|
|
95
|
+
5. `runtrim agent --help`
|
|
96
|
+
6. `runtrim go "test task" --no-sync`
|
|
97
|
+
7. `npm version patch`
|
|
98
|
+
8. `npm publish`
|
|
99
|
+
|
|
87
100
|
## What RunTrim does
|
|
88
101
|
|
|
89
102
|
- audits task scope before execution
|