tlc-claude-code 1.2.10 → 1.2.11

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 CHANGED
@@ -77,7 +77,7 @@ TLC knows where you are and what's next.
77
77
  ### For Enterprise
78
78
 
79
79
  - **CI/CD pipelines** — GitHub Actions, GitLab, Azure, CircleCI
80
- - **VPS deployment** — Branch previews with auth & Slack webhooks
80
+ - **Dev server** — Branch previews with auth & Slack webhooks
81
81
  - **Multi-tool export** — Works with Cursor, Copilot, Continue, Cody
82
82
 
83
83
  ---
@@ -110,7 +110,7 @@ TLC knows where you are and what's next.
110
110
  | `/tlc:ci` | Generate CI/CD pipeline |
111
111
  | `/tlc:issues` | Sync with GitHub/Jira/Linear |
112
112
  | `/tlc:export` | Export for Cursor/Copilot/etc |
113
- | `/tlc:deploy` | VPS deployment |
113
+ | `/tlc:deploy` | Dev server deployment |
114
114
 
115
115
  [**See all commands →**](help.md)
116
116
 
@@ -290,9 +290,9 @@ Commands install to `.claude/commands/tlc/`
290
290
 
291
291
  ---
292
292
 
293
- ## VPS Deployment
293
+ ## TLC Dev Server
294
294
 
295
- Deploy TLC server for your team on any VPS.
295
+ Deploy TLC dev server for your team on any Linux server.
296
296
 
297
297
  ### Quick Setup (Ubuntu)
298
298
 
@@ -310,8 +310,8 @@ curl -fsSL https://raw.githubusercontent.com/jurgencalleja/TLC/main/scripts/vps-
310
310
 
311
311
  ### Requirements
312
312
 
313
- - Ubuntu 22.04+ VPS (2GB+ RAM)
314
- - Domain with wildcard DNS (`*.project.com → VPS_IP`)
313
+ - Ubuntu 22.04+ server (2GB+ RAM)
314
+ - Domain with wildcard DNS (`*.project.com → SERVER_IP`)
315
315
  - GitHub/GitLab repo access
316
316
 
317
317
  ### Manual Setup
@@ -340,7 +340,7 @@ curl -fsSL https://raw.githubusercontent.com/jurgencalleja/TLC/main/scripts/vps-
340
340
 
341
341
  5. **Configure webhook** in GitHub/GitLab repo settings
342
342
 
343
- [**Full VPS Guide →**](docs/vps-deployment.md)
343
+ [**Full Dev Server Guide →**](docs/devserver.md)
344
344
 
345
345
  ---
346
346
 
@@ -373,7 +373,7 @@ helm install tlc tlc/tlc-server \
373
373
 
374
374
  - **[Help / All Commands](help.md)** — Complete command reference
375
375
  - **[Team Workflow](docs/team-workflow.md)** — Guide for teams (engineers + PO + QA)
376
- - **[VPS Deployment](docs/vps-deployment.md)** — Deploy on Ubuntu VPS
376
+ - **[Dev Server](docs/devserver.md)** — Deploy on Ubuntu server
377
377
  - **[Kubernetes Deployment](docs/kubernetes-deployment.md)** — Deploy on K8s
378
378
 
379
379
  ---
package/deploy.md CHANGED
@@ -1,6 +1,6 @@
1
- # /tlc:deploy - VPS Deployment Server
1
+ # /tlc:deploy - TLC Dev Server
2
2
 
3
- Deploy your TLC project to a VPS for team collaboration.
3
+ Deploy your TLC project to a remote dev server for team collaboration.
4
4
 
5
5
  ## Usage
6
6
 
@@ -19,7 +19,7 @@ Commands:
19
19
 
20
20
  ```
21
21
  ┌─────────────────────────────────────────────────────────────┐
22
- VPS Server
22
+ TLC Dev Server
23
23
  │ │
24
24
  │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
25
25
  │ │ Branch │ │ Branch │ │ Branch │ │
@@ -65,7 +65,7 @@ Commands:
65
65
 
66
66
  TLC Deployment Server Setup
67
67
 
68
- VPS Configuration:
68
+ Dev Server Configuration:
69
69
  Host: deploy.example.com
70
70
  SSH Key: ~/.ssh/id_rsa (detected)
71
71
 
@@ -82,7 +82,7 @@ Domain Configuration:
82
82
  Branches will be: {branch}.project.example.com
83
83
 
84
84
  Configure DNS:
85
- *.project.example.com → VPS_IP
85
+ *.project.example.com → SERVER_IP
86
86
 
87
87
  Admin User:
88
88
  Email: admin@example.com
@@ -183,7 +183,7 @@ app.get('/api/status', requireRole(['admin', 'engineer', 'qa', 'po']));
183
183
 
184
184
  Deploying branch: feat-auth
185
185
 
186
- Pushing to VPS...
186
+ Pushing to dev server...
187
187
  ✓ Code uploaded
188
188
  ✓ Dependencies installed
189
189
  ✓ Tests passed (23/23)
@@ -363,7 +363,7 @@ EXPOSE 3000
363
363
  CMD ["npm", "start"]
364
364
  ```
365
365
 
366
- ### docker-compose.yml (on VPS)
366
+ ### docker-compose.yml (on dev server)
367
367
 
368
368
  ```yaml
369
369
  version: '3.8'
@@ -434,7 +434,7 @@ server {
434
434
  Generating deployment SSH key...
435
435
  ✓ Key generated: ~/.ssh/tlc_deploy
436
436
 
437
- Add this to VPS authorized_keys:
437
+ Add this to server authorized_keys:
438
438
  ssh-rsa AAAA... tlc-deploy
439
439
 
440
440
  Add to GitHub deploy keys (read-only):
@@ -443,7 +443,7 @@ Add to GitHub deploy keys (read-only):
443
443
 
444
444
  ### Environment Variables
445
445
 
446
- Secrets stored on VPS:
446
+ Secrets stored on dev server:
447
447
 
448
448
  ```bash
449
449
  # /opt/tlc-deploy/.env
package/help.md CHANGED
@@ -92,7 +92,7 @@ Launches the visual dashboard. Detects where you are, shows what's next.
92
92
  | `/tlc:export --list` | Show all supported AI tools |
93
93
  | `/tlc:export --detect` | Detect which AI tool is running |
94
94
  | `/tlc:deploy` | Show deployment status |
95
- | `/tlc:deploy start <branch>` | Deploy branch to VPS |
95
+ | `/tlc:deploy start <branch>` | Deploy branch to dev server |
96
96
  | `/tlc:deploy stop <branch>` | Stop branch deployment |
97
97
  | `/tlc:deploy logs <branch>` | View deployment logs |
98
98
  | `/tlc:deploy list` | List all active deployments |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tlc-claude-code",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "description": "TLC - Test Led Coding for Claude Code",
5
5
  "bin": {
6
6
  "tlc": "./bin/tlc.js",