@codefilabs/tq 0.0.1 → 0.0.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 +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ The tool is designed for macOS with cron scheduling in mind: drop a queue YAML i
|
|
|
24
24
|
Run this in your terminal:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
curl -fsSL https://raw.githubusercontent.com/
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/CodefiLabs/tq/main/scripts/tq-install.sh | bash
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
Here's exactly what that command does:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefilabs/tq",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "A lightweight task queue runner that spawns Claude AI tasks as independent tmux sessions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"bin": {
|
|
24
|
-
"tq": "
|
|
25
|
-
"tq-message": "
|
|
26
|
-
"tq-setup": "
|
|
27
|
-
"tq-telegram-poll": "
|
|
28
|
-
"tq-telegram-watchdog": "
|
|
24
|
+
"tq": "scripts/tq",
|
|
25
|
+
"tq-message": "scripts/tq-message",
|
|
26
|
+
"tq-setup": "scripts/tq-setup",
|
|
27
|
+
"tq-telegram-poll": "scripts/tq-telegram-poll",
|
|
28
|
+
"tq-telegram-watchdog": "scripts/tq-telegram-watchdog"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"scripts/",
|