@inceptionstack/pi-hard-no 1.0.1 → 1.0.2

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
@@ -72,7 +72,7 @@ Use `/scaffold-review-files` to generate config templates.
72
72
  ```json
73
73
  {
74
74
  "maxReviewLoops": 100,
75
- "model": "amazon-bedrock/us.anthropic.claude-sonnet-4-6",
75
+ "model": "amazon-bedrock/us.meta.llama4-maverick-17b-instruct-v1:0",
76
76
  "thinkingLevel": "off",
77
77
  "architectEnabled": true,
78
78
  "reviewTimeoutMs": 120000,
@@ -87,7 +87,7 @@ Use `/scaffold-review-files` to generate config templates.
87
87
  | Setting | Type | Default | Description |
88
88
  | ------------------ | ----------- | -------------------------------------------------------------- | ------------------------------------------------------------------------------------------ |
89
89
  | `maxReviewLoops` | integer > 0 | `100` | Max review→fix→review cycles before giving up |
90
- | `model` | string | `"amazon-bedrock/us.anthropic.claude-sonnet-4-6"` | Reviewer model (`"provider/model-id"`) |
90
+ | `model` | string | `"amazon-bedrock/us.meta.llama4-maverick-17b-instruct-v1:0"` | Reviewer model (`"provider/model-id"`) |
91
91
  | `thinkingLevel` | string | `"off"` | `off\|minimal\|low\|medium\|high\|xhigh` |
92
92
  | `architectEnabled` | boolean | `true` | Enable architect review (triggers when >1 file reviewed from git) |
93
93
  | `reviewTimeoutMs` | integer > 0 | `120000` | Max wall-clock per review in ms |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inceptionstack/pi-hard-no",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "Pi extension — automatic code review after every agent turn",
6
6
  "license": "MIT",
package/scaffold.ts CHANGED
@@ -105,7 +105,7 @@ out/**
105
105
  export const SCAFFOLD_SETTINGS = JSON.stringify(
106
106
  {
107
107
  maxReviewLoops: 100,
108
- model: "amazon-bedrock/us.anthropic.claude-sonnet-4-6",
108
+ model: "amazon-bedrock/us.meta.llama4-maverick-17b-instruct-v1:0",
109
109
  thinkingLevel: "off",
110
110
  architectEnabled: true,
111
111
  reviewTimeoutMs: 120000,
package/settings.ts CHANGED
@@ -59,7 +59,7 @@ function readConfigFileSync(cwd: string, filename: string): string | null {
59
59
 
60
60
  export interface AutoReviewSettings {
61
61
  maxReviewLoops: number;
62
- model: string; // "provider/model-id" e.g. "amazon-bedrock/us.anthropic.claude-sonnet-4-6"
62
+ model: string; // "provider/model-id" e.g. "amazon-bedrock/us.meta.llama4-maverick-17b-instruct-v1:0"
63
63
  thinkingLevel: string; // "off" | "minimal" | "low" | "medium" | "high" | "xhigh"
64
64
  architectEnabled: boolean;
65
65
  reviewTimeoutMs: number; // Max wall-clock for a single review (default 120s)
@@ -86,7 +86,7 @@ export const DEFAULT_CANCEL_SHORTCUT = ""; // no default shortcut — use /cance
86
86
 
87
87
  export const DEFAULT_SETTINGS: AutoReviewSettings = {
88
88
  maxReviewLoops: 100,
89
- model: "amazon-bedrock/us.anthropic.claude-sonnet-4-6",
89
+ model: "amazon-bedrock/us.meta.llama4-maverick-17b-instruct-v1:0",
90
90
  thinkingLevel: "off",
91
91
  architectEnabled: true, // triggers when >1 file reviewed
92
92
  reviewTimeoutMs: 120_000,