@dpeluche/trs 0.5.5 → 0.5.7
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 +10 -2
- package/package.json +18 -8
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Transform noisy terminal output into compact, structured signal.
|
|
4
4
|
A CLI toolkit for developers, automation pipelines, and AI agents.
|
|
5
5
|
|
|
6
|
-
**68-
|
|
6
|
+
**68-99% token savings** on common dev operations.
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
@@ -44,6 +44,14 @@ trs init claude # Claude Code
|
|
|
44
44
|
trs init gemini # Gemini CLI
|
|
45
45
|
trs init cursor # Cursor
|
|
46
46
|
trs init codex # Codex (AGENTS.md)
|
|
47
|
+
|
|
48
|
+
# Output-side savings (new in 0.5.7)
|
|
49
|
+
trs output-saver # scan agents, suggest install
|
|
50
|
+
trs output-saver --install # install rules block into agent configs
|
|
51
|
+
|
|
52
|
+
# Installation health + docs auditor
|
|
53
|
+
trs doctor # check install, PATH, deps
|
|
54
|
+
trs audit-docs # lint CLAUDE.md / AGENTS.md for bloat
|
|
47
55
|
```
|
|
48
56
|
|
|
49
57
|
## How it works
|
|
@@ -82,6 +90,6 @@ trs git status --raw # passthrough (tracked)
|
|
|
82
90
|
- [GitHub](https://github.com/dPeluChe/trs)
|
|
83
91
|
- [Documentation](https://github.com/dPeluChe/trs#readme)
|
|
84
92
|
|
|
85
|
-
|
|
93
|
+
A product by [Iteris](https://iteris.tech) · Published and maintained by [@dPeluChe](https://dpeluche.dev)
|
|
86
94
|
|
|
87
95
|
MIT License
|
package/package.json
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpeluche/trs",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Transform noisy terminal output into compact, structured signal. CLI toolkit for developers, automation pipelines, and AI agents. 68-
|
|
3
|
+
"version": "0.5.7",
|
|
4
|
+
"description": "Transform noisy terminal output into compact, structured signal. CLI toolkit for developers, automation pipelines, and AI agents. 68-99% token savings.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/dPeluChe/trs"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/dPeluChe/trs",
|
|
11
|
-
"author":
|
|
11
|
+
"author": {
|
|
12
|
+
"name": "Iteris",
|
|
13
|
+
"url": "https://iteris.tech"
|
|
14
|
+
},
|
|
15
|
+
"contributors": [
|
|
16
|
+
{
|
|
17
|
+
"name": "dPeluChe",
|
|
18
|
+
"email": "antonio@dpeluche.dev",
|
|
19
|
+
"url": "https://dpeluche.dev"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
12
22
|
"bin": {
|
|
13
23
|
"trs": "bin/trs"
|
|
14
24
|
},
|
|
@@ -37,10 +47,10 @@
|
|
|
37
47
|
"compact"
|
|
38
48
|
],
|
|
39
49
|
"optionalDependencies": {
|
|
40
|
-
"@dpeluche/trs-cli-darwin-x64": "0.5.
|
|
41
|
-
"@dpeluche/trs-cli-darwin-arm64": "0.5.
|
|
42
|
-
"@dpeluche/trs-cli-linux-x64": "0.5.
|
|
43
|
-
"@dpeluche/trs-cli-linux-arm64": "0.5.
|
|
44
|
-
"@dpeluche/trs-cli-win32-x64": "0.5.
|
|
50
|
+
"@dpeluche/trs-cli-darwin-x64": "0.5.7",
|
|
51
|
+
"@dpeluche/trs-cli-darwin-arm64": "0.5.7",
|
|
52
|
+
"@dpeluche/trs-cli-linux-x64": "0.5.7",
|
|
53
|
+
"@dpeluche/trs-cli-linux-arm64": "0.5.7",
|
|
54
|
+
"@dpeluche/trs-cli-win32-x64": "0.5.7"
|
|
45
55
|
}
|
|
46
56
|
}
|