termcut 0.6.3 → 0.6.4
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 +8 -0
- package/package.json +1 -1
- package/src/cli.ts +2 -0
package/README.md
CHANGED
|
@@ -66,6 +66,14 @@ tcut publish --setup # once: your S3-compatible bucket (RustFS, MinIO, R2
|
|
|
66
66
|
tcut publish demo.gif # → https://…/3f9a1c2b7d4e/demo.gif
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
+
## Agents
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
npx skills add AmanVarshney01/tcut # tcut + tcut-remotion skills for Claude Code, Cursor, etc.
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Two skills: `tcut` (record terminal videos) and `tcut-remotion` (compose tcut footage into launch videos with [Remotion](https://remotion.dev)). Plus [llms.txt](https://tcut.amanv.dev/llms.txt) and `--json` everywhere.
|
|
76
|
+
|
|
69
77
|
## More
|
|
70
78
|
|
|
71
79
|
- [Examples](https://github.com/AmanVarshney01/tcut/tree/main/packages/tcut/examples) — driving an interactive TUI, recording Claude Code / Codex
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -71,6 +71,8 @@ Options (override the script's config):
|
|
|
71
71
|
--json machine-readable result (or { "error" }) on stdout, nothing else
|
|
72
72
|
-q, --quiet
|
|
73
73
|
-h, --help
|
|
74
|
+
|
|
75
|
+
Agents: npx skills add AmanVarshney01/tcut · docs: https://tcut.amanv.dev/llms.txt
|
|
74
76
|
`;
|
|
75
77
|
|
|
76
78
|
const { values, positionals } = parseArgs({
|