tlc-claude-code 0.8.2 → 0.8.3
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 +2 -2
- package/bin/tlc.js +14 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -265,8 +265,8 @@ C:\Code\TLC\ (or your install location)
|
|
|
265
265
|
npm install -g tlc-claude-code
|
|
266
266
|
|
|
267
267
|
# Then use anywhere:
|
|
268
|
-
tlc # Install slash commands
|
|
269
|
-
tlc init # Add
|
|
268
|
+
tlc # Install slash commands to Claude Code
|
|
269
|
+
tlc init # Add Docker launcher to project (creates tlc-start.bat)
|
|
270
270
|
tlc --help # See all options
|
|
271
271
|
```
|
|
272
272
|
|
package/bin/tlc.js
CHANGED
|
@@ -4,10 +4,8 @@
|
|
|
4
4
|
* TLC CLI - Simple entry point
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* tlc - Install TLC commands
|
|
8
|
-
* tlc init - Add dev
|
|
9
|
-
* tlc server - Start dev server
|
|
10
|
-
* tlc setup - Setup server requirements (Linux/macOS)
|
|
7
|
+
* tlc - Install TLC slash commands to Claude Code
|
|
8
|
+
* tlc init - Add Docker dev launcher (tlc-start.bat) to project
|
|
11
9
|
*/
|
|
12
10
|
|
|
13
11
|
const args = process.argv.slice(2);
|
|
@@ -17,12 +15,6 @@ switch (command) {
|
|
|
17
15
|
case 'init':
|
|
18
16
|
require('./init.js');
|
|
19
17
|
break;
|
|
20
|
-
case 'server':
|
|
21
|
-
require('./server.js');
|
|
22
|
-
break;
|
|
23
|
-
case 'setup':
|
|
24
|
-
require('./setup.js');
|
|
25
|
-
break;
|
|
26
18
|
case 'help':
|
|
27
19
|
case '--help':
|
|
28
20
|
case '-h':
|
|
@@ -30,18 +22,21 @@ switch (command) {
|
|
|
30
22
|
TLC - Test Led Coding
|
|
31
23
|
|
|
32
24
|
Usage:
|
|
33
|
-
tlc Install TLC commands to Claude Code
|
|
34
|
-
tlc init Add
|
|
35
|
-
tlc server Start the TLC dev server
|
|
36
|
-
tlc setup Setup server requirements (Linux/macOS)
|
|
25
|
+
tlc Install TLC slash commands to Claude Code
|
|
26
|
+
tlc init Add Docker launcher to your project
|
|
37
27
|
|
|
38
28
|
Options:
|
|
39
|
-
--global, -g Install commands globally
|
|
40
|
-
--local, -l Install commands locally
|
|
29
|
+
--global, -g Install commands globally (~/.claude/commands)
|
|
30
|
+
--local, -l Install commands locally (./.claude/commands)
|
|
31
|
+
|
|
32
|
+
After 'tlc init':
|
|
33
|
+
Double-click tlc-start.bat to launch Docker dev environment:
|
|
34
|
+
- Dashboard: http://localhost:3147
|
|
35
|
+
- App: http://localhost:5000
|
|
36
|
+
- DB Admin: http://localhost:8080
|
|
37
|
+
- Database: localhost:5433
|
|
41
38
|
|
|
42
|
-
|
|
43
|
-
tlc --global Install commands for all projects
|
|
44
|
-
tlc init Add Docker launcher to current project
|
|
39
|
+
Requires: Docker Desktop (https://docker.com/products/docker-desktop)
|
|
45
40
|
`);
|
|
46
41
|
break;
|
|
47
42
|
default:
|