codebakers 2.3.8 → 2.5.0

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  advisorsCommand
3
- } from "./chunk-YUSDTJD6.js";
3
+ } from "./chunk-URNRSXPU.js";
4
4
  import "./chunk-ASIJIQYC.js";
5
5
  export {
6
6
  advisorsCommand
@@ -219,7 +219,7 @@ async function conductInterview() {
219
219
  }
220
220
  async function getAdvisorFeedback(anthropic, advisor, brief) {
221
221
  const response = await anthropic.messages.create({
222
- model: "claude-sonnet-4-20250514",
222
+ model: "claude-sonnet-4-5-20250929",
223
223
  max_tokens: 2048,
224
224
  messages: [{
225
225
  role: "user",
@@ -278,7 +278,7 @@ Score 1-10 based on your area of expertise. Be honest but constructive.`
278
278
  async function generateReport(anthropic, brief, advisorFeedback) {
279
279
  const avgScore = advisorFeedback.reduce((sum, f) => sum + f.score, 0) / advisorFeedback.length;
280
280
  const response = await anthropic.messages.create({
281
- model: "claude-sonnet-4-20250514",
281
+ model: "claude-sonnet-4-5-20250929",
282
282
  max_tokens: 8192,
283
283
  messages: [{
284
284
  role: "user",
@@ -100,7 +100,7 @@ async function prdCommand(filePath) {
100
100
  }
101
101
  async function parsePRD(anthropic, content) {
102
102
  const response = await anthropic.messages.create({
103
- model: "claude-sonnet-4-20250514",
103
+ model: "claude-sonnet-4-5-20250929",
104
104
  max_tokens: 4096,
105
105
  messages: [{
106
106
  role: "user",
@@ -225,7 +225,7 @@ ${chalk.bold("Continue building:")}
225
225
  }
226
226
  async function generateBuildPlan(anthropic, prd, designProfile) {
227
227
  const response = await anthropic.messages.create({
228
- model: "claude-sonnet-4-20250514",
228
+ model: "claude-sonnet-4-5-20250929",
229
229
  max_tokens: 4096,
230
230
  messages: [{
231
231
  role: "user",
@@ -270,7 +270,7 @@ Keep tasks specific and actionable.`
270
270
  }
271
271
  async function executeTask(anthropic, projectPath, task, prd, designProfile) {
272
272
  const response = await anthropic.messages.create({
273
- model: "claude-sonnet-4-20250514",
273
+ model: "claude-sonnet-4-5-20250929",
274
274
  max_tokens: 8192,
275
275
  messages: [{
276
276
  role: "user",