tlc-claude-code 0.9.6 → 0.9.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/bin/install.js +1 -0
- package/package.json +1 -1
- package/start.md +24 -0
package/bin/install.js
CHANGED
package/package.json
CHANGED
package/start.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# /tlc:start - Start TLC Dev Server
|
|
2
|
+
|
|
3
|
+
Start the Docker development environment.
|
|
4
|
+
|
|
5
|
+
## Instructions for Claude
|
|
6
|
+
|
|
7
|
+
Check which launcher exists and run the appropriate one:
|
|
8
|
+
|
|
9
|
+
**On Mac/Linux (or WSL):**
|
|
10
|
+
```bash
|
|
11
|
+
./tlc-start.sh
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**On Windows (CMD/PowerShell):**
|
|
15
|
+
```cmd
|
|
16
|
+
tlc-start.bat
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
If neither file exists, tell the user:
|
|
20
|
+
```
|
|
21
|
+
No launcher found. Run 'tlc init' first.
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Don't analyze the codebase. Just run the launcher.**
|