Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ BULLETPROOF looks for configuration in the following locations (in order):

```json
{
"model": "claude-opus-4-5-20251101",
"model": "claude-opus-4-6",
"maxTurns": 50,
"coverageThresholds": {
"lines": 90,
Expand Down Expand Up @@ -179,7 +179,7 @@ BULLETPROOF looks for configuration in the following locations (in order):

| Option | Type | Default | Description |
|--------|------|---------|-------------|
| `model` | string | `claude-opus-4-5-20251101` | Claude model to use |
| `model` | string | `claude-opus-4-6` | Claude model to use |
| `maxTurns` | number | `50` | Maximum Claude agent turns |
| `coverageThresholds` | object | See below | Coverage percentage thresholds |
| `coverageScope` | object | See below | Patterns for coverage scope |
Expand Down
2 changes: 1 addition & 1 deletion bulletproof.config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"model": "claude-opus-4-5-20251101",
"model": "claude-opus-4-6",
"maxTurns": 50,
"coverageThresholds": {
"lines": 90,
Expand Down
2 changes: 1 addition & 1 deletion src/cli/init/setup-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function generateConfig(info: ProjectInfo): BulletproofConfig {
const defaults = getConfigDefaults(info)

return {
model: 'claude-opus-4-5-20251101',
model: 'claude-opus-4-6',
maxTurns: 50,
coverageThresholds: {
lines: 90,
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export interface CoverageScopeConfig {
* Full BULLETPROOF configuration
*/
export interface BulletproofConfig {
/** Claude model to use (default: claude-opus-4-5-20251101) */
/** Claude model to use (default: claude-opus-4-6) */
model: string

/** Maximum number of Claude turns for fixing issues (default: 50) */
Expand Down Expand Up @@ -133,7 +133,7 @@ export interface BulletproofConfig {
* Default configuration values
*/
export const DEFAULT_CONFIG: BulletproofConfig = {
model: 'claude-opus-4-5-20251101',
model: 'claude-opus-4-6',
maxTurns: 50,
coverageThresholds: {
lines: 90,
Expand Down