tlc-claude-code 1.2.22 → 1.2.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tlc-claude-code",
3
- "version": "1.2.22",
3
+ "version": "1.2.24",
4
4
  "description": "TLC - Test Led Coding for Claude Code",
5
5
  "bin": {
6
6
  "tlc": "./bin/tlc.js",
@@ -137,7 +137,7 @@ GO. Execute now. No questions.`;
137
137
  taskId: task.id,
138
138
  taskTitle: task.title,
139
139
  prompt: basePrompt,
140
- agentType: 'gsd-executor',
140
+ agentType: 'tlc-executor',
141
141
  };
142
142
  });
143
143
  }
@@ -202,8 +202,8 @@ describe('overdrive-command', () => {
202
202
  describe('generateTaskCalls', () => {
203
203
  it('generates task tool calls', () => {
204
204
  const prompts = [
205
- { taskId: 1, taskTitle: 'Test', prompt: 'Do task 1', agentType: 'gsd-executor' },
206
- { taskId: 2, taskTitle: 'Test 2', prompt: 'Do task 2', agentType: 'gsd-executor' },
205
+ { taskId: 1, taskTitle: 'Test', prompt: 'Do task 1', agentType: 'tlc-executor' },
206
+ { taskId: 2, taskTitle: 'Test 2', prompt: 'Do task 2', agentType: 'tlc-executor' },
207
207
  ];
208
208
 
209
209
  const calls = generateTaskCalls(prompts);