Skip to content

Commit 80cf2c8

Browse files
committed
-
1 parent f79c1ab commit 80cf2c8

86 files changed

Lines changed: 444 additions & 56 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# RTK - Rust Token Killer (Google Antigravity)
2+
3+
**Usage**: Token-optimized CLI proxy for shell commands.
4+
5+
## Rule
6+
7+
Always prefix shell commands with `rtk` to minimize token consumption.
8+
9+
Examples:
10+
11+
```bash
12+
rtk git status
13+
rtk cargo test
14+
rtk ls src/
15+
rtk grep "pattern" src/
16+
rtk find "*.rs" .
17+
rtk docker ps
18+
rtk gh pr list
19+
```
20+
21+
## Meta Commands
22+
23+
```bash
24+
rtk gain # Show token savings
25+
rtk gain --history # Command history with savings
26+
rtk discover # Find missed RTK opportunities
27+
rtk proxy <cmd> # Run raw (no filtering, for debugging)
28+
```
29+
30+
## Why
31+
32+
RTK filters and compresses command output before it reaches the LLM context, saving 60-90% tokens on common operations. Always use `rtk <cmd>` instead of raw commands.

.changeset/new-feet-brush.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
"@pipelab/plugin-filesystem": patch
3+
"@pipelab/plugin-construct": patch
4+
"@pipelab/plugin-electron": patch
5+
"@pipelab/plugin-discord": patch
6+
"@pipelab/plugin-netlify": patch
7+
"@pipelab/plugin-nvpatch": patch
8+
"mini-c3-electron": patch
9+
"@pipelab/asset-electron": patch
10+
"@pipelab/plugin-minify": patch
11+
"@pipelab/plugin-system": patch
12+
"@pipelab/asset-discord": patch
13+
"@pipelab/asset-netlify": patch
14+
"@pipelab/cloud-azure": patch
15+
"@pipelab/plugin-steam": patch
16+
"@pipelab/plugin-tauri": patch
17+
"@pipelab/test-utils": patch
18+
"@pipelab/plugin-core": patch
19+
"@pipelab/plugin-itch": patch
20+
"@pipelab/plugin-poki": patch
21+
"@pipelab/asset-tauri": patch
22+
"@pipelab/constants": patch
23+
"@pipelab/core-node": patch
24+
"@pipelab/migration": patch
25+
"@pipelab/tsconfig": patch
26+
"@pipelab/shared": patch
27+
"@pipelab/cloud": patch
28+
"@pipelab/app": patch
29+
"@pipelab/cli": patch
30+
"@pipelab/ui": patch
31+
---
32+
33+
sdsd

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"lazy-cloths-prove",
5050
"light-clubs-cheer",
5151
"modern-roses-stick",
52+
"new-feet-brush",
5253
"ninety-squids-post",
5354
"orange-wombats-call",
5455
"real-suns-run",

apps/cli/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @pipelab/cli
22

3+
## 2.0.0-beta.30
4+
5+
### Patch Changes
6+
7+
- sdsd
8+
- Updated dependencies
9+
- @pipelab/constants@1.0.0-beta.26
10+
- @pipelab/core-node@1.0.0-beta.30
11+
- @pipelab/shared@1.0.0-beta.25
12+
313
## 2.0.0-beta.29
414

515
### Patch Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/cli",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"private": true,
55
"description": "The command line interface for Pipelab",
66
"license": "FSL-1.1-MIT",

apps/cli/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
"sourceMap": true,
1010
"baseUrl": ".",
1111
"paths": {
12-
"@pipelab/shared": ["../../packages/shared/src/index.ts"],
13-
"@pipelab/constants": ["../../packages/constants/src/index.ts"],
14-
"@pipelab/core-node": ["../../packages/core-node/src/index.ts"],
15-
"@pipelab/migration": ["../../packages/migration/src/index.ts"],
1612
"@pipelab/*": ["../../packages/shared/src/libs/*"],
1713
"@core-node/*": ["../../packages/core-node/src/*"]
1814
}

apps/desktop/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @pipelab/app
22

3+
## 2.0.0-beta.25
4+
5+
### Patch Changes
6+
7+
- sdsd
8+
39
## 2.0.0-beta.24
410

511
### Patch Changes

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/app",
3-
"version": "2.0.0-beta.24",
3+
"version": "2.0.0-beta.25",
44
"private": true,
55
"description": "-",
66
"homepage": "https://pipelab.app",

apps/desktop/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
"outDir": "dist",
77
"inlineSourceMap": true,
88
"paths": {
9-
"@pipelab/shared": ["../../packages/shared/src/index.ts"],
10-
"@pipelab/constants": ["../../packages/constants/src/index.ts"],
11-
"@pipelab/migration": ["../../packages/migration/src"],
129
"@pipelab/*": ["../../packages/shared/src/libs/*"]
1310
}
1411
},
@@ -32,6 +29,9 @@
3229
},
3330
{
3431
"path": "../../packages/shared"
32+
},
33+
{
34+
"path": "../../packages/migration"
3535
}
3636
]
3737
}

apps/mini-c3-electron/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# mini-c3-electron
22

3+
## 0.0.1-beta.16
4+
5+
### Patch Changes
6+
7+
- sdsd
8+
39
## 0.0.1-beta.15
410

511
### Patch Changes

0 commit comments

Comments
 (0)