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.
- package/dist/{advisors-GGUCFS4E.js → advisors-3PWAN6UL.js} +1 -1
- package/dist/{chunk-YUSDTJD6.js → chunk-URNRSXPU.js} +2 -2
- package/dist/{chunk-ND6T4UDY.js → chunk-WZQNFV7Q.js} +3 -3
- package/dist/index.js +539 -200
- package/dist/{prd-AIEY63YY.js → prd-YAUSAL5V.js} +1 -1
- package/package.json +1 -1
- package/src/commands/advisors.ts +2 -2
- package/src/commands/build.ts +12 -7
- package/src/commands/code.ts +2 -2
- package/src/commands/deploy.ts +3 -3
- package/src/commands/init.ts +81 -38
- package/src/commands/prd-maker.ts +1 -1
- package/src/commands/prd.ts +3 -3
- package/src/commands/website.ts +139 -64
- package/src/index.ts +1 -1
- package/src/utils/display.ts +325 -0
|
@@ -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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
273
|
+
model: "claude-sonnet-4-5-20250929",
|
|
274
274
|
max_tokens: 8192,
|
|
275
275
|
messages: [{
|
|
276
276
|
role: "user",
|