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 CHANGED
@@ -54,6 +54,7 @@ const COMMANDS = [
54
54
  'who.md',
55
55
  'bug.md',
56
56
  'server.md',
57
+ 'start.md',
57
58
  // CI/CD & Integration
58
59
  'ci.md',
59
60
  'issues.md',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tlc-claude-code",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "description": "TLC - Test Led Coding for Claude Code",
5
5
  "bin": {
6
6
  "tlc": "./bin/tlc.js",
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.**